Searched defs:IsConstant (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dlocations.h94 bool IsConstant() const { function in class:art::Location
104 DCHECK(IsConstant());
278 return IsConstant() ? kConstant : KindField::Decode(value_);
H A Dbounds_check_elimination.cc118 bool IsConstant() const { function in class:art::ValueBound
188 return bound1.IsConstant() ? bound1 : bound2;
224 if (IsConstant() || (IsRelatedToArrayLength() && new_constant <= 0)) {
239 if (IsConstant() || IsRelatedToArrayLength()) {
429 bool IsConstantValueRange() { return lower_.IsConstant() && upper_.IsConstant(); }
560 if (!lower.IsConstant() || lower.GetConstant() == INT_MIN) {
575 if (upper_bound.IsConstant()) {
610 if ((!upper.IsConstant() || upper.GetConstant() == INT_MAX) &&
618 if (range->GetLower().IsConstant()) {
[all...]
/art/runtime/verifier/
H A Dreg_type.h77 bool IsConstant() const { function in class:art::verifier::RegType
129 return IsChar() || IsInteger() || IsFloat() || IsConstant() || IsByte() ||
146 return IsInteger() || IsConstant() || IsByte() || IsShort() || IsChar() ||
153 bool IsFloatTypes() const { return IsFloat() || IsConstant(); }
599 return IsConstant() && ConstantValue() >= 0 &&
603 return IsConstant() &&
608 return IsConstant() &&

Completed in 75 milliseconds