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/ByteCode/
H A DEvalEmitter.cpp245 if (std::optional<APValue> APV = in emitRetValue() local
247 EvalResult.setValue(*APV); in emitRetValue()
318 if (std::optional<APValue> APV = in updateGlobalTemporaries() local
320 *Cached = *APV; in updateGlobalTemporaries()
H A DInterp.h1552 APValue APV = Value.toAPValue(S.getASTContext()); in InitGlobalTemp() local
1554 *Cached = APV; in InitGlobalTemp()
1578 if (std::optional<APValue> APV = in InitGlobalTempComp() local
1580 *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/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3438 using APV = AllocaPackedValues; in writeInstruction() typedef
3441 Bitfield::set<APV::AlignLower>( in writeInstruction()
3442 Record, EncodedAlign & ((1 << APV::AlignLower::Bits) - 1)); in writeInstruction()
3443 Bitfield::set<APV::AlignUpper>(Record, in writeInstruction()
3444 EncodedAlign >> APV::AlignLower::Bits); in writeInstruction()
3445 Bitfield::set<APV::UsedWithInAlloca>(Record, AI.isUsedWithInAlloca()); in writeInstruction()
3446 Bitfield::set<APV::ExplicitType>(Record, true); in writeInstruction()
3447 Bitfield::set<APV::SwiftError>(Record, AI.isSwiftError()); in writeInstruction()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSDPatternMatch.h1098 explicit SpecificInt_match(APInt APV) : IntVal(std::move(APV)) {}
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp6214 using APV = AllocaPackedValues; in parseFunctionBody() typedef
6216 const bool InAlloca = Bitfield::get<APV::UsedWithInAlloca>(Rec); in parseFunctionBody()
6217 const bool SwiftError = Bitfield::get<APV::SwiftError>(Rec); in parseFunctionBody()
6220 if (!Bitfield::get<APV::ExplicitType>(Rec)) { in parseFunctionBody()
6231 Bitfield::get<APV::AlignLower>(Rec) | in parseFunctionBody()
6232 (Bitfield::get<APV::AlignUpper>(Rec) << APV::AlignLower::Bits); in parseFunctionBody()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp13692 APValue APV{CarryOut}; in VisitBuiltinCallExpr() local
13693 if (!handleAssignment(Info, E, CarryOutLValue, ResultType, APV)) in VisitBuiltinCallExpr()
13809 APValue APV{Result}; in VisitBuiltinCallExpr() local
13810 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV)) in VisitBuiltinCallExpr()
13898 APValue APV{APSInt(Result, /*isUnsigned=*/true)}; in VisitBuiltinCallExpr() local
13899 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV)) in VisitBuiltinCallExpr()
16811 APValue APV = CE->getAPValueResult(); in FastEvaluateAsRValue() local
16812 if (!APV.isLValue()) { in FastEvaluateAsRValue()
16813 Result.Val = std::move(APV); in FastEvaluateAsRValue()