/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 228 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()
|
D | DiffConsumer.cpp | 59 printValue(cast<CallInst>(V)->getCalledValue(), isL); in printValue() 62 printValue(cast<InvokeInst>(V)->getCalledValue(), isL); in printValue()
|
/external/llvm/include/llvm/IR/ |
D | Statepoint.h | 121 ValueTy *getCalledValue() const { in getCalledValue() function 132 return dyn_cast<Function>(getCalledValue()); in getCalledFunction() 148 cast<PointerType>(getCalledValue()->getType())->getElementType()); in getActualReturnType()
|
D | CallSite.h | 93 ValTy *getCalledValue() const { in getCalledValue() function 102 return dyn_cast<FunTy>(getCalledValue()); in getCalledFunction()
|
/external/llvm/lib/Transforms/IPO/ |
D | PruneEH.cpp | 142 if (const auto *IA = dyn_cast<InlineAsm>(ICS.getCalledValue())) in runOnSCC() 194 CallInst *Call = CallInst::Create(II->getCalledValue(), Args, OpBundles, in SimplifyFunction()
|
D | GlobalOpt.cpp | 631 if (CI->getCalledValue() != V) { in AllUsesOfValueWillTrapIfNull() 636 if (II->getCalledValue() != V) { in AllUsesOfValueWillTrapIfNull() 693 if (CS.getCalledValue() == V) { in OptimizeAwayTrappingUsesOfValue() 2587 if (isa<InlineAsm>(CS.getCalledValue())) { in EvaluateBlock() 2654 Function *Callee = dyn_cast<Function>(getVal(CS.getCalledValue())); in EvaluateBlock()
|
/external/llvm/lib/Transforms/Utils/ |
D | LowerInvoke.cpp | 60 CallInst *NewCall = CallInst::Create(II->getCalledValue(), in runOnFunction()
|
D | InlineFunction.cpp | 196 if (!CI || CI->doesNotThrow() || isa<InlineAsm>(CI->getCalledValue())) in HandleCallsInBlockInlinedThroughInvoke() 218 InvokeInst::Create(CI->getCalledValue(), Split, UnwindEdge, InvokeArgs, in HandleCallsInBlockInlinedThroughInvoke() 1436 dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts()); in InlineFunction()
|
D | Local.cpp | 1223 CallInst *NewCall = CallInst::Create(II->getCalledValue(), Args, OpBundles, in changeToCall() 1310 Value *Callee = II->getCalledValue(); in markAliveBlocks()
|
/external/llvm/lib/Analysis/ |
D | CodeMetrics.cpp | 139 if (!isa<InlineAsm>(CS.getCalledValue())) in analyzeBasicBlock()
|
D | AliasAnalysisEvaluator.cpp | 165 Value *Callee = CS.getCalledValue(); in runOnFunction()
|
D | InlineCost.cpp | 808 if (!isa<InlineAsm>(CS.getCalledValue())) in visitCallSite() 817 Value *Callee = CS.getCalledValue(); in visitCallSite()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | StatepointLowering.cpp | 304 unsigned AS = ISP.getCalledValue()->getType()->getPointerAddressSpace(); in lowerCallFromStatepoint() 308 ActualCallee = Builder.getValue(ISP.getCalledValue()); in lowerCallFromStatepoint() 846 ImmutableStatepoint(I).getCalledValue()->getType()); in visitGCResult()
|
D | FunctionLoweringInfo.cpp | 140 if (isa<InlineAsm>(CS.getCalledValue())) { in set() 535 I.getCalledValue()->getType()->getContainedType(0)); in ComputeUsesVAFloatArgument()
|
D | FastISel.cpp | 883 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); in lowerCallTo() 1013 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); in lowerCall() 1044 CLI.setCallee(RetTy, FuncTy, CI->getCalledValue(), std::move(Args), CS) in lowerCall() 1054 if (const InlineAsm *IA = dyn_cast<InlineAsm>(Call->getCalledValue())) { in selectCall()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | DataFlowSanitizer.cpp | 1376 IRB.CreateCall(I.getCalledValue(), {DestShadow, SrcShadow, LenShadow, in visitMemTransferInst() 1405 if ((F && F->isIntrinsic()) || isa<InlineAsm>(CS.getCalledValue())) { in visitCallSite() 1416 CS.getCalledValue()->getType()->getPointerElementType())->isVarArg() && in visitCallSite() 1422 DFSF.DFS.UnwrappedFnMap.find(CS.getCalledValue()); in visitCallSite() 1535 CS.getCalledValue()->getType()->getPointerElementType()); in visitCallSite() 1572 IRB.CreateBitCast(CS.getCalledValue(), PointerType::getUnqual(NewFT)); in visitCallSite()
|
D | SanitizerCoverage.cpp | 362 Value *Callee = CS.getCalledValue(); in InjectCoverageForIndirectCalls()
|
/external/llvm/lib/Transforms/Scalar/ |
D | PlaceSafepoints.cpp | 887 ID, NumPatchBytes, CS.getCalledValue(), in ReplaceWithStatepoint() 913 ID, NumPatchBytes, CS.getCalledValue(), ToReplace->getNormalDest(), in ReplaceWithStatepoint()
|
D | ConstantHoisting.cpp | 320 if (isa<InlineAsm>(Call->getCalledValue())) in collectConstantCandidates()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 682 if (Value *V = SimplifyCall(CI.getCalledValue(), Args.begin(), Args.end(), DL, in visitCallInst() 1702 *AssumeIntrinsic = II->getCalledValue(); in visitCallInst() 1968 Value *Callee = CS.getCalledValue(); in visitCallSite() 2063 dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts()); in transformConstExprCastCall() 2170 PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType()); in transformConstExprCastCall() 2341 Value *Callee = CS.getCalledValue(); in transformCallThroughTrampoline()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64PromoteConstant.cpp | 288 if (CI && isa<const InlineAsm>(CI->getCalledValue())) in shouldConvertUse()
|
/external/llvm/include/llvm/CodeGen/ |
D | FastISel.h | 121 Callee = Call.getCalledValue();
|
/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfoImpl.h | 481 Type *FTy = CS.getCalledValue()->getType()->getPointerElementType(); in getUserCost()
|
/external/llvm/lib/Target/Mips/ |
D | Mips16HardFloat.cpp | 430 const Value* V = CI->getCalledValue(); in fixupFPReturnAndCall()
|
/external/llvm/lib/CodeGen/ |
D | ShadowStackGCLowering.cpp | 179 InvokeInst::Create(CI->getCalledValue(), NewBB, CleanupBB, Args, in Next()
|