Home
last modified time | relevance | path

Searched refs:IsIndirectCall (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsNaClELFStreamer.cpp73 bool isCall(const MCInst &MI, bool *IsIndirectCall) { in isCall() argument
76 *IsIndirectCall = false; in isCall()
96 *IsIndirectCall = true; in isCall()
178 bool IsIndirectCall; in emitInstruction() local
179 if (isCall(Inst, &IsIndirectCall)) { in emitInstruction()
185 if (IsIndirectCall) { in emitInstruction()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/IPO/
H A DIROutliner.h380 bool IsIndirectCall = CI.isIndirectCall(); in visitCallInst() local
381 if (IsIndirectCall && !EnableIndirectCalls) in visitCallInst()
383 if (!F && !IsIndirectCall) in visitCallInst()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DIRSimilarityIdentifier.h558 bool IsIndirectCall = CI.isIndirectCall(); in visitCallInst() local
559 if (IsIndirectCall && !EnableIndirectCalls) in visitCallInst()
561 if (!F && !IsIndirectCall) in visitCallInst()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DInlineCost.cpp286 virtual void onLoweredCall(Function *F, CallBase &Call, bool IsIndirectCall) { in onLoweredCall() argument
628 bool IsIndirectCall) override { in onLoweredCall() argument
637 if (IsIndirectCall && BoostIndirectCalls) { in onLoweredCall()
1098 bool IsIndirectCall) override { in onLoweredCall() argument
1102 if (IsIndirectCall) { in onLoweredCall()
2129 bool IsIndirectCall = !F; in visitCallBase() local
2130 if (IsIndirectCall) { in visitCallBase()
2195 onLoweredCall(F, Call, IsIndirectCall); in visitCallBase()
2198 if (!(Call.onlyReadsMemory() || (IsIndirectCall && F->onlyReadsMemory()))) in visitCallBase()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1784 auto IsIndirectCall = [](const Instruction *I) { in canSinkInstructions() local
1787 bool HaveIndirectCalls = any_of(Insts, IsIndirectCall); in canSinkInstructions()
1788 bool AllCallsAreIndirect = all_of(Insts, IsIndirectCall); in canSinkInstructions()
2284 auto IsIndirectCall = [](InvokeInst *II) { return II->isIndirectCall(); }; in shouldBelongToSameSet() local
2285 bool HaveIndirectCalls = any_of(Invokes, IsIndirectCall); in shouldBelongToSameSet()
2286 bool AllCallsAreIndirect = all_of(Invokes, IsIndirectCall); in shouldBelongToSameSet()
2443 bool IsIndirectCall = Invokes[0]->isIndirectCall(); in MergeCompatibleInvokesImpl() local
2449 if (!IsIndirectCall) in MergeCompatibleInvokesImpl()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4350 bool IsIndirectCall = (CB && isa<CallInst>(CB) && CB->isIndirectCall()); in LowerCall() local
4846 if (HasNoCfCheck && IsCFProtectionSupported && IsIndirectCall) { in LowerCall()