| Index: src/crankshaft/mips/lithium-codegen-mips.cc
|
| diff --git a/src/crankshaft/mips/lithium-codegen-mips.cc b/src/crankshaft/mips/lithium-codegen-mips.cc
|
| index ec4dc5664fc0aa71343b6e1d456f195c1334d2c3..5fa7d36514556e6db497b6701ae0a4a2443dd618 100644
|
| --- a/src/crankshaft/mips/lithium-codegen-mips.cc
|
| +++ b/src/crankshaft/mips/lithium-codegen-mips.cc
|
| @@ -2587,9 +2587,9 @@ void LCodeGen::DoLoadGlobalGeneric(LLoadGlobalGeneric* instr) {
|
|
|
| __ li(LoadDescriptor::NameRegister(), Operand(instr->name()));
|
| EmitVectorLoadICRegisters<LLoadGlobalGeneric>(instr);
|
| - Handle<Code> ic =
|
| - CodeFactory::LoadICInOptimizedCode(isolate(), instr->typeof_mode(),
|
| - SLOPPY, PREMONOMORPHIC).code();
|
| + Handle<Code> ic = CodeFactory::LoadICInOptimizedCode(
|
| + isolate(), instr->typeof_mode(), PREMONOMORPHIC)
|
| + .code();
|
| CallCode(ic, RelocInfo::CODE_TARGET, instr);
|
| }
|
|
|
| @@ -2688,10 +2688,10 @@ void LCodeGen::DoLoadNamedGeneric(LLoadNamedGeneric* instr) {
|
| // Name is always in a2.
|
| __ li(LoadDescriptor::NameRegister(), Operand(instr->name()));
|
| EmitVectorLoadICRegisters<LLoadNamedGeneric>(instr);
|
| - Handle<Code> ic =
|
| - CodeFactory::LoadICInOptimizedCode(
|
| - isolate(), NOT_INSIDE_TYPEOF, instr->hydrogen()->language_mode(),
|
| - instr->hydrogen()->initialization_state()).code();
|
| + Handle<Code> ic = CodeFactory::LoadICInOptimizedCode(
|
| + isolate(), NOT_INSIDE_TYPEOF,
|
| + instr->hydrogen()->initialization_state())
|
| + .code();
|
| CallCode(ic, RelocInfo::CODE_TARGET, instr);
|
| }
|
|
|
| @@ -3001,8 +3001,8 @@ void LCodeGen::DoLoadKeyedGeneric(LLoadKeyedGeneric* instr) {
|
| }
|
|
|
| Handle<Code> ic = CodeFactory::KeyedLoadICInOptimizedCode(
|
| - isolate(), instr->hydrogen()->language_mode(),
|
| - instr->hydrogen()->initialization_state()).code();
|
| + isolate(), instr->hydrogen()->initialization_state())
|
| + .code();
|
| CallCode(ic, RelocInfo::CODE_TARGET, instr);
|
| }
|
|
|
|
|