| Index: src/ia32/code-stubs-ia32.cc
|
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
|
| index 9a6719bcda1531cf6bb0f28ab3a4a31e2c2d2a80..6147d373360f0c76b99f1e97f51b07306824f05b 100644
|
| --- a/src/ia32/code-stubs-ia32.cc
|
| +++ b/src/ia32/code-stubs-ia32.cc
|
| @@ -26,7 +26,7 @@ void FastNewClosureStub::InitializeInterfaceDescriptor(
|
| descriptor->register_param_count_ = 1;
|
| descriptor->register_params_ = registers;
|
| descriptor->deoptimization_handler_ =
|
| - Runtime::FunctionForId(Runtime::kHiddenNewClosureFromStubFailure)->entry;
|
| + Runtime::FunctionForId(Runtime::kNewClosureFromStubFailure)->entry;
|
| }
|
|
|
|
|
| @@ -54,7 +54,7 @@ void NumberToStringStub::InitializeInterfaceDescriptor(
|
| descriptor->register_param_count_ = 1;
|
| descriptor->register_params_ = registers;
|
| descriptor->deoptimization_handler_ =
|
| - Runtime::FunctionForId(Runtime::kHiddenNumberToString)->entry;
|
| + Runtime::FunctionForId(Runtime::kNumberToString)->entry;
|
| }
|
|
|
|
|
| @@ -70,7 +70,7 @@ void FastCloneShallowArrayStub::InitializeInterfaceDescriptor(
|
| descriptor->register_param_representations_ = representations;
|
| descriptor->deoptimization_handler_ =
|
| Runtime::FunctionForId(
|
| - Runtime::kHiddenCreateArrayLiteralStubBailout)->entry;
|
| + Runtime::kCreateArrayLiteralStubBailout)->entry;
|
| }
|
|
|
|
|
| @@ -80,7 +80,7 @@ void FastCloneShallowObjectStub::InitializeInterfaceDescriptor(
|
| descriptor->register_param_count_ = 4;
|
| descriptor->register_params_ = registers;
|
| descriptor->deoptimization_handler_ =
|
| - Runtime::FunctionForId(Runtime::kHiddenCreateObjectLiteral)->entry;
|
| + Runtime::FunctionForId(Runtime::kCreateObjectLiteral)->entry;
|
| }
|
|
|
|
|
| @@ -119,7 +119,7 @@ void RegExpConstructResultStub::InitializeInterfaceDescriptor(
|
| descriptor->register_param_count_ = 3;
|
| descriptor->register_params_ = registers;
|
| descriptor->deoptimization_handler_ =
|
| - Runtime::FunctionForId(Runtime::kHiddenRegExpConstructResult)->entry;
|
| + Runtime::FunctionForId(Runtime::kRegExpConstructResult)->entry;
|
| }
|
|
|
|
|
| @@ -219,7 +219,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::kHiddenArrayConstructor)->entry;
|
| + Runtime::FunctionForId(Runtime::kArrayConstructor)->entry;
|
| }
|
|
|
|
|
| @@ -250,7 +250,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::kHiddenInternalArrayConstructor)->entry;
|
| + Runtime::FunctionForId(Runtime::kInternalArrayConstructor)->entry;
|
| }
|
|
|
|
|
| @@ -360,7 +360,7 @@ void StringAddStub::InitializeInterfaceDescriptor(
|
| descriptor->register_param_count_ = 2;
|
| descriptor->register_params_ = registers;
|
| descriptor->deoptimization_handler_ =
|
| - Runtime::FunctionForId(Runtime::kHiddenStringAdd)->entry;
|
| + Runtime::FunctionForId(Runtime::kStringAdd)->entry;
|
| }
|
|
|
|
|
| @@ -965,7 +965,7 @@ void MathPowStub::Generate(MacroAssembler* masm) {
|
| if (exponent_type_ == ON_STACK) {
|
| // The arguments are still on the stack.
|
| __ bind(&call_runtime);
|
| - __ TailCallRuntime(Runtime::kHiddenMathPow, 2, 1);
|
| + __ TailCallRuntime(Runtime::kMathPow, 2, 1);
|
|
|
| // The stub is called from non-optimized code, which expects the result
|
| // as heap number in exponent.
|
| @@ -1098,7 +1098,7 @@ void ArgumentsAccessStub::GenerateNewSloppySlow(MacroAssembler* masm) {
|
| __ mov(Operand(esp, 2 * kPointerSize), edx);
|
|
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kHiddenNewSloppyArguments, 3, 1);
|
| + __ TailCallRuntime(Runtime::kNewSloppyArguments, 3, 1);
|
| }
|
|
|
|
|
| @@ -1321,7 +1321,7 @@ void ArgumentsAccessStub::GenerateNewSloppyFast(MacroAssembler* masm) {
|
| __ bind(&runtime);
|
| __ pop(eax); // Remove saved parameter count.
|
| __ mov(Operand(esp, 1 * kPointerSize), ecx); // Patch argument count.
|
| - __ TailCallRuntime(Runtime::kHiddenNewSloppyArguments, 3, 1);
|
| + __ TailCallRuntime(Runtime::kNewSloppyArguments, 3, 1);
|
| }
|
|
|
|
|
| @@ -1418,7 +1418,7 @@ void ArgumentsAccessStub::GenerateNewStrict(MacroAssembler* masm) {
|
|
|
| // Do the runtime call to allocate the arguments object.
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kHiddenNewStrictArguments, 3, 1);
|
| + __ TailCallRuntime(Runtime::kNewStrictArguments, 3, 1);
|
| }
|
|
|
|
|
| @@ -1427,7 +1427,7 @@ void RegExpExecStub::Generate(MacroAssembler* masm) {
|
| // time or if regexp entry in generated code is turned off runtime switch or
|
| // at compilation.
|
| #ifdef V8_INTERPRETED_REGEXP
|
| - __ TailCallRuntime(Runtime::kHiddenRegExpExec, 4, 1);
|
| + __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
|
| #else // V8_INTERPRETED_REGEXP
|
|
|
| // Stack frame on entry.
|
| @@ -1810,7 +1810,7 @@ void RegExpExecStub::Generate(MacroAssembler* masm) {
|
|
|
| // Do the runtime call to execute the regexp.
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kHiddenRegExpExec, 4, 1);
|
| + __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
|
|
|
| // Deferred code for string handling.
|
| // (7) Not a long external string? If yes, go to (10).
|
| @@ -3106,7 +3106,7 @@ void StringCharCodeAtGenerator::GenerateSlow(
|
| } else {
|
| ASSERT(index_flags_ == STRING_INDEX_IS_ARRAY_INDEX);
|
| // NumberToSmi discards numbers that are not exact integers.
|
| - __ CallRuntime(Runtime::kHiddenNumberToSmi, 1);
|
| + __ CallRuntime(Runtime::kNumberToSmi, 1);
|
| }
|
| if (!index_.is(eax)) {
|
| // Save the conversion result before the pop instructions below
|
| @@ -3132,7 +3132,7 @@ void StringCharCodeAtGenerator::GenerateSlow(
|
| __ push(object_);
|
| __ SmiTag(index_);
|
| __ push(index_);
|
| - __ CallRuntime(Runtime::kHiddenStringCharCodeAt, 2);
|
| + __ CallRuntime(Runtime::kStringCharCodeAt, 2);
|
| if (!result_.is(eax)) {
|
| __ mov(result_, eax);
|
| }
|
| @@ -3497,7 +3497,7 @@ void SubStringStub::Generate(MacroAssembler* masm) {
|
|
|
| // Just jump to runtime to create the sub string.
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kHiddenSubString, 3, 1);
|
| + __ TailCallRuntime(Runtime::kSubString, 3, 1);
|
|
|
| __ bind(&single_char);
|
| // eax: string
|
| @@ -3679,7 +3679,7 @@ void StringCompareStub::Generate(MacroAssembler* masm) {
|
| // Call the runtime; it returns -1 (less), 0 (equal), or 1 (greater)
|
| // tagged as a small integer.
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kHiddenStringCompare, 2, 1);
|
| + __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
|
| }
|
|
|
|
|
| @@ -3991,7 +3991,7 @@ void ICCompareStub::GenerateStrings(MacroAssembler* masm) {
|
| if (equality) {
|
| __ TailCallRuntime(Runtime::kStringEquals, 2, 1);
|
| } else {
|
| - __ TailCallRuntime(Runtime::kHiddenStringCompare, 2, 1);
|
| + __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
|
| }
|
|
|
| __ bind(&miss);
|
|
|