Searched refs:HGoto (Results 1 - 23 of 23) sorted by last modified time

/art/compiler/optimizing/
H A Dblock_builder.cc296 new_catch_block->AddInstruction(new (arena_) HGoto(address));
H A Dbounds_check_elimination.cc1601 true_block->AddInstruction(new (GetGraph()->GetArena()) HGoto());
1602 false_block->AddInstruction(new (GetGraph()->GetArena()) HGoto());
1603 new_preheader->AddInstruction(new (GetGraph()->GetArena()) HGoto());
1607 if_block->AddInstruction(new (GetGraph()->GetArena()) HGoto()); // placeholder
H A Dbounds_check_elimination_test.cc343 block->AddInstruction(new (&allocator_) HGoto());
377 block->AddInstruction(new (allocator) HGoto());
421 loop_body->AddInstruction(new (allocator) HGoto());
497 block->AddInstruction(new (allocator) HGoto());
538 loop_body->AddInstruction(new (allocator) HGoto());
607 block->AddInstruction(new (allocator) HGoto());
646 loop_body->AddInstruction(new (allocator) HGoto());
706 block->AddInstruction(new (allocator) HGoto());
753 loop_body->AddInstruction(new (allocator) HGoto());
808 block->AddInstruction(new (&allocator_) HGoto());
[all...]
H A Dcode_generator_arm.cc1230 void LocationsBuilderARM::VisitGoto(HGoto* got) {
1234 void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) {
H A Dcode_generator_arm64.cc2787 void LocationsBuilderARM64::VisitGoto(HGoto* got) {
2791 void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) {
H A Dcode_generator_mips.cc2580 void LocationsBuilderMIPS::VisitGoto(HGoto* got) {
2603 void InstructionCodeGeneratorMIPS::VisitGoto(HGoto* got) {
H A Dcode_generator_mips64.cc2222 void LocationsBuilderMIPS64::VisitGoto(HGoto* got) {
2226 void InstructionCodeGeneratorMIPS64::VisitGoto(HGoto* got) {
H A Dcode_generator_x86.cc1145 void LocationsBuilderX86::VisitGoto(HGoto* got) {
1149 void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) {
H A Dcode_generator_x86_64.cc1246 void LocationsBuilderX86_64::VisitGoto(HGoto* got) {
1250 void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) {
H A Dcodegen_test.cc640 entry->AddInstruction(new (&allocator) HGoto());
702 entry_block->AddInstruction(new (&allocator) HGoto());
750 entry_block->AddInstruction(new (&allocator) HGoto());
831 entry_block->AddInstruction(new (&allocator) HGoto());
H A Dconstant_folding_test.cc761 entry_block->AddInstruction(new (&allocator_) HGoto());
H A Dgraph_test.cc42 HInstruction* got = new (allocator) HGoto();
H A Dgvn_test.cc163 then->AddInstruction(new (&allocator) HGoto());
173 else_->AddInstruction(new (&allocator) HGoto());
224 block->AddInstruction(new (&allocator) HGoto());
273 loop_body->AddInstruction(new (&allocator) HGoto());
359 entry->AddInstruction(new (&allocator) HGoto());
362 outer_loop_body->AddInstruction(new (&allocator) HGoto());
365 inner_loop_body->AddInstruction(new (&allocator) HGoto());
366 inner_loop_exit->AddInstruction(new (&allocator) HGoto());
H A Dinduction_var_analysis_test.cc95 loop_preheader_[d]->AddInstruction(new (&allocator_) HGoto());
102 loop_body_[d]->AddInstruction(new (&allocator_) HGoto());
H A Dinduction_var_range_test.cc89 loop_preheader_->AddInstruction(new (&allocator_) HGoto());
103 loop_body->AddInstruction(new (&allocator_) HGoto());
H A Dinliner.cc582 otherwise->AddInstruction(new (allocator) HGoto(dex_pc));
583 end_then->AddInstruction(new (allocator) HGoto(dex_pc));
H A Dinstruction_builder.cc285 AppendInstruction(new (arena_) HGoto(0u));
336 AppendInstruction(new (arena_) HGoto());
603 AppendInstruction(new (arena_) HGoto(dex_pc));
1820 AppendInstruction(new (arena_) HGoto(dex_pc));
H A Dlicm_test.cc70 loop_preheader_->AddInstruction(new (&allocator_) HGoto());
72 loop_body_->AddInstruction(new (&allocator_) HGoto());
H A Dnodes.cc324 new_block->AddInstruction(new (arena_) HGoto(successor->GetDexPc()));
346 pre_header->AddInstruction(new (arena_) HGoto(header->GetDexPc()));
1447 AddInstruction(new (GetGraph()->GetArena()) HGoto(new_block->GetDexPc()));
1800 // successor. Replace those with a HGoto.
1805 predecessor->AddInstruction(new (graph_->GetArena()) HGoto(last_instruction->GetDexPc()));
2104 // to not `HReturn` but `HGoto` instead.
2112 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc()));
2127 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc()));
H A Dnodes.h2459 class HGoto : public HTemplateInstruction<0> { class in namespace:art
2461 explicit HGoto(uint32_t dex_pc = kNoDexPc) : HTemplateInstruction(SideEffects::None(), dex_pc) {} function in class:art::HGoto
2472 DISALLOW_COPY_AND_ASSIGN(HGoto);
H A Dnodes_test.cc40 entry->AddInstruction(new (&allocator) HGoto());
H A Dpretty_printer.h130 void VisitGoto(HGoto* gota) OVERRIDE {
H A Dregister_allocator_test.cc495 then->AddInstruction(new (allocator) HGoto());
496 else_->AddInstruction(new (allocator) HGoto());

Completed in 123 milliseconds