Home
last modified time | relevance | path

Searched refs:APV (Results 1 – 9 of 9) 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.cpp218 if (std::optional<APValue> APV = in emitRetValue() local
220 EvalResult.setValue(*APV); in emitRetValue()
291 if (std::optional<APValue> APV = in updateGlobalTemporaries() local
293 *Cached = *APV; in updateGlobalTemporaries()
H A DInterp.h1335 APValue APV = Value.toAPValue(S.getCtx()); in InitGlobalTemp() local
1337 *Cached = APV; in InitGlobalTemp()
1361 if (std::optional<APValue> APV = in InitGlobalTempComp() local
1363 *Cached = *APV; in InitGlobalTempComp()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaConstantPoolValue.h147 static bool classof(const XtensaConstantPoolValue *APV) { in classof() argument
148 return APV->isBlockAddress(); in classof()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSDPatternMatch.h756 explicit SpecificInt_match(APInt APV) : IntVal(std::move(APV)) {}
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3275 using APV = AllocaPackedValues; in writeInstruction() typedef
3278 Bitfield::set<APV::AlignLower>( in writeInstruction()
3279 Record, EncodedAlign & ((1 << APV::AlignLower::Bits) - 1)); in writeInstruction()
3280 Bitfield::set<APV::AlignUpper>(Record, in writeInstruction()
3281 EncodedAlign >> APV::AlignLower::Bits); in writeInstruction()
3282 Bitfield::set<APV::UsedWithInAlloca>(Record, AI.isUsedWithInAlloca()); in writeInstruction()
3283 Bitfield::set<APV::ExplicitType>(Record, true); in writeInstruction()
3284 Bitfield::set<APV::SwiftError>(Record, AI.isSwiftError()); in writeInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp6118 using APV = AllocaPackedValues; in parseFunctionBody() typedef
6120 const bool InAlloca = Bitfield::get<APV::UsedWithInAlloca>(Rec); in parseFunctionBody()
6121 const bool SwiftError = Bitfield::get<APV::SwiftError>(Rec); in parseFunctionBody()
6124 if (!Bitfield::get<APV::ExplicitType>(Rec)) { in parseFunctionBody()
6135 Bitfield::get<APV::AlignLower>(Rec) | in parseFunctionBody()
6136 (Bitfield::get<APV::AlignUpper>(Rec) << APV::AlignLower::Bits); in parseFunctionBody()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp13044 APValue APV{CarryOut}; in VisitBuiltinCallExpr() local
13045 if (!handleAssignment(Info, E, CarryOutLValue, ResultType, APV)) in VisitBuiltinCallExpr()
13161 APValue APV{Result}; in VisitBuiltinCallExpr() local
13162 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV)) in VisitBuiltinCallExpr()
15899 APValue APV = CE->getAPValueResult(); in FastEvaluateAsRValue() local
15900 if (!APV.isLValue()) { in FastEvaluateAsRValue()
15901 Result.Val = std::move(APV); in FastEvaluateAsRValue()