Index: src/full-codegen/mips64/full-codegen-mips64.cc |
diff --git a/src/full-codegen/mips64/full-codegen-mips64.cc b/src/full-codegen/mips64/full-codegen-mips64.cc |
index 1539cc4fe0a78d5de52f2769e0a96d291640d0b8..c2740a8ed3c2176da32670851c9a40bf9b8c2da0 100644 |
--- a/src/full-codegen/mips64/full-codegen-mips64.cc |
+++ b/src/full-codegen/mips64/full-codegen-mips64.cc |
@@ -966,8 +966,8 @@ void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { |
// Record position before stub call for type feedback. |
SetExpressionPosition(clause); |
- Handle<Code> ic = CodeFactory::CompareIC(isolate(), Token::EQ_STRICT, |
- strength(language_mode())).code(); |
+ Handle<Code> ic = |
+ CodeFactory::CompareIC(isolate(), Token::EQ_STRICT).code(); |
CallIC(ic, clause->CompareId()); |
patch_site.EmitPatchInfo(); |
@@ -2156,8 +2156,7 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr, |
patch_site.EmitJumpIfSmi(scratch1, &smi_case); |
__ bind(&stub_call); |
- Handle<Code> code = |
- CodeFactory::BinaryOpIC(isolate(), op, strength(language_mode())).code(); |
+ Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op).code(); |
CallIC(code, expr->BinaryOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
__ jmp(&done); |
@@ -2285,8 +2284,7 @@ void FullCodeGenerator::EmitClassDefineProperties(ClassLiteral* lit) { |
void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr, Token::Value op) { |
__ mov(a0, result_register()); |
__ pop(a1); |
- Handle<Code> code = |
- CodeFactory::BinaryOpIC(isolate(), op, strength(language_mode())).code(); |
+ Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op).code(); |
JumpPatchSite patch_site(masm_); // unbound, signals no inlined smi code. |
CallIC(code, expr->BinaryOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
@@ -4123,9 +4121,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
SetExpressionPosition(expr); |
- |
- Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), Token::ADD, |
- strength(language_mode())).code(); |
+ Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), Token::ADD).code(); |
CallIC(code, expr->CountBinOpFeedbackId()); |
patch_site.EmitPatchInfo(); |
__ bind(&done); |
@@ -4353,8 +4349,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) { |
__ bind(&slow_case); |
} |
- Handle<Code> ic = CodeFactory::CompareIC( |
- isolate(), op, strength(language_mode())).code(); |
+ Handle<Code> ic = CodeFactory::CompareIC(isolate(), op).code(); |
CallIC(ic, expr->CompareOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
PrepareForBailoutBeforeSplit(expr, true, if_true, if_false); |