| Index: src/arm/builtins-arm.cc
|
| ===================================================================
|
| --- src/arm/builtins-arm.cc (revision 2148)
|
| +++ src/arm/builtins-arm.cc (working copy)
|
| @@ -183,7 +183,7 @@
|
| __ bind(&non_function_call);
|
|
|
| // Set expected number of arguments to zero (not changing r0).
|
| - __ mov(r2, Operand(0));
|
| + __ mov(r2, Operand(0, RelocInfo::NONE));
|
| __ GetBuiltinEntry(r3, Builtins::CALL_NON_FUNCTION_AS_CONSTRUCTOR);
|
| __ Jump(Handle<Code>(builtin(ArgumentsAdaptorTrampoline)),
|
| RelocInfo::CODE_TARGET);
|
| @@ -201,7 +201,7 @@
|
| // r5-r7, cp may be clobbered
|
|
|
| // Clear the context before we push it when entering the JS frame.
|
| - __ mov(cp, Operand(0));
|
| + __ mov(cp, Operand(0, RelocInfo::NONE));
|
|
|
| // Enter an internal frame.
|
| __ EnterInternalFrame();
|
| @@ -291,7 +291,7 @@
|
|
|
| // Non-function called: Clear the function to force exception.
|
| __ bind(&non_function);
|
| - __ mov(r1, Operand(0));
|
| + __ mov(r1, Operand(0, RelocInfo::NONE));
|
| __ b(&done);
|
|
|
| // Change the context eagerly because it will be used below to get the
|
| @@ -391,7 +391,8 @@
|
| { Label invoke;
|
| __ tst(r1, r1);
|
| __ b(ne, &invoke);
|
| - __ mov(r2, Operand(0)); // expected arguments is 0 for CALL_NON_FUNCTION
|
| + // expected arguments is 0 for CALL_NON_FUNCTION
|
| + __ mov(r2, Operand(0, RelocInfo::NONE));
|
| __ GetBuiltinEntry(r3, Builtins::CALL_NON_FUNCTION);
|
| __ Jump(Handle<Code>(builtin(ArgumentsAdaptorTrampoline)),
|
| RelocInfo::CODE_TARGET);
|
| @@ -472,7 +473,7 @@
|
| // Push current limit and index.
|
| __ bind(&okay);
|
| __ push(r0); // limit
|
| - __ mov(r1, Operand(0)); // initial index
|
| + __ mov(r1, Operand(0, RelocInfo::NONE)); // initial index
|
| __ push(r1);
|
|
|
| // Change context eagerly to get the right global object if necessary.
|
|
|