Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/Target/CSKY/
H A DCSKYConstantPoolValue.h129 static bool classof(const CSKYConstantPoolValue *APV) { in classof() argument
130 return APV->isGlobalValue() || APV->isBlockAddress(); in classof()
/llvm-project-15.0.7/libcxx/test/libcxx/depr/depr.auto.ptr/auto.ptr/
H A Dauto_ptr.depr_in_cxx11.verify.cpp31 typedef std::auto_ptr<void> APV; // expected-warning {{'auto_ptr<void>' is deprecated}} in main() typedef
/llvm-project-15.0.7/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp2452 using APV = AllocaPackedValues; in writeInstruction() typedef
2455 Bitfield::set<APV::AlignLower>( in writeInstruction()
2456 Record, EncodedAlign & ((1 << APV::AlignLower::Bits) - 1)); in writeInstruction()
2457 Bitfield::set<APV::AlignUpper>(Record, in writeInstruction()
2458 EncodedAlign >> APV::AlignLower::Bits); in writeInstruction()
2459 Bitfield::set<APV::UsedWithInAlloca>(Record, AI.isUsedWithInAlloca()); in writeInstruction()
/llvm-project-15.0.7/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3089 using APV = AllocaPackedValues; in writeInstruction() typedef
3092 Bitfield::set<APV::AlignLower>( in writeInstruction()
3093 Record, EncodedAlign & ((1 << APV::AlignLower::Bits) - 1)); in writeInstruction()
3094 Bitfield::set<APV::AlignUpper>(Record, in writeInstruction()
3095 EncodedAlign >> APV::AlignLower::Bits); in writeInstruction()
3096 Bitfield::set<APV::UsedWithInAlloca>(Record, AI.isUsedWithInAlloca()); in writeInstruction()
3097 Bitfield::set<APV::ExplicitType>(Record, true); in writeInstruction()
3098 Bitfield::set<APV::SwiftError>(Record, AI.isSwiftError()); in writeInstruction()
/llvm-project-15.0.7/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5732 using APV = AllocaPackedValues; in parseFunctionBody() typedef
5734 const bool InAlloca = Bitfield::get<APV::UsedWithInAlloca>(Rec); in parseFunctionBody()
5735 const bool SwiftError = Bitfield::get<APV::SwiftError>(Rec); in parseFunctionBody()
5738 if (!Bitfield::get<APV::ExplicitType>(Rec)) { in parseFunctionBody()
5749 Bitfield::get<APV::AlignLower>(Rec) | in parseFunctionBody()
5750 (Bitfield::get<APV::AlignUpper>(Rec) << APV::AlignLower::Bits); in parseFunctionBody()
/llvm-project-15.0.7/clang/lib/AST/
H A DExprConstant.cpp12391 APValue APV{Result}; in VisitBuiltinCallExpr() local
12392 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV)) in VisitBuiltinCallExpr()