| Index: src/arm/builtins-arm.cc
|
| diff --git a/src/arm/builtins-arm.cc b/src/arm/builtins-arm.cc
|
| index 36898487c7aab0fea62e5268d6d91bfd53f91e0e..c022d7c343e748959d6388fad8d39104a21e3188 100644
|
| --- a/src/arm/builtins-arm.cc
|
| +++ b/src/arm/builtins-arm.cc
|
| @@ -303,7 +303,7 @@ void Builtins::Generate_InOptimizationQueue(MacroAssembler* masm) {
|
| __ cmp(sp, Operand(ip));
|
| __ b(hs, &ok);
|
|
|
| - CallRuntimePassFunction(masm, Runtime::kHiddenTryInstallOptimizedCode);
|
| + CallRuntimePassFunction(masm, Runtime::kTryInstallOptimizedCode);
|
| GenerateTailCallToReturnedCode(masm);
|
|
|
| __ bind(&ok);
|
| @@ -385,7 +385,7 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm,
|
| __ push(r1);
|
|
|
| __ Push(r2, r1); // r1 = constructor
|
| - __ CallRuntime(Runtime::kHiddenFinalizeInstanceSize, 1);
|
| + __ CallRuntime(Runtime::kFinalizeInstanceSize, 1);
|
|
|
| __ pop(r2);
|
| __ pop(r1);
|
| @@ -578,9 +578,9 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm,
|
|
|
| __ push(r1); // argument for Runtime_NewObject
|
| if (create_memento) {
|
| - __ CallRuntime(Runtime::kHiddenNewObjectWithAllocationSite, 2);
|
| + __ CallRuntime(Runtime::kNewObjectWithAllocationSite, 2);
|
| } else {
|
| - __ CallRuntime(Runtime::kHiddenNewObject, 1);
|
| + __ CallRuntime(Runtime::kNewObject, 1);
|
| }
|
| __ mov(r4, r0);
|
|
|
| @@ -809,7 +809,7 @@ void Builtins::Generate_JSConstructEntryTrampoline(MacroAssembler* masm) {
|
|
|
|
|
| void Builtins::Generate_CompileUnoptimized(MacroAssembler* masm) {
|
| - CallRuntimePassFunction(masm, Runtime::kHiddenCompileUnoptimized);
|
| + CallRuntimePassFunction(masm, Runtime::kCompileUnoptimized);
|
| GenerateTailCallToReturnedCode(masm);
|
| }
|
|
|
| @@ -823,7 +823,7 @@ static void CallCompileOptimized(MacroAssembler* masm, bool concurrent) {
|
| // Whether to compile in a background thread.
|
| __ Push(masm->isolate()->factory()->ToBoolean(concurrent));
|
|
|
| - __ CallRuntime(Runtime::kHiddenCompileOptimized, 2);
|
| + __ CallRuntime(Runtime::kCompileOptimized, 2);
|
| // Restore receiver.
|
| __ pop(r1);
|
| }
|
| @@ -918,7 +918,7 @@ static void Generate_NotifyStubFailureHelper(MacroAssembler* masm,
|
| // registers.
|
| __ stm(db_w, sp, kJSCallerSaved | kCalleeSaved);
|
| // Pass the function and deoptimization type to the runtime system.
|
| - __ CallRuntime(Runtime::kHiddenNotifyStubFailure, 0, save_doubles);
|
| + __ CallRuntime(Runtime::kNotifyStubFailure, 0, save_doubles);
|
| __ ldm(ia_w, sp, kJSCallerSaved | kCalleeSaved);
|
| }
|
|
|
| @@ -944,7 +944,7 @@ static void Generate_NotifyDeoptimizedHelper(MacroAssembler* masm,
|
| // Pass the function and deoptimization type to the runtime system.
|
| __ mov(r0, Operand(Smi::FromInt(static_cast<int>(type))));
|
| __ push(r0);
|
| - __ CallRuntime(Runtime::kHiddenNotifyDeoptimized, 1);
|
| + __ CallRuntime(Runtime::kNotifyDeoptimized, 1);
|
| }
|
|
|
| // Get the full codegen state from the stack and untag it -> r6.
|
| @@ -1035,7 +1035,7 @@ void Builtins::Generate_OsrAfterStackCheck(MacroAssembler* masm) {
|
| __ b(hs, &ok);
|
| {
|
| FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL);
|
| - __ CallRuntime(Runtime::kHiddenStackGuard, 0);
|
| + __ CallRuntime(Runtime::kStackGuard, 0);
|
| }
|
| __ Jump(masm->isolate()->builtins()->OnStackReplacement(),
|
| RelocInfo::CODE_TARGET);
|
|
|