Lines Matching refs:GetAllocator
50 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
51 loop_preheader_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
52 loop_header_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
53 loop_body_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
54 return_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
55 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
76 parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildLoop()
83 loop_preheader_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop()
84 loop_header_->AddInstruction(new (GetAllocator()) HIf(parameter_)); in BuildLoop()
85 loop_body_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop()
86 return_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildLoop()
87 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoop()
122 HInstruction* get_field = new (GetAllocator()) HInstanceFieldGet(parameter_, in TEST_F()
132 HInstruction* set_field = new (GetAllocator()) HInstanceFieldSet( in TEST_F()
149 HInstruction* get_field = new (GetAllocator()) HInstanceFieldGet(parameter_, in TEST_F()
159 HInstruction* set_field = new (GetAllocator()) HInstanceFieldSet(parameter_, in TEST_F()
182 HInstruction* get_array = new (GetAllocator()) HArrayGet( in TEST_F()
185 HInstruction* set_array = new (GetAllocator()) HArraySet( in TEST_F()
200 HInstruction* get_array = new (GetAllocator()) HArrayGet( in TEST_F()
203 HInstruction* set_array = new (GetAllocator()) HArraySet( in TEST_F()