| Index: src/full-codegen/ia32/full-codegen-ia32.cc
|
| diff --git a/src/full-codegen/ia32/full-codegen-ia32.cc b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| index bbb5d6991a748953806de614b08d99ab535fa926..34aa43e191a218750ae043e6af84a73680d4bf66 100644
|
| --- a/src/full-codegen/ia32/full-codegen-ia32.cc
|
| +++ b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| @@ -3264,38 +3264,6 @@ void FullCodeGenerator::EmitIsNonNegativeSmi(CallRuntime* expr) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitIsObject(CallRuntime* expr) {
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK(args->length() == 1);
|
| -
|
| - VisitForAccumulatorValue(args->at(0));
|
| -
|
| - Label materialize_true, materialize_false;
|
| - Label* if_true = NULL;
|
| - Label* if_false = NULL;
|
| - Label* fall_through = NULL;
|
| - context()->PrepareTest(&materialize_true, &materialize_false,
|
| - &if_true, &if_false, &fall_through);
|
| -
|
| - __ JumpIfSmi(eax, if_false);
|
| - __ cmp(eax, isolate()->factory()->null_value());
|
| - __ j(equal, if_true);
|
| - __ mov(ebx, FieldOperand(eax, HeapObject::kMapOffset));
|
| - // Undetectable objects behave like undefined when tested with typeof.
|
| - __ movzx_b(ecx, FieldOperand(ebx, Map::kBitFieldOffset));
|
| - __ test(ecx, Immediate(1 << Map::kIsUndetectable));
|
| - __ j(not_zero, if_false);
|
| - __ movzx_b(ecx, FieldOperand(ebx, Map::kInstanceTypeOffset));
|
| - __ cmp(ecx, FIRST_NONCALLABLE_SPEC_OBJECT_TYPE);
|
| - __ j(below, if_false);
|
| - __ cmp(ecx, LAST_NONCALLABLE_SPEC_OBJECT_TYPE);
|
| - PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
| - Split(below_equal, if_true, if_false, fall_through);
|
| -
|
| - context()->Plug(if_true, if_false);
|
| -}
|
| -
|
| -
|
| void FullCodeGenerator::EmitIsSpecObject(CallRuntime* expr) {
|
| ZoneList<Expression*>* args = expr->arguments();
|
| DCHECK(args->length() == 1);
|
|
|