Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3137 using APV = AllocaPackedValues; in writeInstruction() typedef
3140 Bitfield::set<APV::AlignLower>( in writeInstruction()
3141 Record, EncodedAlign & ((1 << APV::AlignLower::Bits) - 1)); in writeInstruction()
3142 Bitfield::set<APV::AlignUpper>(Record, in writeInstruction()
3143 EncodedAlign >> APV::AlignLower::Bits); in writeInstruction()
3144 Bitfield::set<APV::UsedWithInAlloca>(Record, AI.isUsedWithInAlloca()); in writeInstruction()
3145 Bitfield::set<APV::ExplicitType>(Record, true); in writeInstruction()
3146 Bitfield::set<APV::SwiftError>(Record, AI.isSwiftError()); in writeInstruction()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5897 using APV = AllocaPackedValues; in parseFunctionBody() typedef
5899 const bool InAlloca = Bitfield::get<APV::UsedWithInAlloca>(Rec); in parseFunctionBody()
5900 const bool SwiftError = Bitfield::get<APV::SwiftError>(Rec); in parseFunctionBody()
5903 if (!Bitfield::get<APV::ExplicitType>(Rec)) { in parseFunctionBody()
5914 Bitfield::get<APV::AlignLower>(Rec) | in parseFunctionBody()
5915 (Bitfield::get<APV::AlignUpper>(Rec) << APV::AlignLower::Bits); in parseFunctionBody()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExprConstant.cpp12479 APValue APV{Result}; in VisitBuiltinCallExpr() local
12480 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV)) in VisitBuiltinCallExpr()