Home
last modified time | relevance | path

Searched refs:APV (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.h198 static bool classof(const ARMConstantPoolValue *APV) { in classof() argument
199 return APV->isGlobalValue() || APV->isBlockAddress() || APV->isLSDA() || in classof()
200 APV->isPromotedGlobal(); in classof()
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYConstantPoolValue.h136 static bool classof(const CSKYConstantPoolValue *APV) { in classof() argument
137 return APV->isGlobalValue() || APV->isBlockAddress() || APV->isConstPool(); in classof()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DEvalEmitter.cpp139 if (std::optional<APValue> APV = Ptr.toRValue(S.getCtx())) { in emitRetValue() local
140 EvalResult.setValue(*APV); in emitRetValue()
H A DInterp.h1044 APValue APV = Value.toAPValue(); in InitGlobalTemp() local
1046 *Cached = APV; in InitGlobalTemp()
1061 if (std::optional<APValue> APV = P.toRValue(S.getCtx())) { in InitGlobalTempComp() local
1062 *Cached = *APV; in InitGlobalTempComp()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3186 using APV = AllocaPackedValues; in writeInstruction() typedef
3189 Bitfield::set<APV::AlignLower>( in writeInstruction()
3190 Record, EncodedAlign & ((1 << APV::AlignLower::Bits) - 1)); in writeInstruction()
3191 Bitfield::set<APV::AlignUpper>(Record, in writeInstruction()
3192 EncodedAlign >> APV::AlignLower::Bits); in writeInstruction()
3193 Bitfield::set<APV::UsedWithInAlloca>(Record, AI.isUsedWithInAlloca()); in writeInstruction()
3194 Bitfield::set<APV::ExplicitType>(Record, true); in writeInstruction()
3195 Bitfield::set<APV::SwiftError>(Record, AI.isSwiftError()); in writeInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5941 using APV = AllocaPackedValues; in parseFunctionBody() typedef
5943 const bool InAlloca = Bitfield::get<APV::UsedWithInAlloca>(Rec); in parseFunctionBody()
5944 const bool SwiftError = Bitfield::get<APV::SwiftError>(Rec); in parseFunctionBody()
5947 if (!Bitfield::get<APV::ExplicitType>(Rec)) { in parseFunctionBody()
5958 Bitfield::get<APV::AlignLower>(Rec) | in parseFunctionBody()
5959 (Bitfield::get<APV::AlignUpper>(Rec) << APV::AlignLower::Bits); in parseFunctionBody()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp12798 APValue APV{Result}; in VisitBuiltinCallExpr() local
12799 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV)) in VisitBuiltinCallExpr()