Lines Matching refs:reg_hi
76 DexRegisterLocation reg_hi; // Most significant bits of 64-bit value. member
143 DexRegisterLocation reg_hi = DexRegisterLocation::None(); in GetVariableLocations() local
150 reg_hi = dex_register_map[vreg + 1]; in GetVariableLocations()
156 variable_locations.back().reg_hi == reg_hi && in GetVariableLocations()
161 variable_locations.push_back({low_pc, high_pc, reg_lo, reg_hi}); in GetVariableLocations()
208 DexRegisterLocation reg_hi = variable_location.reg_hi; in WriteDebugLocEntry() local
210 DexRegisterLocation reg_loc = (piece == 0 ? reg_lo : reg_hi); in WriteDebugLocEntry()
216 if (piece == 0 && reg_hi.GetKind() == Kind::kInStack && in WriteDebugLocEntry()
217 reg_hi.GetValue() == value + 4) { in WriteDebugLocEntry()
222 if (piece == 0 && reg_hi.GetKind() == Kind::kInRegisterHigh && in WriteDebugLocEntry()
223 reg_hi.GetValue() == value) { in WriteDebugLocEntry()
228 piece == 0 && reg_hi.GetKind() == Kind::kInFpuRegister && in WriteDebugLocEntry()
229 reg_hi.GetValue() == value + 1 && value % 2 == 0) { in WriteDebugLocEntry()
235 if (piece == 0 && reg_hi.GetKind() == Kind::kInFpuRegisterHigh && in WriteDebugLocEntry()
236 reg_hi.GetValue() == reg_lo.GetValue()) { in WriteDebugLocEntry()