Searched refs:true_loc (Results 1 – 1 of 1) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator_x86.cc | 2098 Location true_loc = locations->InAt(1); in VisitSelect() local 2103 if (true_loc.IsRegisterPair()) { in VisitSelect() 2104 __ cmovl(cond, false_high, true_loc.AsRegisterPairHigh<Register>()); in VisitSelect() 2105 __ cmovl(cond, false_low, true_loc.AsRegisterPairLow<Register>()); in VisitSelect() 2107 __ cmovl(cond, false_high, Address(ESP, true_loc.GetHighStackIndex(kX86WordSize))); in VisitSelect() 2108 __ cmovl(cond, false_low, Address(ESP, true_loc.GetStackIndex())); in VisitSelect() 2113 if (true_loc.IsRegister()) { in VisitSelect() 2114 __ cmovl(cond, false_reg, true_loc.AsRegister<Register>()); in VisitSelect() 2116 __ cmovl(cond, false_reg, Address(ESP, true_loc.GetStackIndex())); in VisitSelect()
|