Lines Matching refs:switch_instr

8550 void LocationsBuilderX86::VisitPackedSwitch(HPackedSwitch* switch_instr) {  in VisitPackedSwitch()  argument
8552 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall); in VisitPackedSwitch()
8604 void InstructionCodeGeneratorX86::VisitPackedSwitch(HPackedSwitch* switch_instr) { in VisitPackedSwitch() argument
8605 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch()
8606 uint32_t num_entries = switch_instr->GetNumEntries(); in VisitPackedSwitch()
8607 LocationSummary* locations = switch_instr->GetLocations(); in VisitPackedSwitch()
8613 switch_instr->GetBlock(), in VisitPackedSwitch()
8614 switch_instr->GetDefaultBlock()); in VisitPackedSwitch()
8617 void LocationsBuilderX86::VisitX86PackedSwitch(HX86PackedSwitch* switch_instr) { in VisitX86PackedSwitch() argument
8619 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall); in VisitX86PackedSwitch()
8629 void InstructionCodeGeneratorX86::VisitX86PackedSwitch(HX86PackedSwitch* switch_instr) { in VisitX86PackedSwitch() argument
8630 int32_t lower_bound = switch_instr->GetStartValue(); in VisitX86PackedSwitch()
8631 uint32_t num_entries = switch_instr->GetNumEntries(); in VisitX86PackedSwitch()
8632 LocationSummary* locations = switch_instr->GetLocations(); in VisitX86PackedSwitch()
8634 HBasicBlock* default_block = switch_instr->GetDefaultBlock(); in VisitX86PackedSwitch()
8640 switch_instr->GetBlock(), in VisitX86PackedSwitch()
8662 __ movl(temp_reg, codegen_->LiteralCaseTable(switch_instr, constant_area, value_reg)); in VisitX86PackedSwitch()
8799 JumpTableRIPFixup(CodeGeneratorX86& codegen, HX86PackedSwitch* switch_instr) in JumpTableRIPFixup() argument
8800 : RIPFixup(codegen, switch_instr->GetBaseMethodAddress(), static_cast<size_t>(-1)), in JumpTableRIPFixup()
8801 switch_instr_(switch_instr) {} in JumpTableRIPFixup()
8928 Address CodeGeneratorX86::LiteralCaseTable(HX86PackedSwitch* switch_instr, in LiteralCaseTable() argument
8933 new (GetGraph()->GetAllocator()) JumpTableRIPFixup(*this, switch_instr); in LiteralCaseTable()