reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/CodeGen/SelectionDAGNodes.h
 1586   const ConstantInt *getConstantIntValue() const { return Value; }
 1587   const APInt &getAPIntValue() const { return Value->getValue(); }
 1588   uint64_t getZExtValue() const { return Value->getZExtValue(); }
 1589   int64_t getSExtValue() const { return Value->getSExtValue(); }
 1591     return Value->getLimitedValue(Limit);
 1594   bool isOne() const { return Value->isOne(); }
 1595   bool isNullValue() const { return Value->isZero(); }
 1596   bool isAllOnesValue() const { return Value->isMinusOne(); }