Home
last modified time | relevance | path

Searched refs:getAPSIntVal (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/AsmParser/
DLLLexer.h59 const APSInt &getAPSIntVal() const { return APSIntVal; } in getAPSIntVal() function
DLLParser.cpp1130 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseUInt32()
1132 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1); in ParseUInt32()
1143 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseUInt64()
1145 Val = Lex.getAPSIntVal().getLimitedValue(); in ParseUInt64()
2062 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() || in ParseArrayVectorType()
2063 Lex.getAPSIntVal().getBitWidth() > 64) in ParseArrayVectorType()
2067 uint64_t Size = Lex.getAPSIntVal().getZExtValue(); in ParseArrayVectorType()
2363 ID.APSIntVal = Lex.getAPSIntVal(); in ParseValID()
3078 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in ParseMDField()
3081 auto &U = Lex.getAPSIntVal(); in ParseMDField()
[all …]