Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator_mips64.cc719 void CodeGeneratorMIPS64::SwapLocations(Location loc1, in SwapLocations() argument
722 DCHECK(!loc1.IsConstant()); in SwapLocations()
725 if (loc1.Equals(loc2)) { in SwapLocations()
729 bool is_slot1 = loc1.IsStackSlot() || loc1.IsDoubleStackSlot(); in SwapLocations()
731 bool is_fp_reg1 = loc1.IsFpuRegister(); in SwapLocations()
734 if (loc2.IsRegister() && loc1.IsRegister()) { in SwapLocations()
736 GpuRegister r1 = loc1.AsRegister<GpuRegister>(); in SwapLocations()
743 FpuRegister r1 = loc1.AsFpuRegister<FpuRegister>(); in SwapLocations()
753 Location reg_loc = is_slot1 ? loc2 : loc1; in SwapLocations()
754 Location mem_loc = is_slot1 ? loc1 : loc2; in SwapLocations()
[all …]
Dcode_generator_mips64.h270 void SwapLocations(Location loc1, Location loc2, Primitive::Type type);