Home
last modified time | relevance | path

Searched refs:jump_tables_ (Results 1 – 6 of 6) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_arm_vixl.h879 jump_tables_.emplace_back(new (GetGraph()->GetAllocator()) JumpTableARMVIXL(switch_instr)); in CreateJumpTable()
880 return jump_tables_.back().get(); in CreateJumpTable()
1022 ArenaVector<std::unique_ptr<JumpTableARMVIXL>> jump_tables_; variable
Dcode_generator_arm64.h717 jump_tables_.emplace_back(new (GetGraph()->GetAllocator()) JumpTableARM64(switch_instr)); in CreateJumpTable()
718 return jump_tables_.back().get(); in CreateJumpTable()
1145 ArenaVector<std::unique_ptr<JumpTableARM64>> jump_tables_; variable
Dcode_generator_arm64.cc1003 jump_tables_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), in CodeGeneratorARM64()
1053 for (auto&& jump_table : jump_tables_) { in EmitJumpTables()
Dcode_generator_arm_vixl.cc1941 jump_tables_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), in CodeGeneratorARMVIXL()
2012 for (auto&& jump_table : jump_tables_) { in FixJumpTables()
/art/compiler/utils/riscv64/
Dassembler_riscv64.cc7322 jump_tables_.emplace_back(std::move(labels)); in CreateJumpTable()
7323 JumpTable* table = &jump_tables_.back(); in CreateJumpTable()
7363 if (!jump_tables_.empty()) { in ReserveJumpTableSpace()
7364 for (JumpTable& table : jump_tables_) { in ReserveJumpTableSpace()
7496 if (!jump_tables_.empty()) { in EmitJumpTables()
7502 for (JumpTable& table : jump_tables_) { in EmitJumpTables()
Dassembler_riscv64.h230 jump_tables_(allocator->Adapter(kArenaAllocAssembler)), in Riscv64Assembler()
2723 ArenaDeque<JumpTable> jump_tables_; variable