Index: src/arm/code-stubs-arm.cc |
diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc |
index cfea99a194bbd9c054418ba023cf915337d32bb7..fe2095a074a79bbc3954f3a4803bb033d903e378 100644 |
--- a/src/arm/code-stubs-arm.cc |
+++ b/src/arm/code-stubs-arm.cc |
@@ -45,7 +45,7 @@ void FastNewClosureStub::InitializeInterfaceDescriptor( |
descriptor->register_param_count_ = 1; |
descriptor->register_params_ = registers; |
descriptor->deoptimization_handler_ = |
- Runtime::FunctionForId(Runtime::kNewClosureFromStubFailure)->entry; |
+ Runtime::FunctionForId(Runtime::kHiddenNewClosureFromStubFailure)->entry; |
} |
@@ -87,7 +87,8 @@ void FastCloneShallowArrayStub::InitializeInterfaceDescriptor( |
descriptor->register_param_count_ = 3; |
descriptor->register_params_ = registers; |
descriptor->deoptimization_handler_ = |
- Runtime::FunctionForId(Runtime::kCreateArrayLiteralStubBailout)->entry; |
+ Runtime::FunctionForId( |
+ Runtime::kHiddenCreateArrayLiteralStubBailout)->entry; |
} |
@@ -98,7 +99,7 @@ void FastCloneShallowObjectStub::InitializeInterfaceDescriptor( |
descriptor->register_param_count_ = 4; |
descriptor->register_params_ = registers; |
descriptor->deoptimization_handler_ = |
- Runtime::FunctionForId(Runtime::kCreateObjectLiteral)->entry; |
+ Runtime::FunctionForId(Runtime::kHiddenCreateObjectLiteral)->entry; |
} |
@@ -246,7 +247,7 @@ static void InitializeArrayConstructorDescriptor( |
descriptor->hint_stack_parameter_count_ = constant_stack_parameter_count; |
descriptor->function_mode_ = JS_FUNCTION_STUB_MODE; |
descriptor->deoptimization_handler_ = |
- Runtime::FunctionForId(Runtime::kArrayConstructor)->entry; |
+ Runtime::FunctionForId(Runtime::kHiddenArrayConstructor)->entry; |
} |
@@ -274,7 +275,7 @@ static void InitializeInternalArrayConstructorDescriptor( |
descriptor->hint_stack_parameter_count_ = constant_stack_parameter_count; |
descriptor->function_mode_ = JS_FUNCTION_STUB_MODE; |
descriptor->deoptimization_handler_ = |
- Runtime::FunctionForId(Runtime::kInternalArrayConstructor)->entry; |
+ Runtime::FunctionForId(Runtime::kHiddenInternalArrayConstructor)->entry; |
} |
@@ -2148,7 +2149,7 @@ void ArgumentsAccessStub::GenerateNewSloppySlow(MacroAssembler* masm) { |
__ str(r3, MemOperand(sp, 1 * kPointerSize)); |
__ bind(&runtime); |
- __ TailCallRuntime(Runtime::kNewArgumentsFast, 3, 1); |
+ __ TailCallRuntime(Runtime::kHiddenNewArgumentsFast, 3, 1); |
} |
@@ -2352,7 +2353,7 @@ void ArgumentsAccessStub::GenerateNewSloppyFast(MacroAssembler* masm) { |
// r2 = argument count (tagged) |
__ bind(&runtime); |
__ str(r2, MemOperand(sp, 0 * kPointerSize)); // Patch argument count. |
- __ TailCallRuntime(Runtime::kNewArgumentsFast, 3, 1); |
+ __ TailCallRuntime(Runtime::kHiddenNewArgumentsFast, 3, 1); |
} |
@@ -2446,7 +2447,7 @@ void ArgumentsAccessStub::GenerateNewStrict(MacroAssembler* masm) { |
// Do the runtime call to allocate the arguments object. |
__ bind(&runtime); |
- __ TailCallRuntime(Runtime::kNewStrictArgumentsFast, 3, 1); |
+ __ TailCallRuntime(Runtime::kHiddenNewStrictArgumentsFast, 3, 1); |
} |
@@ -3203,7 +3204,7 @@ void StringCharCodeAtGenerator::GenerateSlow( |
} else { |
ASSERT(index_flags_ == STRING_INDEX_IS_ARRAY_INDEX); |
// NumberToSmi discards numbers that are not exact integers. |
- __ CallRuntime(Runtime::kNumberToSmi, 1); |
+ __ CallRuntime(Runtime::kHiddenNumberToSmi, 1); |
} |
// Save the conversion result before the pop instructions below |
// have a chance to overwrite it. |