/external/clang/lib/CodeGen/ |
H A D | CGCUDARuntime.cpp | 47 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 D | InlineAlways.cpp | 93 Function *Callee = CS.getCalledFunction(); local 98 if (Callee && !Callee->isDeclaration() && 99 CS.hasFnAttr(Attribute::AlwaysInline) && isInlineViable(*Callee))
|
H A D | InlineSimple.cpp | 62 Function *Callee = CS.getCalledFunction(); variable 63 TargetTransformInfo &TTI = TTIWP->getTTI(*Callee);
|
H A D | PruneEH.cpp | 131 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 D | MainCallChecker.cpp | 21 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 D | NoReturnFunctionChecker.cpp | 48 const Expr *Callee = CE.getOriginExpr(); local 49 if (!BuildSinks && Callee) 50 BuildSinks = getFunctionExtInfo(Callee->getType()).getNoReturn();
|
H A D | MallocSizeofChecker.cpp | 223 const FunctionDecl *Callee = i->AllocCall->getDirectCallee(); local 224 if (Callee && Callee->getIdentifier()) 225 OS << '\'' << Callee->getIdentifier()->getName() << '\'';
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | CheckerContext.cpp | 24 const Expr *Callee = CE->getCallee(); local 25 SVal L = State->getSVal(Callee, Pred->getLocationContext());
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
H A D | builder_misc.h | 74 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 D | InlineAlways.cpp | 53 void growCachedCostInfo(Function* Caller, Function* Callee) { argument 54 CA.growCachedCostInfo(Caller, Callee);
|
H A D | InlineSimple.cpp | 53 void growCachedCostInfo(Function* Caller, Function* Callee) { argument 54 CA.growCachedCostInfo(Caller, Callee);
|
/external/llvm/lib/ProfileData/ |
H A D | SampleProfWriter.cpp | 173 StringRef Callee = J.first(); local 175 if (std::error_code EC = writeNameIdx(Callee))
|
/external/llvm/lib/Target/Mips/ |
H A D | MipsCCState.cpp | 58 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 D | NVVMReflect.cpp | 159 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 D | test_calling_conv_main.cpp | 32 // 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 D | Evaluator.cpp | 429 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 D | CallGraph.cpp | 152 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 D | MBlazeISelDAGToDAG.cpp | 227 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 D | ProfilingUtils.cpp | 132 void llvm::InsertProfilingShutdownCall(Function *Callee, Module *Mod) { argument 145 ConstantExpr::getBitCast(Callee, GlobalDtorElems[1])
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
H A D | IRBuilder.cpp | 55 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops, argument 57 CallInst *CI = CallInst::Create(Callee, Ops, "");
|
/external/clang/lib/Sema/ |
H A D | SemaCUDA.cpp | 96 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 D | toy.cpp | 132 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 D | AliasAnalysisEvaluator.cpp | 119 Value *Callee = CS.getCalledValue(); local 121 if (!isa<Function>(Callee) && isInterestingPointer(Callee)) 122 Pointers.insert(Callee);
|
H A D | CallGraph.cpp | 86 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 D | CallGraphSCCPass.cpp | 253 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...] |