Lines Matching refs:location
80 Location LowOf(Location location) { in LowOf() argument
81 if (location.IsRegisterPair()) { in LowOf()
82 return Location::RegisterLocation(location.low()); in LowOf()
83 } else if (location.IsFpuRegisterPair()) { in LowOf()
84 return Location::FpuRegisterLocation(location.low()); in LowOf()
85 } else if (location.IsDoubleStackSlot()) { in LowOf()
86 return Location::StackSlot(location.GetStackIndex()); in LowOf()
92 Location HighOf(Location location) { in HighOf() argument
93 if (location.IsRegisterPair()) { in HighOf()
94 return Location::RegisterLocation(location.high()); in HighOf()
95 } else if (location.IsFpuRegisterPair()) { in HighOf()
96 return Location::FpuRegisterLocation(location.high()); in HighOf()
97 } else if (location.IsDoubleStackSlot()) { in HighOf()
98 return Location::StackSlot(location.GetHighStackIndex(4)); in HighOf()