Home | History | Annotate | Download | only in dex

Lines Matching full:loc

451   bool IsConst(RegLocation loc) const {
452 return (IsConst(loc.orig_sreg));
455 int32_t ConstantValue(RegLocation loc) const {
456 DCHECK(IsConst(loc));
457 return constant_values_[loc.orig_sreg];
465 int64_t ConstantValueWide(RegLocation loc) const {
466 DCHECK(IsConst(loc));
467 return (static_cast<int64_t>(constant_values_[loc.orig_sreg + 1]) << 32) |
468 Low32Bits(static_cast<int64_t>(constant_values_[loc.orig_sreg]));
471 bool IsConstantNullRef(RegLocation loc) const {
472 return loc.ref && loc.is_const && (ConstantValue(loc) == 0);