Searched refs:CalledValue (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp320 auto *CalledValue = CS.getCalledValue(); local
322 if (CalledValue && !CalledFunction) {
323 CalledValue = CalledValue->stripPointerCasts();
325 CalledFunction = dyn_cast<Function>(CalledValue);
329 if (auto *GA = dyn_cast<GlobalAlias>(CalledValue)) {
350 // Use the original CalledValue, in case it was an alias. We want
355 cast<GlobalValue>(CalledValue))];
369 if (!CalledValue || isa<Constant>(CalledValue))
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSpeculateAnalyses.cpp57 auto CalledValue = Call->getCalledOperand()->stripPointerCasts();
58 if (auto DirectCall = dyn_cast<Function>(CalledValue))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp967 if (auto *CalledValue = Call->getCalledValue())
970 if (isa<CoroSubFnInst>(CalledValue->stripPointerCasts()))
1131 // Grab the CalledValue from CS before erasing the CallInstr.
1132 auto *CalledValue = CS.getCalledValue(); local
1136 if (CalledValue != SubFn && CalledValue->user_empty())
1137 if (auto *I = dyn_cast<Instruction>(CalledValue))

Completed in 66 milliseconds