Index: src/x64/lithium-codegen-x64.h |
diff --git a/src/x64/lithium-codegen-x64.h b/src/x64/lithium-codegen-x64.h |
index 1f5382a3dbf3bdfa2b08b16afdabc228268b4ca4..9758f830446f29e6b3ec767e8380154648276b40 100644 |
--- a/src/x64/lithium-codegen-x64.h |
+++ b/src/x64/lithium-codegen-x64.h |
@@ -53,20 +53,20 @@ class LCodeGen BASE_EMBEDDED { |
current_block_(-1), |
current_instruction_(-1), |
instructions_(chunk->instructions()), |
- deoptimizations_(4), |
- jump_table_(4), |
- deoptimization_literals_(8), |
+ deoptimizations_(4, zone), |
+ jump_table_(4, zone), |
+ deoptimization_literals_(8, zone), |
inlined_function_count_(0), |
scope_(info->scope()), |
status_(UNUSED), |
translations_(zone), |
- deferred_(8), |
+ deferred_(8, zone), |
osr_pc_offset_(-1), |
last_lazy_deopt_pc_(0), |
safepoints_(zone), |
+ zone_(zone), |
resolver_(this), |
- expected_safepoint_kind_(Safepoint::kSimple), |
- zone_(zone) { |
+ expected_safepoint_kind_(Safepoint::kSimple) { |
PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
} |
@@ -160,7 +160,7 @@ class LCodeGen BASE_EMBEDDED { |
void Abort(const char* format, ...); |
void Comment(const char* format, ...); |
- void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code); } |
+ void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); } |
// Code generation passes. Returns true if code generation should |
// continue. |
@@ -346,13 +346,13 @@ class LCodeGen BASE_EMBEDDED { |
// itself is emitted at the end of the generated code. |
SafepointTableBuilder safepoints_; |
+ Zone* zone_; |
+ |
// Compiler from a set of parallel moves to a sequential list of moves. |
LGapResolver resolver_; |
Safepoint::Kind expected_safepoint_kind_; |
- Zone* zone_; |
- |
class PushSafepointRegistersScope BASE_EMBEDDED { |
public: |
explicit PushSafepointRegistersScope(LCodeGen* codegen) |