Robert Fancsik

Results 27 comments of Robert Fancsik

First of all, I highly suggest to turn `JERRY_LINE_INFO` **off** since the source info decoding during the bytecode execution causes serious slowdown. My two concerns: 1, I don't see the...

Splay is a specific test for GC. It was designed to test the evolutional GC. Since JerryScript uses single mark&sweep model it wouldn't perform well in this test. However increasing...

I have no optional number to say. Increasing the recursion limit will increase the score and stack usage simultaneously. So keep fine tuning it, I suggest to start doubling it...

> I guess mainly because of -DJERRY_LCACHE=1 and -DJERRY_PROPRETY_HASHMAP=1 What does it mean exactly? If you consider this as the source of the slowness a with/without comparison would be great....

Note about the issue: Due to the recursive first property access in `Array.prototype.shift` the after the property is deleted by the operation, the previous call frames function object/lexical environment become...

Hi! Instead of reloading the engine you can simply change the current realm. Please check https://github.com/jerryscript-project/jerryscript/blob/master/docs/02.API-REFERENCE.md#jerry_set_realm.

@zherczeg Just to clarify that's not only windows related issue. https://github.com/jerryscript-project/jerryscript/runs/1721915835#step:5:708

Benchmark | Heap (bytes) | Stack (bytes) | Perf (sec) | ----: | ----: | ----: | ----: | 0b1100oclock.js | 7648 -> 7648 : 0.000% | 1656 -> 1656...

Hi! 1 - 2, These features are not available and currently we are not planning to do it. However any contributions are welcome. 3, You can use the [debugger statement](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/debugger)...

@akosthekiss Are you planning to update this PR or has it been abandoned? I think this patch requires a big API change, so it would be good to clarify before...