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

/art/runtime/verifier/
H A Dreg_type.h572 int32_t ConstantValue() const { function in class:art::verifier::ConstantType
592 return IsPreciseConstant() && ConstantValue() == 0;
595 return IsPreciseConstant() && ConstantValue() == 1;
599 return IsConstant() && ConstantValue() >= 0 &&
600 ConstantValue() <= std::numeric_limits<uint16_t>::max();
604 ConstantValue() >= std::numeric_limits<int8_t>::min() &&
605 ConstantValue() <= std::numeric_limits<int8_t>::max();
609 ConstantValue() >= std::numeric_limits<int16_t>::min() &&
610 ConstantValue() <= std::numeric_limits<int16_t>::max();
/art/compiler/dex/
H A Dmir_graph.h791 int32_t ConstantValue(RegLocation loc) const { function in class:art::MIRGraph
796 int32_t ConstantValue(int32_t s_reg) const { function in class:art::MIRGraph
837 return loc.ref && loc.is_const && (ConstantValue(loc) == 0);

Completed in 3668 milliseconds