/external/llvm-project/llvm/include/llvm/IR/ |
D | AbstractCallSite.h | 210 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/ |
D | CallPromotionUtils.cpp | 295 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()
|
D | LowerInvoke.cpp | 56 CallInst::Create(II->getFunctionType(), II->getCalledOperand(), in runImpl()
|
D | Evaluator.cpp | 269 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/ |
D | CFGuard.cpp | 166 Value *CalledOperand = CB->getCalledOperand(); in insertCFGuardCheck() 190 Value *CalledOperand = CB->getCalledOperand(); in insertCFGuardDispatch()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/CFGuard/ |
D | CFGuard.cpp | 166 Value *CalledOperand = CB->getCalledOperand(); in insertCFGuardCheck() 190 Value *CalledOperand = CB->getCalledOperand(); in insertCFGuardDispatch()
|
/external/llvm-project/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 227 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()
|
D | DiffConsumer.cpp | 58 printValue(CI->getCalledOperand(), isL); in printValue() 61 printValue(II->getCalledOperand(), isL); in printValue()
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | AMDGPUFixFunctionBitcasts.cpp | 39 dyn_cast<Function>(CB.getCalledOperand()->stripPointerCasts()); in visitCallBase()
|
D | AMDGPUAnnotateKernelFeatures.cpp | 297 dyn_cast<Function>(CB->getCalledOperand()->stripPointerCasts()); in addFeatureAttributes()
|
/external/llvm-project/llvm/lib/Target/BPF/ |
D | BPFCheckAndAdjustIR.cpp | 110 auto *GV = dyn_cast<GlobalValue>(Call->getCalledOperand()); in removePassThroughBuiltin()
|
D | BPFPreserveDIType.cpp | 54 const auto *GV = dyn_cast<GlobalValue>(Call->getCalledOperand()); in BPFPreserveDITypeImpl()
|
/external/llvm-project/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyFixFunctionBitcasts.cpp | 79 Value *Callee = CB->getCalledOperand(); in findUses() 310 cast<Function>(CallMain->getCalledOperand()->stripPointerCasts()); in runOnModule()
|
D | WebAssemblyLowerEmscriptenEHSjLj.cpp | 420 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/ |
D | WasmEHPrepare.cpp | 360 if (CI->getCalledOperand() == GetExnF) in prepareEHPad() 362 if (CI->getCalledOperand() == GetSelectorF) in prepareEHPad()
|
D | PreISelIntrinsicLowering.cpp | 42 if (!CI || CI->getCalledOperand() != &F) in lowerLoadRelative()
|
/external/llvm-project/llvm/test/LTO/X86/ |
D | type-mapping-bug3.ll | 28 ; The call with the getCalledOperand() vs getCalledFunction() mismatch.
|
/external/llvm-project/llvm/lib/Transforms/Instrumentation/ |
D | ValueProfilePlugins.inc | 84 Value *Callee = cast<CallBase>(I)->getCalledOperand();
|
/external/llvm-project/llvm/lib/Transforms/IPO/ |
D | PruneEH.cpp | 132 if (const auto *IA = dyn_cast<InlineAsm>(CB->getCalledOperand())) in runImpl()
|
D | CalledValuePropagation.cpp | 388 auto RegI = CVPLatticeKey(C->getCalledOperand(), IPOGrouping::Register); in runCVP()
|
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
D | InlineAsmLowering.cpp | 53 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/ |
D | SpeculateAnalyses.cpp | 57 auto CalledValue = Call->getCalledOperand()->stripPointerCasts(); in findCalles()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
D | SpeculateAnalyses.cpp | 57 auto CalledValue = Call->getCalledOperand()->stripPointerCasts(); in findCalles()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | InstrTypes.h | 1294 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/ |
D | IRDynamicChecks.cpp | 466 return GetFunction(inst->getCalledOperand()); in GetCalledFunction()
|