Searched defs:orig_sreg (Results 1 - 2 of 2) sorted by relevance

/art/compiler/dex/
H A Dvreg_analysis.cc341 table[i].orig_sreg, storage_name[table[i].location],
355 table[i].orig_sreg, storage_name[table[i].location],
460 int orig_sreg = reg_location_[i].s_reg_low; local
461 reg_location_[i].orig_sreg = orig_sreg;
462 reg_location_[i].s_reg_low = SRegToVReg(orig_sreg);
H A Dmir_graph.h299 * FIXME: The orig_sreg field was added as a workaround for llvm bitcode generation. With
315 int32_t orig_sreg; // TODO: remove after Bitcode gen complete member in struct:art::RegLocation
452 return (IsConst(loc.orig_sreg));
457 return constant_values_[loc.orig_sreg];
467 return (static_cast<int64_t>(constant_values_[loc.orig_sreg + 1]) << 32) |
468 Low32Bits(static_cast<int64_t>(constant_values_[loc.orig_sreg]));

Completed in 61 milliseconds