Home
last modified time | relevance | path

Searched refs:IndirectCalls (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/CFGuard/
H A DCFGuard.cpp272 SmallVector<CallBase *, 8> IndirectCalls; in runOnFunction() local
282 IndirectCalls.push_back(CB); in runOnFunction()
289 if (IndirectCalls.empty()) { in runOnFunction()
295 for (CallBase *CB : IndirectCalls) { in runOnFunction()
299 for (CallBase *CB : IndirectCalls) { in runOnFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIndirectCallVisitor.h26 std::vector<CallBase *> IndirectCalls; member
65 IndirectCalls.push_back(&Call); in visitCallBase()
85 return ICV.IndirectCalls; in findIndirectCalls()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DKernelInfo.cpp59 int64_t IndirectCalls = 0; member in __anondbd746d00111::KernelInfo
199 ++IndirectCalls; in updateForBB()
310 REMARK_PROPERTY(IndirectCalls); in emitKernelInfo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp220 SmallPtrSetImpl<CallBase *> &getIndirectCalls() { return IndirectCalls; } in getIndirectCalls()
226 SmallPtrSet<CallBase *, 32> IndirectCalls; member in __anoncc598d4b0111::CVPLatticeFunc
269 IndirectCalls.insert(&CB); in visitCallBase()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVCallLowering.h38 mutable SmallVector<SPIRVIndirectCall> IndirectCalls; variable
H A DSPIRVCallLowering.cpp47 if (IndirectCalls.size() > 0) { in lowerReturn()
49 IndirectCalls.clear(); in lowerReturn()
523 for (auto const &IC : IndirectCalls) { in produceIndirectPtrTypes()
702 IndirectCalls.push_back(IndirectCall); in lowerCall()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DInstrumentation.h150 bool IndirectCalls = false; member
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Arm64ECCallLowering.cpp918 SmallVector<CallBase *, 8> IndirectCalls; in processFunction() local
979 IndirectCalls.push_back(CB); in processFunction()
984 if (IndirectCalls.empty()) in processFunction()
987 for (CallBase *CB : IndirectCalls) in processFunction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp196 Res.IndirectCalls = true; in getOptions()
206 Options.IndirectCalls |= CLOpts.IndirectCalls; in OverrideFromCL()
699 if (Options.IndirectCalls) { in instrumentFunction()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp239 Opts.IndirectCalls = CGOpts.SanitizeCoverageIndirectCalls; in getSancovOptsFromCGOpts()