| Index: src/mips/builtins-mips.cc
|
| diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc
|
| index 63eb5fc550e66bac09b421d2f15bff931d36cbfd..03d6cc80d6960e0b09d3719a6e5562da378bd5be 100644
|
| --- a/src/mips/builtins-mips.cc
|
| +++ b/src/mips/builtins-mips.cc
|
| @@ -332,7 +332,7 @@ void Builtins::Generate_InOptimizationQueue(MacroAssembler* masm) {
|
| __ LoadRoot(t0, Heap::kStackLimitRootIndex);
|
| __ Branch(&ok, hs, sp, Operand(t0));
|
|
|
| - CallRuntimePassFunction(masm, Runtime::kTryInstallOptimizedCode);
|
| + CallRuntimePassFunction(masm, Runtime::kHiddenTryInstallOptimizedCode);
|
| GenerateTailCallToReturnedCode(masm);
|
|
|
| __ bind(&ok);
|
| @@ -427,7 +427,7 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm,
|
|
|
| __ Push(a1, a2, a1); // a1 = Constructor.
|
| // The call will replace the stub, so the countdown is only done once.
|
| - __ CallRuntime(Runtime::kFinalizeInstanceSize, 1);
|
| + __ CallRuntime(Runtime::kHiddenFinalizeInstanceSize, 1);
|
|
|
| __ Pop(a1, a2);
|
|
|
| @@ -624,9 +624,9 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm,
|
|
|
| __ push(a1); // Argument for Runtime_NewObject.
|
| if (create_memento) {
|
| - __ CallRuntime(Runtime::kNewObjectWithAllocationSite, 2);
|
| + __ CallRuntime(Runtime::kHiddenNewObjectWithAllocationSite, 2);
|
| } else {
|
| - __ CallRuntime(Runtime::kNewObject, 1);
|
| + __ CallRuntime(Runtime::kHiddenNewObject, 1);
|
| }
|
| __ mov(t4, v0);
|
|
|
| @@ -854,7 +854,7 @@ void Builtins::Generate_JSConstructEntryTrampoline(MacroAssembler* masm) {
|
|
|
|
|
| void Builtins::Generate_CompileUnoptimized(MacroAssembler* masm) {
|
| - CallRuntimePassFunction(masm, Runtime::kCompileUnoptimized);
|
| + CallRuntimePassFunction(masm, Runtime::kHiddenCompileUnoptimized);
|
| GenerateTailCallToReturnedCode(masm);
|
| }
|
|
|
| @@ -867,7 +867,7 @@ static void CallCompileOptimized(MacroAssembler* masm, bool concurrent) {
|
| // Whether to compile in a background thread.
|
| __ Push(masm->isolate()->factory()->ToBoolean(concurrent));
|
|
|
| - __ CallRuntime(Runtime::kCompileOptimized, 2);
|
| + __ CallRuntime(Runtime::kHiddenCompileOptimized, 2);
|
| // Restore receiver.
|
| __ Pop(a1);
|
| }
|
| @@ -976,7 +976,7 @@ static void Generate_NotifyStubFailureHelper(MacroAssembler* masm,
|
| // registers.
|
| __ MultiPush(kJSCallerSaved | kCalleeSaved);
|
| // Pass the function and deoptimization type to the runtime system.
|
| - __ CallRuntime(Runtime::kNotifyStubFailure, 0, save_doubles);
|
| + __ CallRuntime(Runtime::kHiddenNotifyStubFailure, 0, save_doubles);
|
| __ MultiPop(kJSCallerSaved | kCalleeSaved);
|
| }
|
|
|
| @@ -1002,7 +1002,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::kNotifyDeoptimized, 1);
|
| + __ CallRuntime(Runtime::kHiddenNotifyDeoptimized, 1);
|
| }
|
|
|
| // Get the full codegen state from the stack and untag it -> t2.
|
| @@ -1084,7 +1084,7 @@ void Builtins::Generate_OsrAfterStackCheck(MacroAssembler* masm) {
|
| __ Branch(&ok, hs, sp, Operand(at));
|
| {
|
| FrameScope scope(masm, StackFrame::INTERNAL);
|
| - __ CallRuntime(Runtime::kStackGuard, 0);
|
| + __ CallRuntime(Runtime::kHiddenStackGuard, 0);
|
| }
|
| __ Jump(masm->isolate()->builtins()->OnStackReplacement(),
|
| RelocInfo::CODE_TARGET);
|
|
|