Home
last modified time | relevance | path

Searched refs:CalledValue (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp315 auto *CalledValue = CB->getCalledOperand(); in computeFunctionSummary() local
317 if (CalledValue && !CalledFunction) { in computeFunctionSummary()
318 CalledValue = CalledValue->stripPointerCasts(); in computeFunctionSummary()
320 CalledFunction = dyn_cast<Function>(CalledValue); in computeFunctionSummary()
324 if (auto *GA = dyn_cast<GlobalAlias>(CalledValue)) { in computeFunctionSummary()
350 cast<GlobalValue>(CalledValue))]; in computeFunctionSummary()
364 if (!CalledValue || isa<Constant>(CalledValue)) in computeFunctionSummary()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DSpeculateAnalyses.cpp57 auto CalledValue = Call->getCalledOperand()->stripPointerCasts(); in findCalles() local
58 if (auto DirectCall = dyn_cast<Function>(CalledValue)) in findCalles()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp1418 auto *CalledValue = CB->getCalledOperand(); in simplifySuspendPoint() local
1422 if (CalledValue != SubFn && CalledValue->user_empty()) in simplifySuspendPoint()
1423 if (auto *I = dyn_cast<Instruction>(CalledValue)) in simplifySuspendPoint()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go1282 func (v Value) CalledValue() (rv Value) { func