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

/art/compiler/optimizing/
H A Dgraph_test.cc42 HInstruction* got = new (allocator) HGoto(); local
43 block->AddInstruction(got);
293 HInstruction* got = block->GetLastInstruction(); local
294 ASSERT_TRUE(got->IsControlFlow());
298 block->InsertInstructionBefore(first_instruction, got);
303 ASSERT_EQ(block->GetLastInstruction(), got);
304 ASSERT_EQ(first_instruction->GetNext(), got);
306 ASSERT_EQ(got->GetNext(), nullptr);
307 ASSERT_EQ(got->GetPrevious(), first_instruction);
311 block->InsertInstructionBefore(second_instruction, got);
[all...]
H A Dcode_generator_arm.cc902 void LocationsBuilderARM::VisitGoto(HGoto* got) { argument
903 got->SetLocations(nullptr);
906 void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) { argument
907 HBasicBlock* successor = got->GetSuccessor();
910 HBasicBlock* block = got->GetBlock();
911 HInstruction* previous = got->GetPrevious();
923 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
H A Dcode_generator_arm64.cc1713 void LocationsBuilderARM64::VisitGoto(HGoto* got) { argument
1714 got->SetLocations(nullptr);
1717 void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) { argument
1718 HBasicBlock* successor = got->GetSuccessor();
1720 HBasicBlock* block = got->GetBlock();
1721 HInstruction* previous = got->GetPrevious();
H A Dcode_generator_mips64.cc1926 void LocationsBuilderMIPS64::VisitGoto(HGoto* got) { argument
1927 got->SetLocations(nullptr);
1930 void InstructionCodeGeneratorMIPS64::VisitGoto(HGoto* got) { argument
1931 HBasicBlock* successor = got->GetSuccessor();
1933 HBasicBlock* block = got->GetBlock();
1934 HInstruction* previous = got->GetPrevious();
H A Dcode_generator_x86.cc803 void LocationsBuilderX86::VisitGoto(HGoto* got) { argument
804 got->SetLocations(nullptr);
807 void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) { argument
808 HBasicBlock* successor = got->GetSuccessor();
811 HBasicBlock* block = got->GetBlock();
812 HInstruction* previous = got->GetPrevious();
823 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
H A Dcode_generator_x86_64.cc766 void LocationsBuilderX86_64::VisitGoto(HGoto* got) { argument
767 got->SetLocations(nullptr);
770 void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) { argument
771 HBasicBlock* successor = got->GetSuccessor();
774 HBasicBlock* block = got->GetBlock();
775 HInstruction* previous = got->GetPrevious();
786 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {

Completed in 2798 milliseconds