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.cpp2090 const uint64_t KeyC = MI.getOperand(2).getImm(); in LowerLOADauthptrstatic() local
2091 assert(KeyC <= AArch64PACKey::LAST && in LowerLOADauthptrstatic()
2093 const auto Key = (AArch64PACKey::ID)KeyC; in LowerLOADauthptrstatic()
2154 const uint64_t KeyC = MI.getOperand(1).getImm(); in LowerMOVaddrPAC() local
2155 assert(KeyC <= AArch64PACKey::LAST && in LowerMOVaddrPAC()
2157 const auto Key = (AArch64PACKey::ID)KeyC; in LowerMOVaddrPAC()
H A DAArch64ISelLowering.cpp9689 SDValue TGA, SDLoc DL, EVT VT, AArch64PACKey::ID KeyC, in LowerPtrAuthGlobalAddressStatically() argument
9705 SDValue Key = DAG.getTargetConstant(KeyC, DL, MVT::i32); in LowerPtrAuthGlobalAddressStatically()
9715 uint64_t KeyC = Op.getConstantOperandVal(1); in LowerPtrAuthGlobalAddress() local
9721 if (KeyC > AArch64PACKey::LAST) in LowerPtrAuthGlobalAddress()
9756 SDValue Key = DAG.getTargetConstant(KeyC, DL, MVT::i32); in LowerPtrAuthGlobalAddress()
9781 TPtr, DL, VT, (AArch64PACKey::ID)KeyC, Discriminator, AddrDiscriminator, in LowerPtrAuthGlobalAddress()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp4141 auto *KeyC = dyn_cast<ConstantInt>(Key); in parseValID() local
4142 if (!KeyC || KeyC->getBitWidth() != 32) in parseValID()
4164 ID.ConstantVal = ConstantPtrAuth::get(Ptr, KeyC, DiscC, AddrDisc); in parseValID()