Searched refs:APV (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMConstantPoolValue.h | 198 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 D | CSKYConstantPoolValue.h | 136 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 D | EvalEmitter.cpp | 218 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 D | Interp.h | 1335 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 D | XtensaConstantPoolValue.h | 147 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 D | SDPatternMatch.h | 756 explicit SpecificInt_match(APInt APV) : IntVal(std::move(APV)) {}
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 3275 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 D | BitcodeReader.cpp | 6118 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 D | ExprConstant.cpp | 13044 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()
|