Index: src/ia32/lithium-ia32.h |
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h |
index 31a1e624ec19a4c42071ba90c9f6a7a6521768e2..62815f33b9b4017091832a240918afbac2bf9639 100644 |
--- a/src/ia32/lithium-ia32.h |
+++ b/src/ia32/lithium-ia32.h |
@@ -2712,18 +2712,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()) { } |
@@ -2759,7 +2758,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; } |
@@ -2814,7 +2812,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(); |
@@ -2860,10 +2858,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); |
@@ -2878,12 +2872,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_; |