Searched defs:Callee (Results 1 - 25 of 160) sorted by relevance

1234567

/external/clang/lib/CodeGen/
H A DCGCUDARuntime.cpp47 llvm::Value *Callee = CGF.EmitScalarExpr(E->getCallee()); local
48 CGF.EmitCall(E->getCallee()->getType(), Callee, E, ReturnValue, TargetDecl);
/external/llvm/lib/Transforms/IPO/
H A DInlineAlways.cpp93 Function *Callee = CS.getCalledFunction(); local
98 if (Callee && !Callee->isDeclaration() &&
99 CS.hasFnAttr(Attribute::AlwaysInline) && isInlineViable(*Callee))
H A DInlineSimple.cpp62 Function *Callee = CS.getCalledFunction(); variable
63 TargetTransformInfo &TTI = TTIWP->getTTI(*Callee);
H A DPruneEH.cpp131 if (Function *Callee = CI->getCalledFunction()) {
132 CallGraphNode *CalleeNode = CG[Callee];
250 const Function *Callee = CS.getCalledFunction(); local
251 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID()))
253 else if (!Callee->isIntrinsic())
/external/clang/examples/analyzer-plugin/
H A DMainCallChecker.cpp21 const Expr *Callee = CE->getCallee(); local
22 const FunctionDecl *FD = state->getSVal(Callee, LC).getAsFunctionDecl();
42 report->addRange(Callee->getSourceRange());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DNoReturnFunctionChecker.cpp48 const Expr *Callee = CE.getOriginExpr(); local
49 if (!BuildSinks && Callee)
50 BuildSinks = getFunctionExtInfo(Callee->getType()).getNoReturn();
H A DMallocSizeofChecker.cpp223 const FunctionDecl *Callee = i->AllocCall->getDirectCallee(); local
224 if (Callee && Callee->getIdentifier())
225 OS << '\'' << Callee->getIdentifier()->getName() << '\'';
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp24 const Expr *Callee = CE->getCallee(); local
25 SVal L = State->getSVal(Callee, Pred->getLocationContext());
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
H A Dbuilder_misc.h74 CallInst *CALL(Value *Callee, const std::initializer_list<Value*> &args);
76 CallInst *CALL(Value *Callee) { return CALLA(Callee); } argument
77 CallInst *CALL(Value *Callee, Value* arg);
78 CallInst *CALL2(Value *Callee, Value* arg1, Value* arg2);
79 CallInst *CALL3(Value *Callee, Value* arg1, Value* arg2, Value* arg3);
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DInlineAlways.cpp53 void growCachedCostInfo(Function* Caller, Function* Callee) { argument
54 CA.growCachedCostInfo(Caller, Callee);
H A DInlineSimple.cpp53 void growCachedCostInfo(Function* Caller, Function* Callee) { argument
54 CA.growCachedCostInfo(Caller, Callee);
/external/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp173 StringRef Callee = J.first(); local
175 if (std::error_code EC = writeNameIdx(Callee))
/external/llvm/lib/Target/Mips/
H A DMipsCCState.cpp58 MipsCCState::getSpecialCallingConvForCallee(const SDNode *Callee, argument
63 dyn_cast<const GlobalAddressSDNode>(Callee)) {
79 originalTypeIsF128(CLI.RetTy, CLI.Callee.getNode()));
/external/llvm/lib/Target/NVPTX/
H A DNVVMReflect.cpp159 Function *Callee = Call->getCalledFunction(); local
160 if (!Callee || (Callee->getName() != NVVM_REFLECT_FUNCTION &&
161 Callee->getIntrinsicID() != Intrinsic::nvvm_reflect))
/external/swiftshader/third_party/subzero/crosstest/
H A Dtest_calling_conv_main.cpp32 // function located at Callee.
44 // Callee() and Subzero_Callee() are being tested to ensure that both
49 CalleePtrTy Callee; variable
70 CalleePtrTy Callee; member in struct:__anon20615
97 Callee = Funcs[f].Callee;
117 << ", Callee=" << Funcs[f].CalleeName << ", ArgNum=" << ArgNum
130 CalleePtrTy Callee, Subzero_Callee; member in struct:__anon20616
155 Callee = Funcs[f].Callee;
[all...]
/external/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp429 Function *Callee = dyn_cast<Function>(getVal(CS.getCalledValue())); local
430 if (!Callee || Callee->isInterposable()) {
439 if (Callee->isDeclaration()) {
441 if (Constant *C = ConstantFoldCall(Callee, Formals, TLI)) {
450 if (Callee->getFunctionType()->isVarArg()) {
458 if (!EvaluateFunction(Callee, RetVal, Formals)) {
/external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
H A DCallGraph.cpp152 const Function *Callee = CS.getCalledFunction(); local
153 if (Callee)
154 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
297 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) { argument
299 if (CalledFunctions[i].second == Callee) {
300 Callee->DropRef();
309 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) { argument
313 if (CR.second == Callee && CR.first == 0) {
314 Callee->DropRef();
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeISelDAGToDAG.cpp227 SDValue Callee = Node->getOperand(1); local
231 if ((isa<GlobalAddressSDNode>(Callee)) ||
232 (isa<ExternalSymbolSDNode>(Callee)))
238 SDValue Ops[] = { Callee, GPReg, Chain };
247 Chain = CurDAG->getCopyToReg(Chain, dl, R20Reg, Callee, InFlag);
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
H A DProfilingUtils.cpp132 void llvm::InsertProfilingShutdownCall(Function *Callee, Module *Mod) { argument
145 ConstantExpr::getBitCast(Callee, GlobalDtorElems[1])
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DIRBuilder.cpp55 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops, argument
57 CallInst *CI = CallInst::Create(Callee, Ops, "");
/external/clang/lib/Sema/
H A DSemaCUDA.cpp96 const FunctionDecl *Callee) {
97 assert(Callee && "Callee must be valid.");
98 CUDAFunctionTarget CalleeTarget = IdentifyCUDATarget(Callee);
95 IdentifyCUDAPreference(const FunctionDecl *Caller, const FunctionDecl *Callee) argument
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp132 std::string Callee; member in class:__anon12325::CallExprAST
136 CallExprAST(const std::string &Callee, argument
138 : Callee(Callee), Args(std::move(Args)) {}
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp119 Value *Callee = CS.getCalledValue(); local
121 if (!isa<Function>(Callee) && isInterestingPointer(Callee))
122 Pointers.insert(Callee);
H A DCallGraph.cpp86 const Function *Callee = CS.getCalledFunction(); local
87 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID()))
92 else if (!Callee->isIntrinsic())
93 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
218 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) { argument
220 if (CalledFunctions[i].second == Callee) {
221 Callee->DropRef();
230 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) { argument
234 if (CR.second == Callee
[all...]
H A DCallGraphSCCPass.cpp253 Function *Callee = CS.getCalledFunction(); local
255 if (!Callee || !(Callee->isIntrinsic()))
269 Function *Callee = CS.getCalledFunction(); local
270 if (Callee && Callee->isIntrinsic()) continue;
301 if (Function *Callee = CS.getCalledFunction()) {
302 CalleeNode = CG.getOrInsertFunction(Callee);
308 << Callee->getName() << "'\n");
325 if (Function *Callee
[all...]

Completed in 541 milliseconds

1234567