| Index: src/arm/lithium-codegen-arm.h
|
| diff --git a/src/arm/lithium-codegen-arm.h b/src/arm/lithium-codegen-arm.h
|
| index b893a9da7e96a8f66e4dcab1a330ca329310232a..7390a48e80f99492fc899984e8a5273772482d22 100644
|
| --- a/src/arm/lithium-codegen-arm.h
|
| +++ b/src/arm/lithium-codegen-arm.h
|
| @@ -246,8 +246,6 @@ class LCodeGen: public LCodeGenBase {
|
| CallKind call_kind,
|
| R1State r1_state);
|
|
|
| - void LoadHeapObject(Register result, Handle<HeapObject> object);
|
| -
|
| void RecordSafepointWithLazyDeopt(LInstruction* instr,
|
| SafepointMode safepoint_mode);
|
|
|
| @@ -275,6 +273,10 @@ class LCodeGen: public LCodeGenBase {
|
| Register ToRegister(int index) const;
|
| DwVfpRegister ToDoubleRegister(int index) const;
|
|
|
| + MemOperand BuildSeqStringOperand(Register string,
|
| + LOperand* index,
|
| + String::Encoding encoding);
|
| +
|
| void EmitIntegerMathAbs(LMathAbs* instr);
|
|
|
| // Support for recording safepoint and position information.
|
| @@ -295,6 +297,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);
|
| template<class InstrType>
|
|
|