Lines Matching refs:value_reg
8839 void InstructionCodeGeneratorX86::GenPackedSwitchWithCompares(Register value_reg, in GenPackedSwitchWithCompares() argument
8853 __ cmpl(value_reg, Immediate(lower_bound)); in GenPackedSwitchWithCompares()
8867 __ cmpl(value_reg, Immediate(compare_to_value)); in GenPackedSwitchWithCompares()
8877 __ cmpl(value_reg, Immediate(lower_bound + index)); in GenPackedSwitchWithCompares()
8891 Register value_reg = locations->InAt(0).AsRegister<Register>(); in VisitPackedSwitch() local
8893 GenPackedSwitchWithCompares(value_reg, in VisitPackedSwitch()
8916 Register value_reg = locations->InAt(0).AsRegister<Register>(); in VisitX86PackedSwitch() local
8920 GenPackedSwitchWithCompares(value_reg, in VisitX86PackedSwitch()
8934 __ leal(temp_reg, Address(value_reg, -lower_bound)); in VisitX86PackedSwitch()
8935 value_reg = temp_reg; in VisitX86PackedSwitch()
8940 __ cmpl(value_reg, Immediate(num_entries - 1)); in VisitX86PackedSwitch()
8945 __ movl(temp_reg, codegen_->LiteralCaseTable(switch_instr, constant_area, value_reg)); in VisitX86PackedSwitch()