Index: src/arm/lithium-codegen-arm.h |
diff --git a/src/arm/lithium-codegen-arm.h b/src/arm/lithium-codegen-arm.h |
index 143109c92da2f0d2b5c114a994645102e5a61746..21f792153ba9fd4020632b9977e867294e412eaf 100644 |
--- a/src/arm/lithium-codegen-arm.h |
+++ b/src/arm/lithium-codegen-arm.h |
@@ -115,7 +115,7 @@ class LCodeGen BASE_EMBEDDED { |
DwVfpRegister EmitLoadDoubleRegister(LOperand* op, |
SwVfpRegister flt_scratch, |
DwVfpRegister dbl_scratch); |
- int32_t ToRepresentation(LConstantOperand* op, const Representation& r) const; |
+ int ToRepresentation(LConstantOperand* op, const Representation& r) const; |
int32_t ToInteger32(LConstantOperand* op) const; |
Smi* ToSmi(LConstantOperand* op) const; |
double ToDouble(LConstantOperand* op) const; |
@@ -154,7 +154,8 @@ class LCodeGen BASE_EMBEDDED { |
void DoDeferredAllocate(LAllocate* instr); |
void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
Label* map_check); |
- void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); |
+ |
+ void DoCheckMapCommon(Register map_reg, Handle<Map> map, LEnvironment* env); |
// Parallel move support. |
void DoParallelMove(LParallelMove* move); |
@@ -213,7 +214,7 @@ class LCodeGen BASE_EMBEDDED { |
int GetStackSlotCount() const { return chunk()->spill_slot_count(); } |
- void Abort(BailoutReason reason); |
+ void Abort(const char* reason); |
void FPRINTF_CHECKING Comment(const char* format, ...); |
void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); } |