| Index: src/mips/lithium-codegen-mips.h
|
| diff --git a/src/mips/lithium-codegen-mips.h b/src/mips/lithium-codegen-mips.h
|
| index b4651702e0b4ebd599df095dc393cea23fd7028b..63f0661ae53e6c0a31070496c57b3cf1e7c70125 100644
|
| --- a/src/mips/lithium-codegen-mips.h
|
| +++ b/src/mips/lithium-codegen-mips.h
|
| @@ -124,9 +124,11 @@ class LCodeGen: public LCodeGenBase {
|
| void DoDeferredNumberTagD(LNumberTagD* instr);
|
|
|
| enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 };
|
| - void DoDeferredNumberTagI(LInstruction* instr,
|
| - LOperand* value,
|
| - IntegerSignedness signedness);
|
| + void DoDeferredNumberTagIU(LInstruction* instr,
|
| + LOperand* value,
|
| + LOperand* temp1,
|
| + LOperand* temp2,
|
| + IntegerSignedness signedness);
|
|
|
| void DoDeferredTaggedToI(LTaggedToI* instr);
|
| void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr);
|
| @@ -161,9 +163,7 @@ class LCodeGen: public LCodeGenBase {
|
| #undef DECLARE_DO
|
|
|
| private:
|
| - StrictModeFlag strict_mode_flag() const {
|
| - return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
|
| - }
|
| + StrictMode strict_mode() const { return info()->strict_mode(); }
|
|
|
| Scope* scope() const { return scope_; }
|
|
|
| @@ -191,6 +191,7 @@ class LCodeGen: public LCodeGenBase {
|
|
|
| // Code generation passes. Returns true if code generation should
|
| // continue.
|
| + void GenerateBodyInstructionPre(LInstruction* instr) V8_OVERRIDE;
|
| bool GeneratePrologue();
|
| bool GenerateDeferredCode();
|
| bool GenerateDeoptJumpTable();
|
|
|