Lines Matching refs:switch_instr

8212 void LocationsBuilderX86::VisitPackedSwitch(HPackedSwitch* switch_instr) {  in VisitPackedSwitch()  argument
8214 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall); in VisitPackedSwitch()
8266 void InstructionCodeGeneratorX86::VisitPackedSwitch(HPackedSwitch* switch_instr) { in VisitPackedSwitch() argument
8267 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch()
8268 uint32_t num_entries = switch_instr->GetNumEntries(); in VisitPackedSwitch()
8269 LocationSummary* locations = switch_instr->GetLocations(); in VisitPackedSwitch()
8275 switch_instr->GetBlock(), in VisitPackedSwitch()
8276 switch_instr->GetDefaultBlock()); in VisitPackedSwitch()
8279 void LocationsBuilderX86::VisitX86PackedSwitch(HX86PackedSwitch* switch_instr) { in VisitX86PackedSwitch() argument
8281 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall); in VisitX86PackedSwitch()
8291 void InstructionCodeGeneratorX86::VisitX86PackedSwitch(HX86PackedSwitch* switch_instr) { in VisitX86PackedSwitch() argument
8292 int32_t lower_bound = switch_instr->GetStartValue(); in VisitX86PackedSwitch()
8293 uint32_t num_entries = switch_instr->GetNumEntries(); in VisitX86PackedSwitch()
8294 LocationSummary* locations = switch_instr->GetLocations(); in VisitX86PackedSwitch()
8296 HBasicBlock* default_block = switch_instr->GetDefaultBlock(); in VisitX86PackedSwitch()
8302 switch_instr->GetBlock(), in VisitX86PackedSwitch()
8324 __ movl(temp_reg, codegen_->LiteralCaseTable(switch_instr, constant_area, value_reg)); in VisitX86PackedSwitch()
8461 JumpTableRIPFixup(CodeGeneratorX86& codegen, HX86PackedSwitch* switch_instr) in JumpTableRIPFixup() argument
8462 : RIPFixup(codegen, switch_instr->GetBaseMethodAddress(), static_cast<size_t>(-1)), in JumpTableRIPFixup()
8463 switch_instr_(switch_instr) {} in JumpTableRIPFixup()
8590 Address CodeGeneratorX86::LiteralCaseTable(HX86PackedSwitch* switch_instr, in LiteralCaseTable() argument
8595 new (GetGraph()->GetAllocator()) JumpTableRIPFixup(*this, switch_instr); in LiteralCaseTable()