| Index: src/builtins/ia32/builtins-ia32.cc
|
| diff --git a/src/builtins/ia32/builtins-ia32.cc b/src/builtins/ia32/builtins-ia32.cc
|
| index f2ffc2ed5434b858c9859a38bcabcf9838135c02..789a2958f78e859004eba053c50163b8d63d7e03 100644
|
| --- a/src/builtins/ia32/builtins-ia32.cc
|
| +++ b/src/builtins/ia32/builtins-ia32.cc
|
| @@ -2714,32 +2714,6 @@ void Builtins::Generate_Abort(MacroAssembler* masm) {
|
| }
|
|
|
| // static
|
| -void Builtins::Generate_StringToNumber(MacroAssembler* masm) {
|
| - // The StringToNumber stub takes one argument in eax.
|
| - __ AssertString(eax);
|
| -
|
| - // Check if string has a cached array index.
|
| - Label runtime;
|
| - __ test(FieldOperand(eax, String::kHashFieldOffset),
|
| - Immediate(String::kContainsCachedArrayIndexMask));
|
| - __ j(not_zero, &runtime, Label::kNear);
|
| - __ mov(eax, FieldOperand(eax, String::kHashFieldOffset));
|
| - __ IndexFromHash(eax, eax);
|
| - __ Ret();
|
| -
|
| - __ bind(&runtime);
|
| - {
|
| - FrameScope frame(masm, StackFrame::INTERNAL);
|
| - // Push argument.
|
| - __ push(eax);
|
| - // We cannot use a tail call here because this builtin can also be called
|
| - // from wasm.
|
| - __ CallRuntime(Runtime::kStringToNumber);
|
| - }
|
| - __ Ret();
|
| -}
|
| -
|
| -// static
|
| void Builtins::Generate_ToNumber(MacroAssembler* masm) {
|
| // The ToNumber stub takes one argument in eax.
|
| Label not_smi;
|
|
|