Home
last modified time | relevance | path

Searched refs:isIndirectCall (Results 1 – 21 of 21) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DAbstractCallSite.h116 return !isCallbackCall() && !CB->isIndirectCall(); in isDirectCall()
120 bool isIndirectCall() const { in isIndirectCall() function
121 return !isCallbackCall() && CB->isIndirectCall(); in isIndirectCall()
H A DInstrTypes.h1398 bool isIndirectCall() const;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/CFGuard/
H A DCFGuard.cpp162 assert(CB->isIndirectCall() && in insertCFGuardCheck()
186 assert(CB->isIndirectCall() && in insertCFGuardDispatch()
265 if (CB && CB->isIndirectCall() && !CB->hasFnAttr("guard_nocf")) { in runOnFunction()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIndirectCallVisitor.h25 if (Call.isIndirectCall()) in visitCallBase()
H A DIRSimilarityIdentifier.h411 if (!F || CI.isIndirectCall() || !F->hasName()) in visitCallInst()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSLSHardening.cpp256 assert(isIndirectCall(IndirectCall) && !IndirectCall.isReturn()); in ConvertIndirectCallToIndirectJump()
351 if (isIndirectCall(MI) && !MI.isReturn()) { in hardenIndirectCalls()
H A DARMBaseInstrInfo.h654 static inline bool isIndirectCall(const MachineInstr &MI) { in isIndirectCall() function
H A DARMBaseInstrInfo.cpp720 if (ST.hardenSlsBlr() && isIndirectCall(MI)) in isPredicable()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DIROutliner.h329 if (!F || CI.isIndirectCall() || !F->hasName()) in visitCallInst()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DCGProfile.cpp83 if (CB->isIndirectCall()) { in runCGProfilePass()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp543 if (!CB->isIndirectCall() && findCalleeFunctionSamples(*CB)) in getInstWeight()
582 if (!CB->isIndirectCall() && findCalleeFunctionSamples(*CB)) in getProbeWeight()
1076 if (I->isIndirectCall()) { in inlineHotFunctions()
1351 if (I->isIndirectCall()) { in inlineHotFunctionsWithPriority()
1502 if (cast<CallBase>(I).isIndirectCall()) in generateMDProfMetadata()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPULDSUtils.cpp77 } else if (RCB->isIndirectCall()) { in collectReachableCallees()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSpeculateAnalyses.cpp32 return Call->isIndirectCall() ? IndirectCall : true; in findBBwithCalls()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.h366 bool isIndirectCall(const MachineInstr &MI) const;
H A DHexagonInstrInfo.cpp2253 return J.isIndirectBranch() || isIndirectCall(J) || isIndirectL4Return(J); in isHVXMemWithAIndirect()
2256 bool HexagonInstrInfo::isIndirectCall(const MachineInstr &MI) const { in isIndirectCall() function in HexagonInstrInfo
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1660 bool isIndirectCall = !Func && CB; in LowerCall() local
1674 if (isIndirectCall) { in LowerCall()
1699 unsigned Opcode = isIndirectCall ? NVPTXISD::PrintCall : NVPTXISD::PrintCallUni; in LowerCall()
1733 DAG.getConstant(isIndirectCall ? 0 : 1, dl, MVT::i32), in LowerCall()
1738 if (isIndirectCall) { in LowerCall()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp289 bool CallBase::isIndirectCall() const { in isIndirectCall() function in CallBase
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1753 return cast<CallBase>(I)->isIndirectCall(); in canSinkInstructions()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp5385 if (CB->isIndirectCall()) in getGuaranteedWellDefinedOps()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp5149 static bool isIndirectCall(const SDValue &Callee, SelectionDAG &DAG, in isIndirectCall() function
5627 isIndirectCall(Callee, DAG, Subtarget, isPatchPoint), in LowerCall()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp3932 bool IsIndirectCall = (CB && isa<CallInst>(CB) && CB->isIndirectCall()); in LowerCall()