Index: src/x64/lithium-codegen-x64.h |
diff --git a/src/x64/lithium-codegen-x64.h b/src/x64/lithium-codegen-x64.h |
index e2c5a0a15ab33a30a408f7f459fc8a4e9dc771fe..9a3d020c1ead78d699212f743ac38efb731424fa 100644 |
--- a/src/x64/lithium-codegen-x64.h |
+++ b/src/x64/lithium-codegen-x64.h |
@@ -86,6 +86,7 @@ class LCodeGen: public LCodeGenBase { |
Register ToRegister(LOperand* op) const; |
XMMRegister ToDoubleRegister(LOperand* op) const; |
bool IsInteger32Constant(LConstantOperand* op) const; |
+ bool IsDehoistedKeyConstant(LConstantOperand* op) const; |
bool IsSmiConstant(LConstantOperand* op) const; |
int32_t ToInteger32(LConstantOperand* op) const; |
Smi* ToSmi(LConstantOperand* op) const; |
@@ -158,6 +159,7 @@ class LCodeGen: public LCodeGenBase { |
// Code generation passes. Returns true if code generation should |
// continue. |
void GenerateBodyInstructionPre(LInstruction* instr) V8_OVERRIDE; |
+ void GenerateBodyInstructionPost(LInstruction* instr) V8_OVERRIDE; |
bool GeneratePrologue(); |
bool GenerateDeferredCode(); |
bool GenerateJumpTable(); |