Home
last modified time | relevance | path

Searched refs:APVal (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3742 if (APVal.isAbsent() && isValidStructGUID(getASTContext(), getType())) { in getAsAPValue()
3745 APVal = APValue(APValue::UninitStruct(), 0, 4); in getAsAPValue()
3746 APVal.getStructField(0) = APValue(APSInt(APInt(32, PartVal.Part1), true)); in getAsAPValue()
3747 APVal.getStructField(1) = APValue(APSInt(APInt(16, PartVal.Part2), true)); in getAsAPValue()
3748 APVal.getStructField(2) = APValue(APSInt(APInt(16, PartVal.Part3), true)); in getAsAPValue()
3749 APValue &Arr = APVal.getStructField(3) = in getAsAPValue()
3757 getASTContext().addDestruction(&APVal); in getAsAPValue()
3760 return APVal; in getAsAPValue()
H A DASTContext.cpp13427 const APValue &APVal) const { in getUnnamedGlobalConstantDecl()
13429 UnnamedGlobalConstantDecl::Profile(ID, Ty, APVal); in getUnnamedGlobalConstantDecl()
13437 UnnamedGlobalConstantDecl::Create(*this, Ty, APVal); in getUnnamedGlobalConstantDecl()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp1435 llvm::APInt APVal(64, 0); in parseSimpleIntegerLiteral() local
1436 if (Literal.GetIntegerValue(APVal)) in parseSimpleIntegerLiteral()
1439 Value = APVal.getLimitedValue(); in parseSimpleIntegerLiteral()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h4399 mutable APValue APVal; variable
4457 const APValue &APVal);
4475 const APValue &APVal) { in Profile() argument
4477 APVal.Profile(ID); in Profile()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaISelLowering.cpp944 APInt APVal = CN->getAPIntValue(); in LowerImmediate() local
945 int64_t Value = APVal.getSExtValue(); in LowerImmediate()