Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index 07fd7258234e7e7550afc4eb59261c68e61e145b..3e42cc1343ae1cf9be2a3768c193f4d8282c0650 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -3633,39 +3633,6 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(ZoneList<Expression*>* args) { |
} |
-void FullCodeGenerator::EmitIsNativeOrStrictMode(ZoneList<Expression*>* args) { |
- ASSERT(args->length() == 1); |
- |
- // Load the function into eax. |
- VisitForAccumulatorValue(args->at(0)); |
- |
- // Prepare for the test. |
- 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); |
- |
- // Test for strict mode function. |
- __ mov(ecx, FieldOperand(eax, JSFunction::kSharedFunctionInfoOffset)); |
- __ test_b(FieldOperand(ecx, SharedFunctionInfo::kStrictModeByteOffset), |
- 1 << SharedFunctionInfo::kStrictModeBitWithinByte); |
- __ j(not_equal, if_true); |
- |
- // Test for native function. |
- __ test_b(FieldOperand(ecx, SharedFunctionInfo::kNativeByteOffset), |
- 1 << SharedFunctionInfo::kNativeBitWithinByte); |
- __ j(not_equal, if_true); |
- |
- // Not native or strict-mode function. |
- __ jmp(if_false); |
- |
- PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false); |
- context()->Plug(if_true, if_false); |
-} |
- |
- |
void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) { |
Handle<String> name = expr->name(); |
if (name->length() > 0 && name->Get(0) == '_') { |