diff options
author | Vladimir Marko <vmarko@google.com> | 2015-05-29 15:50:18 +0100 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2015-06-15 15:13:28 +0100 |
commit | f38caa68cce551fb153dff37d01db518e58ed00f (patch) | |
tree | 723612f20666f429b7c67321f0353d57425b1c63 /compiler/optimizing/code_generator.h | |
parent | bd8c725e465cc7f44062745a6f2b73248f5159ed (diff) |
ART: Implement literal pool for arm, fix branch fixup.
Change-Id: Iecc91418bb4ee1c957f42fefb737d0ee2ba960e7
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r-- | compiler/optimizing/code_generator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index e6b1f7c6aa..a82b08afe9 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -358,6 +358,7 @@ class CodeGenerator { number_of_register_pairs_(number_of_register_pairs), core_callee_save_mask_(core_callee_save_mask), fpu_callee_save_mask_(fpu_callee_save_mask), + stack_map_stream_(graph->GetArena()), is_baseline_(false), graph_(graph), compiler_options_(compiler_options), @@ -365,8 +366,7 @@ class CodeGenerator { block_order_(nullptr), current_block_index_(0), is_leaf_(true), - requires_current_method_(false), - stack_map_stream_(graph->GetArena()) {} + requires_current_method_(false) {} // Register allocation logic. void AllocateRegistersLocally(HInstruction* instruction) const; @@ -436,6 +436,8 @@ class CodeGenerator { const uint32_t core_callee_save_mask_; const uint32_t fpu_callee_save_mask_; + StackMapStream stack_map_stream_; + // Whether we are using baseline. bool is_baseline_; @@ -464,8 +466,6 @@ class CodeGenerator { // Whether an instruction in the graph accesses the current method. bool requires_current_method_; - StackMapStream stack_map_stream_; - friend class OptimizingCFITest; DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |