Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator_x86.cc1932 Location true_loc = locations->InAt(1); in VisitSelect() local
1937 if (true_loc.IsRegisterPair()) { in VisitSelect()
1938 __ cmovl(cond, false_high, true_loc.AsRegisterPairHigh<Register>()); in VisitSelect()
1939 __ cmovl(cond, false_low, true_loc.AsRegisterPairLow<Register>()); in VisitSelect()
1941 __ cmovl(cond, false_high, Address(ESP, true_loc.GetHighStackIndex(kX86WordSize))); in VisitSelect()
1942 __ cmovl(cond, false_low, Address(ESP, true_loc.GetStackIndex())); in VisitSelect()
1947 if (true_loc.IsRegister()) { in VisitSelect()
1948 __ cmovl(cond, false_reg, true_loc.AsRegister<Register>()); in VisitSelect()
1950 __ cmovl(cond, false_reg, Address(ESP, true_loc.GetStackIndex())); in VisitSelect()