summaryrefslogtreecommitdiffstats
path: root/js/src/vm
Commit message (Collapse)AuthorAgeLines
* 1320408 - Part 23: Change ↵Gaming4JC2019-07-18-19/+21
| | | | RegExpObject::{getShared,createShared,dumpBytecode} to static method.
* 1320408 - Part 22: Remove JSContext* parameter from ProxyObject::renew and ↵Gaming4JC2019-07-18-1/+1
| | | | Wrapper::Renew.
* 1320408 - Part 19: Remove JSContext* parameter from ↵Gaming4JC2019-07-18-1/+1
| | | | ModuleObject::fixEnvironmentsAfterCompartmentMerge.
* 1320408 - Part 18: Change StringObject::init to static method.Gaming4JC2019-07-18-11/+9
|
* 1320408 - Part 17: Change NativeObject::clearFlag to static method.Gaming4JC2019-07-18-9/+8
|
* 1320408 - Part 16: Change NativeObject::removeProperty to static method.Gaming4JC2019-07-18-29/+28
|
* 1320408 - Part 15: Change NativeObject::addDataProperty to static method.Gaming4JC2019-07-18-18/+18
|
* 1320408 - Part 14: Change some GlobalObject methods to static method.Gaming4JC2019-07-18-157/+170
|
* 1320408 - Part 13: Change DebugEnvironmentProxy::getMaybeSentinelValue to ↵Gaming4JC2019-07-18-6/+8
| | | | static method.
* 1320408 - Part 12: Change JSScript::sourceData to static method.Gaming4JC2019-07-18-3/+3
|
* 1320408 - Part 9: Change JSObject::setFlags and depending methods to static ↵Gaming4JC2019-07-18-26/+29
| | | | method.
* 1320408 - Part 8: Change JSObject::reportNotConfigurable and ↵Gaming4JC2019-07-18-3/+3
| | | | JSObject::reportNotExtensible to static method.
* 1320408 - Part 7: Remove JSContext* parameter from ↵Gaming4JC2019-07-18-1/+1
| | | | JSObject::shouldSplicePrototype.
* 1320408 - Part 6: Change JSObject::splicePrototype to static method.Gaming4JC2019-07-18-7/+6
|
* 1320408 - Part 5: Change JSObject::constructorDisplayAtom to static method.Gaming4JC2019-07-18-1/+1
|
* 1320408 - Part 4: Change JSObject::getGroup to static method.Gaming4JC2019-07-18-9/+15
|
* 1320408 - Part 3: Remove JSContext* parameter from ↵Gaming4JC2019-07-18-1/+1
| | | | JSFunction::getBoundFunctionArgument.
* 1320408 - Part 2: Change JSFunction::getOrCreateScript to static method.Gaming4JC2019-07-18-19/+27
|
* 1320408 - Part 1: Change JSFunction::getLength and ↵Gaming4JC2019-07-18-2/+2
| | | | JSFunction::getUnresolvedLength to static method.
* 1175823 - Implement [[DefineOwnProperty]] for mapped arguments object.Gaming4JC2019-07-18-1/+70
|
* 1333143 - Self-host Object.prototype.valueOf.Gaming4JC2019-07-18-0/+1
|
* 903389 - Fix uses of ClassMethodIsNative.Gaming4JC2019-07-18-13/+0
|
* Remove anyNewScript()wolfbeast2019-06-26-12/+3
|
* Remove UnboxedObjects ObjectGroup addendumwolfbeast2019-06-25-28/+5
|
* Remove Unboxed Object code from /vm, Part 3.wolfbeast2019-06-25-1538/+12
|
* Remove Unboxed Object code from jit, Part 2.wolfbeast2019-06-23-199/+2
|
* Merge pull request #1137 from MoonchildProductions/remove-unboxed-checkedMoonchild2019-06-19-1824/+88
|\ | | | | Remove unboxed (checked branch)
| * Remove JSOP_SPREADCALLARRAY and just use JSOP_NEWARRAY again.wolfbeast2019-06-18-12/+2
| |
| * Update commentwolfbeast2019-06-18-4/+2
| |
| * Remove and clean up more code.wolfbeast2019-06-18-39/+8
| |
| * Replace SetOrExtendBoxedOrUnboxedDenseElements with direct calls.wolfbeast2019-06-18-38/+41
| |
| * Clean up and rename MoveBoxedOrUnboxedDenseElements.wolfbeast2019-06-18-16/+0
| |
| * Convert CopyBoxedOrUnboxedDenseElements to something that doesn't crash.wolfbeast2019-06-17-18/+0
| |
| * Remove functors for array natives.wolfbeast2019-06-12-121/+0
| |
| * Remove unboxed array context option and shell flag.wolfbeast2019-06-12-13/+0
| |
| * Make use of ArrayObjects in favor of generic JS objects.wolfbeast2019-06-12-14/+11
| | | | | | | | | | ArrayObjects has been a thing for years but been under-used. About time they are used where prudent.
| * Inline combined methods for NativeObject and UnboxedArrayObject accesses.wolfbeast2019-06-10-129/+9
| |
| * Merge branch 'master' into remove-unboxedwolfbeast2019-06-08-2/+6
| |\
| * | Remove UnboxedArray code part 2wolfbeast2019-05-23-1499/+94
| | |
* | | Add Atomics.notify instead of Atomics.wake according to revised spec.wolfbeast2019-06-12-1/+1
| |/ |/| | | | | | | - Keep .wake as an alias until we're certain it can be removed. - Enable SAB memory
* | Merge pull request #1091 from MoonchildProductions/remove-unboxedMoonchild2019-05-22-445/+5
|\| | | | | Remove unboxed objects phase 1
| * Remove Unboxed Objects from vm/ - Part 2wolfbeast2019-05-16-6/+0
| |
| * Remove unboxed object code from jit, Part 1wolfbeast2019-05-16-12/+0
| |
| * Remove Unboxed Objects from vm/ Part 1 + fix deprotwolfbeast2019-05-16-15/+5
| |
| * Remove initial chunk of Unboxed Objects machinery part 2wolfbeast2019-05-15-12/+0
| |
| * remove unboxed code chunk (wip1)wolfbeast2019-05-14-400/+0
| |
* | Implement array.flat and array.flatMapwolfbeast2019-05-19-0/+2
| | | | | | | | | | | | Self-hosted implementation that adds both functions and adds them to @@unscopables as specced in ES2019. Resolves #1095
* | Implement String.prototype.trimStart and trimEnd.wolfbeast2019-05-17-2/+4
|/ | | | | | This renames our internal function names because *Left and *Right might be deprecated and have to be removed later, making that trivial. Resolves #1089
* Issue #187: Remove solaris conditional code.wolfbeast2019-03-30-11/+0
|
* Remove a couple of unused variablesadeshkp2019-03-14-1/+0
|