| Index: src/mips/lithium-codegen-mips.h
|
| diff --git a/src/mips/lithium-codegen-mips.h b/src/mips/lithium-codegen-mips.h
|
| index f643d021912b4c0cd5971f5c1fab8700b3330750..c15352fcbee725a49599b2a921b268581b764295 100644
|
| --- a/src/mips/lithium-codegen-mips.h
|
| +++ b/src/mips/lithium-codegen-mips.h
|
| @@ -242,8 +242,6 @@ class LCodeGen: public LCodeGenBase {
|
| CallKind call_kind,
|
| A1State a1_state);
|
|
|
| - void LoadHeapObject(Register result, Handle<HeapObject> object);
|
| -
|
| void RecordSafepointWithLazyDeopt(LInstruction* instr,
|
| SafepointMode safepoint_mode);
|
|
|
| @@ -279,6 +277,10 @@ class LCodeGen: public LCodeGenBase {
|
| Register ToRegister(int index) const;
|
| DoubleRegister ToDoubleRegister(int index) const;
|
|
|
| + MemOperand BuildSeqStringOperand(Register string,
|
| + LOperand* index,
|
| + String::Encoding encoding);
|
| +
|
| void EmitIntegerMathAbs(LMathAbs* instr);
|
|
|
| // Support for recording safepoint and position information.
|
| @@ -299,6 +301,8 @@ class LCodeGen: public LCodeGenBase {
|
|
|
| static Condition TokenToCondition(Token::Value op, bool is_unsigned);
|
| void EmitGoto(int block);
|
| +
|
| + // EmitBranch expects to be the last instruction of a block.
|
| template<class InstrType>
|
| void EmitBranch(InstrType instr,
|
| Condition condition,
|
| @@ -310,6 +314,11 @@ class LCodeGen: public LCodeGenBase {
|
| FPURegister src1,
|
| FPURegister src2);
|
| template<class InstrType>
|
| + void EmitFalseBranch(InstrType instr,
|
| + Condition condition,
|
| + Register src1,
|
| + const Operand& src2);
|
| + template<class InstrType>
|
| void EmitFalseBranchF(InstrType instr,
|
| Condition condition,
|
| FPURegister src1,
|
|
|