Searched refs:CallInst (Results 276 - 300 of 332) sorted by relevance

<<11121314

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1138 return CallInst::Create(getUAddSat(), { X, Y });
1144 return CallInst::Create(getUAddSat(), { X, ConstantInt::get(Ty, *C) });
H A DInstCombinePHI.cpp45 // We do not expect a CallInst here, otherwise, N-way merging of DebugLoc
47 assert(!isa<CallInst>(Inst));
H A DInstCombineCompares.cpp1289 CallInst *Call = Builder.CreateCall(F, {TruncA, TruncB}, "sadd");
3728 CallInst *Call = Builder.CreateCall(F, {X, Y}, "umul");
4403 CallInst *CtPop = Builder.CreateUnaryIntrinsic(Intrinsic::ctpop, A);
4797 CallInst *Call = Builder.CreateCall(F, {MulA, MulB}, "umul");
H A DInstCombineSimplifyDemanded.cpp773 return InsertNewInstWith(CallInst::Create(Ctpop, {X}), *I);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1153 if (auto *CI = dyn_cast<CallInst>(I)) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp986 auto *CI = cast<CallInst>(&*CallI);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp549 if (auto *CI = dyn_cast<CallInst>(&I)) {
H A DNewGVN.cpp729 const CallExpression *createCallExpression(CallInst *,
1272 NewGVN::createCallExpression(CallInst *CI, const MemoryAccess *MA) const {
1595 auto *CI = cast<CallInst>(I);
H A DIndVarSimplify.cpp819 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp645 CallInst *Call = nullptr;
H A DSanitizerCoverage.cpp663 (isa<CallInst>(Inst) && !isa<IntrinsicInst>(Inst)))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1304 const CallInst *CallI = cast<CallInst>(&CB);
1373 if (const auto *CI = dyn_cast<CallInst>(CB)) {
3437 IntrinsicInfo &Info, const CallInst &I,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp728 // the safepoint is encoded in the CallInst. We create a temporary call and
1262 void SelectionDAGBuilder::LowerDeoptimizeCall(const CallInst *CI) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp1253 if (const auto *CI = dyn_cast<CallInst>(&I)) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp967 auto *CI = cast<CallInst>(getUnderlyingInstr());
H A DVPlan.h831 // CallInst may or may not have a result, depending on the called function.
886 VPWidenCallRecipe(CallInst &I, iterator_range<IterT> CallArguments)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1464 auto *C1 = dyn_cast<CallInst>(I1);
1465 auto *C2 = dyn_cast<CallInst>(I2);
1862 // This is an N-way merge, which will be inefficient if I0 is a CallInst.
1863 // However, as N-way merge for CallInst is rare, so we use simplified API
2548 if (CallInst *CI = dyn_cast<CallInst>(&I))
4667 if (isa<CallInst>(BBI) && !isa<DbgInfoIntrinsic>(BBI))
H A DSCCPSolver.cpp310 void visitCallInst(CallInst &I) { visitCallBase(I); }
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1835 auto *Call = dyn_cast<CallInst>(&I);
H A DLazyValueInfo.cpp767 auto *I = cast<CallInst>(AssumeVH);
H A DMemoryDependenceAnalysis.cpp149 if (const CallInst *CI = isFreeCall(Inst, &TLI)) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp911 CallInst *FQ = Builder.CreateUnaryIntrinsic(Intrinsic::trunc, FQM);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp752 const auto *Call = cast<CallInst>(I);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMFastISel.cpp2290 const CallInst *CI = cast<CallInst>(I);
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDecl.cpp1330 llvm::CallInst *C =
1341 llvm::CallInst *C =

Completed in 695 milliseconds

<<11121314