HomeSort by relevance Sort by last modified time
    Searched defs:Callee (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/clang/lib/CodeGen/
CGCUDARuntime.cpp 46 llvm::Value *Callee = CGF.EmitScalarExpr(E->getCallee());
47 CGF.EmitCall(E->getCallee()->getType(), Callee, ReturnValue,
CGCXX.cpp 355 llvm::Value * Callee = 0;
381 Callee = Builder.CreateLoad(VFuncPtr);
383 return Callee;
CGDeclCXX.cpp 330 llvm::Value *Callee = DtorsAndObjects[e - i - 1].first;
331 llvm::CallInst *CI = Builder.CreateCall(Callee,
333 // Make sure the call and the callee agree on calling convention.
334 if (llvm::Function *F = dyn_cast<llvm::Function>(Callee))
CGVTables.cpp 249 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
250 llvm::Function *BaseFn = cast<llvm::Function>(Callee);
353 // Get our callee.
357 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
382 RValue RV = EmitCall(FnInfo, Callee, Slot, CallArgs, MD);
  /external/clang/examples/analyzer-plugin/
MainCallChecker.cpp 20 const Expr *Callee = CE->getCallee();
21 const FunctionDecl *FD = state->getSVal(Callee).getAsFunctionDecl();
26 // Get the name of the callee.
40 report->addRange(Callee->getSourceRange());
  /external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 35 const Expr *Callee = CE->getCallee();
36 SVal L = state->getSVal(Callee);
MacOSXAPIChecker.cpp 98 const Expr *Callee = CE->getCallee();
99 const FunctionDecl *Fn = state->getSVal(Callee).getAsFunctionDecl();
NoReturnFunctionChecker.cpp 40 const Expr *Callee = CE->getCallee();
42 bool BuildSinks = getFunctionExtInfo(Callee->getType()).getNoReturn();
45 SVal L = state->getSVal(Callee);
ChrootChecker.cpp 66 const Expr *Callee = CE->getCallee();
67 SVal L = state->getSVal(Callee);
129 const Expr *Callee = CE->getCallee();
130 SVal L = state->getSVal(Callee);
PthreadLockChecker.cpp 60 const Expr *Callee = CE->getCallee();
61 const FunctionDecl *FD = state->getSVal(Callee).getAsFunctionDecl();
66 // Get the name of the callee.
UnixAPIChecker.cpp 227 // Get the callee. All the functions we care about are C functions
230 const Expr *Callee = CE->getCallee();
231 const FunctionDecl *Fn = state->getSVal(Callee).getAsFunctionDecl();
OSAtomicChecker.cpp 47 const Expr *Callee = CE->getCallee();
48 SVal L = state->getSVal(Callee);
CallAndMessageChecker.cpp 195 const Expr *Callee = CE->getCallee()->IgnoreParens();
196 SVal L = C.getState()->getSVal(Callee);
StreamChecker.cpp 119 const Expr *Callee = CE->getCallee();
120 SVal L = state->getSVal(Callee);
  /external/clang/lib/StaticAnalyzer/Core/
ObjCMessage.cpp 126 const Expr *Callee = FunctionCall->getCallee();
127 if (const FunctionDecl *FD = State->getSVal(Callee).getAsFunctionDecl())
149 const Expr *callee = local
154 if (!callee)
157 return State->getSVal(callee);
ExprEngineCallAndReturn.cpp 45 // If the callee returns an expression, bind its value to CallExpr.
80 // Invalidate all instance variables for the callee of a C++ method call.
83 if (const MemRegion *Callee = Call.getCXXCallee().getAsRegion())
84 RegionsToInvalidate.push_back(Callee);
88 if (const MemRegion *Callee = Call.getFunctionCallee().getAsRegion()) {
89 if (isa<BlockDataRegion>(Callee))
90 RegionsToInvalidate.push_back(Callee);
186 // Get the callee.
187 const Expr *Callee = CE->getCallee()->IgnoreParens();
189 SVal L = state->getSVal(Callee);
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 146 Value *Callee = CS.getCalledValue();
148 if (!isa<Function>(Callee) && isInterestingPointer(Callee))
149 Pointers.insert(Callee);
InlineCost.cpp 234 // Look at the size of the callee.
266 // performance boost for using a specialization of Callee with argument
268 int InlineCostAnalyzer::getSpecializationBonus(Function *Callee,
271 if (Callee->mayBeOverridden())
277 if (Callee->getCallingConv() == CallingConv::Cold)
280 // Get information about the callee.
281 FunctionInfo *CalleeFI = &CachedFunctionInfo[Callee];
285 CalleeFI->analyzeFunction(Callee, TD);
289 for (Function::arg_iterator I = Callee->arg_begin(), E = Callee->arg_end()
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 135 // Not a call, or being used as a parameter rather than as the callee.
152 const Function *Callee = CS.getCalledFunction();
153 if (Callee)
154 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
295 // the specified callee function. This takes more time to execute than
297 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
299 if (CalledFunctions[i].second == Callee) {
300 Callee->DropRef();
308 /// from this node to the specified callee function.
309 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) {
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 227 SDValue Callee = Node->getOperand(1);
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/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 109 std::string Callee;
112 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
113 : Callee(callee), Args(args) {}
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 344 const Function *Callee = CI->getCalledFunction();
345 assert(Callee && "Cannot lower an indirect call!");
348 switch (Callee->getIntrinsicID()) {
351 Callee->getName() + "'!");
354 Callee->getName()+"'!");
419 << (Callee->getIntrinsicID() == Intrinsic::stacksave ?
422 if (Callee->getIntrinsicID() == Intrinsic::stacksave)
430 << (Callee->getIntrinsicID() == Intrinsic::returnaddress ?
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 79 Function *Callee = CS.getCalledFunction();
89 if (Callee->hasFnAttr(Attribute::StackProtectReq))
91 else if (Callee->hasFnAttr(Attribute::StackProtect) &&
208 Function *Callee = CS.getCalledFunction();
209 if (HintThreshold > thres && Callee && !Callee->isDeclaration() &&
210 Callee->hasFnAttr(Attribute::InlineHint))
247 // and the current candidate callee (call it C) is large enough that
347 // When inlining a callee produces new call sites, we want to keep track of
348 // the fact that they were inlined from the callee. This allows us to avoi
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 226 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
228 CallInst *CI = B.CreateCall(Callee, Op, Name);
230 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
362 Function *Callee = CI->getCalledFunction();
363 StringRef Name = Callee->getName();
364 FunctionType *FT = Callee->getFunctionType();
  /external/webkit/Source/JavaScriptCore/interpreter/
RegisterFile.h 100 Callee = -4,

Completed in 2251 milliseconds

1 2 3