Searched defs:got (Results 1 - 6 of 6) sorted by relevance

/art/compiler/optimizing/
H A Dgraph_test.cc41 HInstruction* got = new (allocator) HGoto(); local
42 block->AddInstruction(got);
292 HInstruction* got = block->GetLastInstruction(); local
293 ASSERT_TRUE(got->IsControlFlow());
297 block->InsertInstructionBefore(first_instruction, got);
302 ASSERT_EQ(block->GetLastInstruction(), got);
303 ASSERT_EQ(first_instruction->GetNext(), got);
305 ASSERT_EQ(got->GetNext(), nullptr);
306 ASSERT_EQ(got->GetPrevious(), first_instruction);
310 block->InsertInstructionBefore(second_instruction, got);
[all...]
H A Dcode_generator_arm64.cc3524 void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) { argument
3526 HBasicBlock* block = got->GetBlock();
3527 HInstruction* previous = got->GetPrevious();
3543 void LocationsBuilderARM64::VisitGoto(HGoto* got) { argument
3544 got->SetLocations(nullptr);
3547 void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) { argument
3548 HandleGoto(got, got->GetSuccessor());
H A Dcode_generator_arm.cc2389 void InstructionCodeGeneratorARM::HandleGoto(HInstruction* got, HBasicBlock* successor) { argument
2392 HBasicBlock* block = got->GetBlock();
2393 HInstruction* previous = got->GetPrevious();
2405 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
2410 void LocationsBuilderARM::VisitGoto(HGoto* got) { argument
2411 got->SetLocations(nullptr);
2414 void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) { argument
2415 HandleGoto(got, got->GetSuccessor());
H A Dcode_generator_arm_vixl.cc2426 void InstructionCodeGeneratorARMVIXL::HandleGoto(HInstruction* got, HBasicBlock* successor) { argument
2428 HBasicBlock* block = got->GetBlock();
2429 HInstruction* previous = got->GetPrevious();
2445 void LocationsBuilderARMVIXL::VisitGoto(HGoto* got) { argument
2446 got->SetLocations(nullptr);
2449 void InstructionCodeGeneratorARMVIXL::VisitGoto(HGoto* got) { argument
2450 HandleGoto(got, got->GetSuccessor());
H A Dcode_generator_x86.cc1351 void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) { argument
1354 HBasicBlock* block = got->GetBlock();
1355 HInstruction* previous = got->GetPrevious();
1366 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
1371 void LocationsBuilderX86::VisitGoto(HGoto* got) { argument
1372 got->SetLocations(nullptr);
1375 void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) { argument
1376 HandleGoto(got, got->GetSuccessor());
H A Dcode_generator_x86_64.cc1454 void InstructionCodeGeneratorX86_64::HandleGoto(HInstruction* got, HBasicBlock* successor) { argument
1457 HBasicBlock* block = got->GetBlock();
1458 HInstruction* previous = got->GetPrevious();
1469 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
1474 void LocationsBuilderX86_64::VisitGoto(HGoto* got) { argument
1475 got->SetLocations(nullptr);
1478 void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) { argument
1479 HandleGoto(got, got->GetSuccessor());

Completed in 140 milliseconds