Index: src/ia32/lithium-codegen-ia32.cc |
diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
index 5af19d01ef4d5592c2498c92001d805b1e68ac59..f27631ca908b749fa9ae9dee2945f152536c5ff1 100644 |
--- a/src/ia32/lithium-codegen-ia32.cc |
+++ b/src/ia32/lithium-codegen-ia32.cc |
@@ -5374,9 +5374,16 @@ void LCodeGen::DoFunctionLiteral(LFunctionLiteral* instr) { |
void LCodeGen::DoTypeof(LTypeof* instr) { |
DCHECK(ToRegister(instr->context()).is(esi)); |
- LOperand* input = instr->value(); |
- EmitPushTaggedOperand(input); |
- CallRuntime(Runtime::kTypeof, 1, instr); |
+ DCHECK(ToRegister(instr->value()).is(ebx)); |
+ Label end, do_call; |
+ Register value_register = ToRegister(instr->value()); |
+ __ JumpIfNotSmi(value_register, &do_call); |
+ __ mov(eax, Immediate(isolate()->factory()->number_string())); |
+ __ jmp(&end); |
+ __ bind(&do_call); |
+ TypeofStub stub(isolate()); |
+ CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
+ __ bind(&end); |
} |