Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index 962000ad43bd2d63464f4bba3ca49da46fb2f0ec..b04d607624462152b35d861478d0b4561297015a 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -2630,18 +2630,17 @@ class LPlatformChunk V8_FINAL : public LChunk { |
}; |
-class LChunkBuilder V8_FINAL BASE_EMBEDDED { |
+class LChunkBuilder V8_FINAL : public LChunkBuilderBase { |
public: |
LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) |
- : chunk_(NULL), |
+ : LChunkBuilderBase(graph->zone()), |
+ chunk_(NULL), |
info_(info), |
graph_(graph), |
- zone_(graph->zone()), |
status_(UNUSED), |
current_instruction_(NULL), |
current_block_(NULL), |
next_block_(NULL), |
- argument_count_(0), |
allocator_(allocator), |
instruction_pending_deoptimization_environment_(NULL), |
pending_deoptimization_ast_id_(BailoutId::None()) { } |
@@ -2677,7 +2676,6 @@ class LChunkBuilder V8_FINAL BASE_EMBEDDED { |
LPlatformChunk* chunk() const { return chunk_; } |
CompilationInfo* info() const { return info_; } |
HGraph* graph() const { return graph_; } |
- Zone* zone() const { return zone_; } |
bool is_unused() const { return status_ == UNUSED; } |
bool is_building() const { return status_ == BUILDING; } |
@@ -2730,7 +2728,7 @@ class LChunkBuilder V8_FINAL BASE_EMBEDDED { |
// An input operand in register, stack slot or a constant operand. |
// Will not be moved to a register even if one is freely available. |
- MUST_USE_RESULT LOperand* UseAny(HValue* value); |
+ virtual MUST_USE_RESULT LOperand* UseAny(HValue* value) V8_OVERRIDE; |
// Temporary operand that must be in a register. |
MUST_USE_RESULT LUnallocated* TempRegister(); |
@@ -2772,10 +2770,6 @@ class LChunkBuilder V8_FINAL BASE_EMBEDDED { |
HInstruction* hinstr, |
CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); |
- LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env, |
- int* argument_index_accumulator, |
- ZoneList<HValue*>* objects_to_materialize); |
- |
void VisitInstruction(HInstruction* current); |
void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); |
@@ -2788,12 +2782,10 @@ class LChunkBuilder V8_FINAL BASE_EMBEDDED { |
LPlatformChunk* chunk_; |
CompilationInfo* info_; |
HGraph* const graph_; |
- Zone* zone_; |
Status status_; |
HInstruction* current_instruction_; |
HBasicBlock* current_block_; |
HBasicBlock* next_block_; |
- int argument_count_; |
LAllocator* allocator_; |
LInstruction* instruction_pending_deoptimization_environment_; |
BailoutId pending_deoptimization_ast_id_; |