summaryrefslogtreecommitdiffstats
path: root/js/src/vm/Interpreter.cpp
Commit message (Collapse)AuthorAgeLines
* 1344477 - Part 1: Add JSOP_CALL_IGNORES_RV for function call that ignores ↵Gaming4JC2019-07-18-2/+10
| | | | return value.
* 1216630 - Print class source when calling toString on the constructor.Gaming4JC2019-07-18-5/+20
| | | | | | | | | | This is accomplished in the following ways. LazyScripts and JSScripts now have 4 offsets: - Source begin and end for the actual source. This is used for lazy parsing. - toString begin and end for toString. Some kinds of functions, like async, only have a different begin offset. Class constructors have different offsets for both begin and end. For syntactically present (i.e. non-default) constructors, the class source span is remembered directly on the LazyScript or JSScript. The toString implementation then splices out the substring directly. For default constructors, a new SRC_CLASS SrcNote type is added. It's binary and has as its arguments the begin and end offsets of the class expression or statement. MakeDefaultConstructor reads the note and overrides the cloned self-hosted function's source object. This is probably the least intrusive way to accomplish this.
* 1320408 - Part 12: Change JSScript::sourceData to static method.Gaming4JC2019-07-18-1/+1
|
* 1320408 - Part 9: Change JSObject::setFlags and depending methods to static ↵Gaming4JC2019-07-18-1/+1
| | | | method.
* 1320408 - Part 4: Change JSObject::getGroup to static method.Gaming4JC2019-07-18-1/+2
|
* 1320408 - Part 2: Change JSFunction::getOrCreateScript to static method.Gaming4JC2019-07-18-3/+3
|
* Remove Unboxed Object code from /vm, Part 3.wolfbeast2019-06-25-5/+0
|
* Remove JSOP_SPREADCALLARRAY and just use JSOP_NEWARRAY again.wolfbeast2019-06-18-1/+1
|
* Remove and clean up more code.wolfbeast2019-06-18-4/+1
|
* Remove UnboxedArray code part 2wolfbeast2019-05-23-9/+0
|
* Remove Unboxed Objects from vm/ Part 1 + fix deprotwolfbeast2019-05-16-6/+1
|
* Align `instanceof` with the final ES6 spec.wolfbeast2019-02-07-7/+7
|
* Bug 1357075 - Pad a nop to unwind to the scope just before a destructuring ↵janekptacijarabaci2018-03-25-1/+4
| | | | | | iterator close trynote Issue #74
* Bug 1346862 - Fix IteratorClose due to non-local jumps being catchable by ↵janekptacijarabaci2018-03-25-0/+36
| | | | | | try statements inside for-of Issue #74
* Bug 1342553, Bug 1343072, Bug 1344753 (details in the description)janekptacijarabaci2018-03-25-12/+22
| | | | | | | | | | Bug 1342553 - Part 0.1: Use try-catch for IteratorClose in for-of Bug 1343072 - Update HasLiveStackValueAtDepth to follow the change in JSTRY_FOR_OF Bug 1344753 - Update for-of stack depth in ControlFlowGenerator::processWhileOrForInLoop Issue #74
* Bug 1331585 - Allow falsy "done" values for IteratorClose due to exception ↵janekptacijarabaci2018-03-25-2/+3
| | | | | | during array destructuring Issue #74
* Bug 1147371: Implement calling IteratorClose and "return" on iterators in yield*janekptacijarabaci2018-03-24-1/+11
| | | | Issue #74
* Bug 1147371: Implement IteratorClose for array destructuringjanekptacijarabaci2018-03-24-9/+30
| | | | Issue #74
* Bug 1147371: Implement IteratorClose for for-ofjanekptacijarabaci2018-03-24-4/+15
| | | | Issue #74
* Bug 1204028: Evaluate LHS reference before RHS in destructuringjanekptacijarabaci2018-03-20-1/+10
| | | | | Issue #73 [Depends on] Bug 1147371: Implement IteratorClose
* Part 1: Implement ES6 function name property semanticsjanekptacijarabaci2018-03-19-5/+17
| | | | Issue #78
* Bug 1320388: Move JSFunction::HAS_REST to JSScript and LazyScriptjanekptacijarabaci2018-03-19-2/+0
| | | | | | Issue #78 [Depends on] Bug 883377: Implement ES6 function "name" property semantics
* Remove VerifyBarriers() and MaybeVerifyBarriers() stubs and callers.wolfbeast2018-02-03-10/+0
|
* Add m-esr52 at 52.6.0Matt A. Tobin2018-02-02-0/+5087