Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator_arm64.h500 jump_tables_.emplace_back(new (GetGraph()->GetAllocator()) JumpTableARM64(switch_instr)); in CreateJumpTable()
501 return jump_tables_.back().get(); in CreateJumpTable()
883 ArenaVector<std::unique_ptr<JumpTableARM64>> jump_tables_; variable
Dcode_generator_arm_vixl.h731 jump_tables_.emplace_back(new (GetGraph()->GetAllocator()) JumpTableARMVIXL(switch_instr)); in CreateJumpTable()
732 return jump_tables_.back().get(); in CreateJumpTable()
865 ArenaVector<std::unique_ptr<JumpTableARMVIXL>> jump_tables_; variable
Dcode_generator_arm64.cc884 jump_tables_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), in CodeGeneratorARM64()
915 for (auto&& jump_table : jump_tables_) { in EmitJumpTables()
Dcode_generator_arm_vixl.cc1854 jump_tables_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)), in CodeGeneratorARMVIXL()
1921 for (auto&& jump_table : jump_tables_) { in FixJumpTables()
/art/compiler/utils/mips64/
Dassembler_mips64.cc2972 jump_tables_.emplace_back(std::move(labels)); in CreateJumpTable()
2973 JumpTable* table = &jump_tables_.back(); in CreateJumpTable()
2979 if (!jump_tables_.empty()) { in ReserveJumpTableSpace()
2980 for (JumpTable& table : jump_tables_) { in ReserveJumpTableSpace()
3009 if (!jump_tables_.empty()) { in EmitJumpTables()
3015 for (JumpTable& table : jump_tables_) { in EmitJumpTables()
Dassembler_mips64.h428 jump_tables_(allocator->Adapter(kArenaAllocAssembler)), in Assembler()
1721 ArenaDeque<JumpTable> jump_tables_; variable
/art/compiler/utils/mips/
Dassembler_mips.cc3821 jump_tables_.emplace_back(std::move(labels)); in CreateJumpTable()
3822 JumpTable* table = &jump_tables_.back(); in CreateJumpTable()
3844 if (!jump_tables_.empty()) { in ReserveJumpTableSpace()
3845 for (JumpTable& table : jump_tables_) { in ReserveJumpTableSpace()
3874 if (!jump_tables_.empty()) { in EmitJumpTables()
3880 for (JumpTable& table : jump_tables_) { in EmitJumpTables()
Dassembler_mips.h279 jump_tables_(allocator->Adapter(kArenaAllocAssembler)), in Assembler()
1804 ArenaDeque<JumpTable> jump_tables_; variable