Index: src/mips/full-codegen-mips.cc |
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc |
index e1a23b4ed2d81213f4de788dbc94fcc90e10fe8c..9bacac453afc56db420b450e090273b397537652 100644 |
--- a/src/mips/full-codegen-mips.cc |
+++ b/src/mips/full-codegen-mips.cc |
@@ -3602,39 +3602,6 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(ZoneList<Expression*>* args) { |
} |
-void FullCodeGenerator::EmitIsNativeOrStrictMode(ZoneList<Expression*>* args) { |
- ASSERT(args->length() == 1); |
- |
- // Load the function into v0. |
- 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. |
- __ lw(a1, FieldMemOperand(v0, JSFunction::kSharedFunctionInfoOffset)); |
- __ lw(a1, FieldMemOperand(a1, SharedFunctionInfo::kCompilerHintsOffset)); |
- __ And(at, a1, Operand(1 << (SharedFunctionInfo::kStrictModeFunction + |
- kSmiTagSize))); |
- __ Branch(if_true, ne, at, Operand(zero_reg)); |
- |
- // Test for native function. |
- __ And(at, a1, Operand(1 << (SharedFunctionInfo::kNative + kSmiTagSize))); |
- __ Branch(if_true, ne, at, Operand(zero_reg)); |
- |
- // Not native or strict-mode function. |
- __ Branch(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) == '_') { |