Index: src/mips/builtins-mips.cc |
diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc |
index 800a79e19204904a703eb62660005efa343c5d1f..e1f1519858e3e44f7a5396134c52fbf0d166b14c 100644 |
--- a/src/mips/builtins-mips.cc |
+++ b/src/mips/builtins-mips.cc |
@@ -309,7 +309,7 @@ void Builtins::Generate_InOptimizationQueue(MacroAssembler* masm) { |
__ LoadRoot(t0, Heap::kStackLimitRootIndex); |
__ Branch(&ok, hs, sp, Operand(t0)); |
- CallRuntimePassFunction(masm, Runtime::kHiddenTryInstallOptimizedCode); |
+ CallRuntimePassFunction(masm, Runtime::kTryInstallOptimizedCode); |
GenerateTailCallToReturnedCode(masm); |
__ bind(&ok); |
@@ -393,7 +393,7 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm, |
__ sw(t0, bit_field3); // In delay slot. |
__ Push(a1, a2, a1); // a1 = Constructor. |
- __ CallRuntime(Runtime::kHiddenFinalizeInstanceSize, 1); |
+ __ CallRuntime(Runtime::kFinalizeInstanceSize, 1); |
__ Pop(a1, a2); |
// Slack tracking counter is kNoSlackTracking after runtime call. |
@@ -600,9 +600,9 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm, |
__ push(a1); // 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(t4, v0); |
@@ -825,7 +825,7 @@ void Builtins::Generate_JSConstructEntryTrampoline(MacroAssembler* masm) { |
void Builtins::Generate_CompileUnoptimized(MacroAssembler* masm) { |
- CallRuntimePassFunction(masm, Runtime::kHiddenCompileUnoptimized); |
+ CallRuntimePassFunction(masm, Runtime::kCompileUnoptimized); |
GenerateTailCallToReturnedCode(masm); |
} |
@@ -838,7 +838,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(a1); |
} |
@@ -947,7 +947,7 @@ static void Generate_NotifyStubFailureHelper(MacroAssembler* masm, |
// registers. |
__ MultiPush(kJSCallerSaved | kCalleeSaved); |
// Pass the function and deoptimization type to the runtime system. |
- __ CallRuntime(Runtime::kHiddenNotifyStubFailure, 0, save_doubles); |
+ __ CallRuntime(Runtime::kNotifyStubFailure, 0, save_doubles); |
__ MultiPop(kJSCallerSaved | kCalleeSaved); |
} |
@@ -973,7 +973,7 @@ static void Generate_NotifyDeoptimizedHelper(MacroAssembler* masm, |
// Pass the function and deoptimization type to the runtime system. |
__ li(a0, Operand(Smi::FromInt(static_cast<int>(type)))); |
__ push(a0); |
- __ CallRuntime(Runtime::kHiddenNotifyDeoptimized, 1); |
+ __ CallRuntime(Runtime::kNotifyDeoptimized, 1); |
} |
// Get the full codegen state from the stack and untag it -> t2. |
@@ -1055,7 +1055,7 @@ void Builtins::Generate_OsrAfterStackCheck(MacroAssembler* masm) { |
__ Branch(&ok, hs, sp, Operand(at)); |
{ |
FrameScope scope(masm, StackFrame::INTERNAL); |
- __ CallRuntime(Runtime::kHiddenStackGuard, 0); |
+ __ CallRuntime(Runtime::kStackGuard, 0); |
} |
__ Jump(masm->isolate()->builtins()->OnStackReplacement(), |
RelocInfo::CODE_TARGET); |