mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bug 952942 - Baseline-compile scripts with array comprehensions. r=djvj
This commit is contained in:
parent
242177b68e
commit
23c225cce1
@ -1731,6 +1731,24 @@ BaselineCompiler::emit_JSOP_ENDINIT()
|
||||
return true;
|
||||
}
|
||||
|
||||
typedef bool (*NewbornArrayPushFn)(JSContext *, HandleObject, const Value &);
|
||||
static const VMFunction NewbornArrayPushInfo = FunctionInfo<NewbornArrayPushFn>(NewbornArrayPush);
|
||||
|
||||
bool
|
||||
BaselineCompiler::emit_JSOP_ARRAYPUSH()
|
||||
{
|
||||
// Keep value in R0, object in R1.
|
||||
frame.popRegsAndSync(2);
|
||||
masm.unboxObject(R1, R1.scratchReg());
|
||||
|
||||
prepareVMCall();
|
||||
|
||||
pushArg(R0);
|
||||
pushArg(R1.scratchReg());
|
||||
|
||||
return callVM(NewbornArrayPushInfo);
|
||||
}
|
||||
|
||||
bool
|
||||
BaselineCompiler::emit_JSOP_GETELEM()
|
||||
{
|
||||
|
@ -97,6 +97,7 @@ namespace jit {
|
||||
_(JSOP_INITPROP_GETTER) \
|
||||
_(JSOP_INITPROP_SETTER) \
|
||||
_(JSOP_ENDINIT) \
|
||||
_(JSOP_ARRAYPUSH) \
|
||||
_(JSOP_GETELEM) \
|
||||
_(JSOP_SETELEM) \
|
||||
_(JSOP_CALLELEM) \
|
||||
|
Loading…
x
Reference in New Issue
Block a user