Searched refs:APV (Results 1 – 5 of 5) sorted by relevance
198 static bool classof(const ARMConstantPoolValue *APV) { in classof() argument199 return APV->isGlobalValue() || APV->isBlockAddress() || APV->isLSDA() || in classof()200 APV->isPromotedGlobal(); in classof()
136 static bool classof(const CSKYConstantPoolValue *APV) { in classof() argument137 return APV->isGlobalValue() || APV->isBlockAddress() || APV->isConstPool(); in classof()
3137 using APV = AllocaPackedValues; in writeInstruction() typedef3140 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()
5897 using APV = AllocaPackedValues; in parseFunctionBody() typedef5899 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()
12479 APValue APV{Result}; in VisitBuiltinCallExpr() local12480 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV)) in VisitBuiltinCallExpr()