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

/art/runtime/verifier/
H A Dreg_type.cc49 int32_t RegType::ConstantValue() const { function in class:art::verifier::RegType
51 LOG(FATAL) << "Unexpected call to ConstantValue: " << *this;
86 uint32_t val = ConstantValue();
464 uint32_t val = ConstantValue();
551 return cache->FromCat2ConstHi(ConstantValue(), false);
792 int32_t val1 = ConstantValue();
793 int32_t val2 = incoming_type.ConstantValue();
H A Dreg_type.h126 return IsConstant() && (ConstantValue() >= 0) && (ConstantValue() <= 1);
172 virtual int32_t ConstantValue() const;
580 int32_t ConstantValue() const { function in class:art::verifier::ConstantType
588 return IsPreciseConstant() && ConstantValue() == 0;
591 return IsPreciseConstant() && ConstantValue() == 1;
595 return IsConstant() && ConstantValue() >= 0 &&
596 ConstantValue() <= std::numeric_limits<jchar>::max();
600 ConstantValue() >= std::numeric_limits<jbyte>::min() &&
601 ConstantValue() <
[all...]
/art/compiler/dex/
H A Dmir_graph.h717 int32_t ConstantValue(RegLocation loc) const { function in class:art::MIRGraph
722 int32_t ConstantValue(int32_t s_reg) const { function in class:art::MIRGraph
736 return loc.ref && loc.is_const && (ConstantValue(loc) == 0);

Completed in 109 milliseconds