Home
last modified time | relevance | path

Searched refs:getCalledOperand (Results 1 – 25 of 76) sorted by relevance

1234

/external/llvm-project/llvm/include/llvm/IR/
DAbstractCallSite.h210 Value *getCalledOperand() const { in getCalledOperand() function
212 return CB->getCalledOperand(); in getCalledOperand()
219 Value *V = getCalledOperand(); in getCalledFunction()
/external/llvm-project/llvm/lib/Transforms/Utils/
DCallPromotionUtils.cpp295 if (CB.getCalledOperand()->getType() != Callee->getType()) in versionCallSite()
296 Callee = Builder.CreateBitCast(Callee, CB.getCalledOperand()->getType()); in versionCallSite()
297 auto *Cond = Builder.CreateICmpEQ(CB.getCalledOperand(), Callee); in versionCallSite()
544 Value *Callee = CB.getCalledOperand(); in tryPromoteCall()
DLowerInvoke.cpp56 CallInst::Create(II->getFunctionType(), II->getCalledOperand(), in runImpl()
DEvaluator.cpp269 auto *V = CB.getCalledOperand(); in getCalleeWithFormalArgs()
575 InstResult = castCallResultIfNeeded(CB.getCalledOperand(), C); in EvaluateBlock()
598 InstResult = castCallResultIfNeeded(CB.getCalledOperand(), RetVal); in EvaluateBlock()
/external/llvm-project/llvm/lib/Transforms/CFGuard/
DCFGuard.cpp166 Value *CalledOperand = CB->getCalledOperand(); in insertCFGuardCheck()
190 Value *CalledOperand = CB->getCalledOperand(); in insertCFGuardDispatch()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/CFGuard/
DCFGuard.cpp166 Value *CalledOperand = CB->getCalledOperand(); in insertCFGuardCheck()
190 Value *CalledOperand = CB->getCalledOperand(); in insertCFGuardDispatch()
/external/llvm-project/llvm/tools/llvm-diff/
DDifferenceEngine.cpp227 if (!equivalentAsOperands(L.getCalledOperand(), R.getCalledOperand())) { in diffCallSites()
641 if (!equivalentAsOperands(LCall->getCalledOperand(), in runBlockDiff()
642 RInvoke->getCalledOperand())) in runBlockDiff()
655 if (!equivalentAsOperands(LInvoke->getCalledOperand(), in runBlockDiff()
656 RCall->getCalledOperand())) in runBlockDiff()
DDiffConsumer.cpp58 printValue(CI->getCalledOperand(), isL); in printValue()
61 printValue(II->getCalledOperand(), isL); in printValue()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUFixFunctionBitcasts.cpp39 dyn_cast<Function>(CB.getCalledOperand()->stripPointerCasts()); in visitCallBase()
DAMDGPUAnnotateKernelFeatures.cpp297 dyn_cast<Function>(CB->getCalledOperand()->stripPointerCasts()); in addFeatureAttributes()
/external/llvm-project/llvm/lib/Target/BPF/
DBPFCheckAndAdjustIR.cpp110 auto *GV = dyn_cast<GlobalValue>(Call->getCalledOperand()); in removePassThroughBuiltin()
DBPFPreserveDIType.cpp54 const auto *GV = dyn_cast<GlobalValue>(Call->getCalledOperand()); in BPFPreserveDITypeImpl()
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyFixFunctionBitcasts.cpp79 Value *Callee = CB->getCalledOperand(); in findUses()
310 cast<Function>(CallMain->getCalledOperand()->stripPointerCasts()); in runOnModule()
DWebAssemblyLowerEmscriptenEHSjLj.cpp420 Args.push_back(CI->getCalledOperand()); in wrapInvoke()
801 bool NeedInvoke = AllowExceptions && canThrow(II->getCalledOperand()); in runEHOnFunction()
816 IRB.CreateCall(II->getFunctionType(), II->getCalledOperand(), Args); in runEHOnFunction()
1042 const Value *Callee = CI->getCalledOperand(); in runSjLjOnFunction()
/external/llvm-project/llvm/lib/CodeGen/
DWasmEHPrepare.cpp360 if (CI->getCalledOperand() == GetExnF) in prepareEHPad()
362 if (CI->getCalledOperand() == GetSelectorF) in prepareEHPad()
DPreISelIntrinsicLowering.cpp42 if (!CI || CI->getCalledOperand() != &F) in lowerLoadRelative()
/external/llvm-project/llvm/test/LTO/X86/
Dtype-mapping-bug3.ll28 ; The call with the getCalledOperand() vs getCalledFunction() mismatch.
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DValueProfilePlugins.inc84 Value *Callee = cast<CallBase>(I)->getCalledOperand();
/external/llvm-project/llvm/lib/Transforms/IPO/
DPruneEH.cpp132 if (const auto *IA = dyn_cast<InlineAsm>(CB->getCalledOperand())) in runImpl()
DCalledValuePropagation.cpp388 auto RegI = CVPLatticeKey(C->getCalledOperand(), IPOGrouping::Register); in runCVP()
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/
DInlineAsmLowering.cpp53 const InlineAsm *IA = cast<InlineAsm>(CB.getCalledOperand()); in ExtraFlags()
277 const InlineAsm *IA = cast<InlineAsm>(Call.getCalledOperand()); in lowerInlineAsm()
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/
DSpeculateAnalyses.cpp57 auto CalledValue = Call->getCalledOperand()->stripPointerCasts(); in findCalles()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DSpeculateAnalyses.cpp57 auto CalledValue = Call->getCalledOperand()->stripPointerCasts(); in findCalles()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstrTypes.h1294 Value *getCalledOperand() const { return Op<CalledOperandOpEndIdx>(); }
1298 Value *getCalledValue() const { return getCalledOperand(); }
1306 return dyn_cast_or_null<Function>(getCalledOperand());
1374 bool isInlineAsm() const { return isa<InlineAsm>(getCalledOperand()); }
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DIRDynamicChecks.cpp466 return GetFunction(inst->getCalledOperand()); in GetCalledFunction()

1234