Home
last modified time | relevance | path

Searched refs:getCalledValue (Results 1 – 25 of 86) sorted by relevance

1234

/external/llvm/include/llvm/Analysis/
DIndirectCallSiteVisitor.h24 if (CS.getCalledFunction() || !CS.getCalledValue()) in visitCallSite()
31 if (isa<Constant>(CS.getCalledValue())) in visitCallSite()
/external/llvm/tools/llvm-diff/
DDifferenceEngine.cpp228 if (!equivalentAsOperands(L.getCalledValue(), R.getCalledValue())) { in diffCallSites()
611 if (!equivalentAsOperands(LCall->getCalledValue(), RInvoke->getCalledValue())) in runBlockDiff()
624 if (!equivalentAsOperands(LInvoke->getCalledValue(), RCall->getCalledValue())) in runBlockDiff()
DDiffConsumer.cpp59 printValue(cast<CallInst>(V)->getCalledValue(), isL); in printValue()
62 printValue(cast<InvokeInst>(V)->getCalledValue(), isL); in printValue()
/external/swiftshader/third_party/LLVM/tools/llvm-diff/
DDifferenceEngine.cpp232 if (!equivalentAsOperands(L.getCalledValue(), R.getCalledValue())) { in diffCallSites()
608 if (!equivalentAsOperands(LCall->getCalledValue(), RInvoke->getCalledValue())) in runBlockDiff()
621 if (!equivalentAsOperands(LInvoke->getCalledValue(), RCall->getCalledValue())) in runBlockDiff()
DDiffConsumer.cpp58 printValue(cast<CallInst>(V)->getCalledValue(), isL); in printValue()
61 printValue(cast<InvokeInst>(V)->getCalledValue(), isL); in printValue()
/external/llvm/include/llvm/IR/
DStatepoint.h121 ValueTy *getCalledValue() const { in getCalledValue() function
132 return dyn_cast<Function>(getCalledValue()); in getCalledFunction()
148 cast<PointerType>(getCalledValue()->getType())->getElementType()); in getActualReturnType()
DCallSite.h93 ValTy *getCalledValue() const { in getCalledValue() function
102 return dyn_cast<FunTy>(getCalledValue()); in getCalledFunction()
/external/llvm/lib/Transforms/Utils/
DLowerInvoke.cpp59 CallInst *NewCall = CallInst::Create(II->getCalledValue(), in runOnFunction()
DEvaluator.cpp362 if (isa<InlineAsm>(CS.getCalledValue())) { in EvaluateBlock()
429 Function *Callee = dyn_cast<Function>(getVal(CS.getCalledValue())); in EvaluateBlock()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DCallSite.h86 ValTy *getCalledValue() const { in getCalledValue() function
95 return dyn_cast<FunTy>(getCalledValue()); in getCalledFunction()
/external/llvm/lib/CodeGen/
DPreISelIntrinsicLowering.cpp39 if (!CI || CI->getCalledValue() != &F) in lowerLoadRelative()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DInlineCost.cpp92 if (!isa<InlineAsm>(CS.getCalledValue())) in analyzeBasicBlock()
330 if (CI->getCalledValue() == V) in CountBonusForConstant()
334 if (II->getCalledValue() == V) in CountBonusForConstant()
DAliasAnalysisEvaluator.cpp146 Value *Callee = CS.getCalledValue(); in runOnFunction()
/external/llvm/lib/Analysis/
DCodeMetrics.cpp138 if (!isa<InlineAsm>(CS.getCalledValue())) in analyzeBasicBlock()
/external/llvm/lib/CodeGen/SelectionDAG/
DStatepointLowering.cpp760 unsigned AS = ISP.getCalledValue()->getType()->getPointerAddressSpace(); in LowerStatepoint()
763 ActualCallee = getValue(ISP.getCalledValue()); in LowerStatepoint()
878 ImmutableStatepoint(I).getCalledValue()->getType()); in visitGCResult()
DFunctionLoweringInfo.cpp177 if (isa<InlineAsm>(CS.getCalledValue())) { in set()
553 I.getCalledValue()->getType()->getContainedType(0)); in ComputeUsesVAFloatArgument()
/external/llvm/lib/Transforms/IPO/
DPruneEH.cpp143 if (const auto *IA = dyn_cast<InlineAsm>(ICS.getCalledValue())) in runImpl()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DLowerInvoke.cpp178 CallInst *NewCall = CallInst::Create(II->getCalledValue(), in insertCheapEHSupport()
258 CallInst *NewCall = CallInst::Create(II->getCalledValue(), in rewriteExpensiveInvoke()
DInlineFunction.cpp401 Function *fn = dyn_cast<Function>(call->getCalledValue()); in forwardEHResume()
544 IRBuilder<>(Inner).CreateCall(Inner->getCalledValue(), NewSelector); in HandleCallsInBlockInlinedThroughInvoke()
578 InvokeInst::Create(CI->getCalledValue(), Split, in HandleCallsInBlockInlinedThroughInvoke()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DPruneEH.cpp179 CallInst *Call = CallInst::Create(II->getCalledValue(), Args, "", II); in SimplifyFunction()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineCalls.cpp905 Value *Callee = CS.getCalledValue(); in visitCallSite()
1000 dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts()); in transformConstExprCastCall()
1099 PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType()); in transformConstExprCastCall()
1246 Value *Callee = CS.getCalledValue(); in transformCallThroughTrampoline()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DSimplifyCFGPass.cpp94 CallInst *NewCall = CallInst::Create(II->getCalledValue(), Args, "", II); in ChangeToCall()
/external/llvm/lib/Transforms/Instrumentation/
DDataFlowSanitizer.cpp1370 IRB.CreateCall(I.getCalledValue(), {DestShadow, SrcShadow, LenShadow, in visitMemTransferInst()
1399 if ((F && F->isIntrinsic()) || isa<InlineAsm>(CS.getCalledValue())) { in visitCallSite()
1412 DFSF.DFS.UnwrappedFnMap.find(CS.getCalledValue()); in visitCallSite()
1525 CS.getCalledValue()->getType()->getPointerElementType()); in visitCallSite()
1562 IRB.CreateBitCast(CS.getCalledValue(), PointerType::getUnqual(NewFT)); in visitCallSite()
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
DCBackend.cpp277 return isa<InlineAsm>(CI->getCalledValue()); in isInlineAsm()
2907 if (isa<InlineAsm>(I.getCalledValue())) in visitCallInst()
2918 Value *Callee = I.getCalledValue(); in visitCallInst()
2964 cast<PointerType>(I.getCalledValue()->getType())); in visitCallInst()
2966 printType(Out, I.getCalledValue()->getType(), false, "", true, PAL); in visitCallInst()
2968 printType(Out, I.getCalledValue()->getType()); in visitCallInst()
3220 InlineAsm* as = cast<InlineAsm>(CI.getCalledValue()); in visitInlineAsm()
/external/llvm/lib/Target/AArch64/
DAArch64PromoteConstant.cpp299 return !(CI && isa<const InlineAsm>(CI->getCalledValue())); in shouldConvertUse()

1234