Home
last modified time | relevance | path

Searched refs:KeyC (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp2292 const uint64_t KeyC = MI.getOperand(2).getImm(); in LowerLOADauthptrstatic() local
2293 assert(KeyC <= AArch64PACKey::LAST && in LowerLOADauthptrstatic()
2295 const auto Key = (AArch64PACKey::ID)KeyC; in LowerLOADauthptrstatic()
2354 const uint64_t KeyC = MI.getOperand(1).getImm(); in LowerMOVaddrPAC() local
2355 assert(KeyC <= AArch64PACKey::LAST && in LowerMOVaddrPAC()
2357 const auto Key = (AArch64PACKey::ID)KeyC; in LowerMOVaddrPAC()
H A DAArch64ISelLowering.cpp10322 SDValue TGA, SDLoc DL, EVT VT, AArch64PACKey::ID KeyC, in LowerPtrAuthGlobalAddressStatically() argument
10338 SDValue Key = DAG.getTargetConstant(KeyC, DL, MVT::i32); in LowerPtrAuthGlobalAddressStatically()
10348 uint64_t KeyC = Op.getConstantOperandVal(1); in LowerPtrAuthGlobalAddress() local
10354 if (KeyC > AArch64PACKey::LAST) in LowerPtrAuthGlobalAddress()
10389 SDValue Key = DAG.getTargetConstant(KeyC, DL, MVT::i32); in LowerPtrAuthGlobalAddress()
10414 TPtr, DL, VT, (AArch64PACKey::ID)KeyC, Discriminator, AddrDiscriminator, in LowerPtrAuthGlobalAddress()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp4241 auto *KeyC = dyn_cast<ConstantInt>(Key); in parseValID() local
4242 if (!KeyC || KeyC->getBitWidth() != 32) in parseValID()
4264 ID.ConstantVal = ConstantPtrAuth::get(Ptr, KeyC, DiscC, AddrDisc); in parseValID()