HomeSort by relevance Sort by last modified time
    Searched defs:Callee (Results 1 - 25 of 71) 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 354 llvm::Value * Callee = 0;
378 Callee = Builder.CreateLoad(VFuncPtr);
380 return Callee;
CGDeclCXX.cpp 172 // Make sure the call and the callee agree on calling convention.
378 llvm::Value *Callee = DtorsAndObjects[e - i - 1].first;
379 llvm::CallInst *CI = Builder.CreateCall(Callee,
381 // Make sure the call and the callee agree on calling convention.
382 if (llvm::Function *F = dyn_cast<llvm::Function>(Callee))
CGVTables.cpp 247 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
248 llvm::Function *BaseFn = cast<llvm::Function>(Callee);
352 // Get our callee.
355 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
382 RValue RV = EmitCall(FnInfo, Callee, Slot, CallArgs, MD);
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 24 const Expr *Callee = CE->getCallee();
25 SVal L = State->getSVal(Callee, Pred->getLocationContext());
  /external/llvm/lib/Transforms/IPO/
InlineAlways.cpp 108 Function *Callee = CS.getCalledFunction();
110 if (!Callee) return InlineCost::getNever();
114 if (Callee->isDeclaration()) return InlineCost::getNever();
117 if (!Callee->hasFnAttr(Attribute::AlwaysInline))
121 if (!isInlineViable(*Callee))
Inliner.cpp 86 Function *Callee = CS.getCalledFunction();
96 if (Callee->hasFnAttr(Attribute::StackProtectReq))
98 else if (Callee->hasFnAttr(Attribute::StackProtect) &&
217 Function *Callee = CS.getCalledFunction();
218 bool InlineHint = Callee && !Callee->isDeclaration() &&
219 Callee->hasFnAttr(Attribute::InlineHint);
253 // elsewhere, and the current candidate callee (call it C) is large enough
358 // When inlining a callee produces new call sites, we want to keep track of
359 // the fact that they were inlined from the callee. This allows us to avoi
    [all...]
  /external/clang/examples/analyzer-plugin/
MainCallChecker.cpp 21 const Expr *Callee = CE->getCallee();
22 const FunctionDecl *FD = state->getSVal(Callee, LC).getAsFunctionDecl();
27 // Get the name of the callee.
41 report->addRange(Callee->getSourceRange());
  /external/clang/lib/StaticAnalyzer/Checkers/
NoReturnFunctionChecker.cpp 40 const Expr *Callee = CE->getCallee();
42 bool BuildSinks = getFunctionExtInfo(Callee->getType()).getNoReturn();
45 SVal L = state->getSVal(Callee, C.getLocationContext());
OSAtomicChecker.cpp 41 const Expr *Callee = CE->getCallee();
42 SVal L = State->getSVal(Callee, LCtx);
CallAndMessageChecker.cpp 222 const Expr *Callee = CE->getCallee()->IgnoreParens();
225 SVal L = State->getSVal(Callee, LCtx);
231 emitBadCall(BT_call_undef.get(), C, Callee);
242 emitBadCall(BT_call_null.get(), C, Callee);
252 // If this is a call to a C++ method, check if the callee is null or
298 // If we make it here, record our assumptions about the callee.
MallocSizeofChecker.cpp 220 const FunctionDecl *Callee = i->AllocCall->getDirectCallee();
221 if (Callee && Callee->getIdentifier())
222 OS << '\'' << Callee->getIdentifier()->getName() << '\'';
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 146 Value *Callee = CS.getCalledValue();
148 if (!isa<Function>(Callee) && isInterestingPointer(Callee))
149 Pointers.insert(Callee);
Lint.cpp 63 static unsigned Callee = 4;
199 Value *Callee = CS.getCalledValue();
201 visitMemoryReference(I, Callee, AliasAnalysis::UnknownSize,
202 0, 0, MemRef::Callee);
204 if (Function *F = dyn_cast<Function>(findValue(Callee, /*OffsetOk=*/false))) {
206 "Undefined behavior: Caller and callee calling convention differ",
215 "Undefined behavior: Call argument count mismatches callee "
220 "callee return type", &I);
222 // Check argument types (in case the callee was casted) and attributes.
223 // TODO: Verify that caller and callee attributes are compatible
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 145 const Function *Callee = CS.getCalledFunction();
146 if (Callee)
147 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
292 // the specified callee function. This takes more time to execute than
294 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
296 if (CalledFunctions[i].second == Callee) {
297 Callee->DropRef();
305 /// from this node to the specified callee function.
306 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) {
308 assert(I != CalledFunctions.end() && "Cannot find callee to remove!")
    [all...]
CallGraphSCCPass.cpp 250 Function *Callee = CS.getCalledFunction();
251 if (Callee && Callee->isIntrinsic()) continue;
263 // Verify that the callee is right.
282 if (Function *Callee = CS.getCalledFunction()) {
283 CalleeNode = CG.getOrInsertFunction(Callee);
289 << Callee->getName() << "'\n");
306 if (Function *Callee = CS.getCalledFunction()) {
307 CalleeNode = CG.getOrInsertFunction(Callee);
GlobalsModRef.cpp 414 if (Function *Callee = CI->second->getFunction()) {
415 if (FunctionRecord *CalleeFR = getFunctionInfo(Callee)) {
419 // Incorporate callee's effects on globals into our info.
428 CallGraphNode *CalleeNode = CG[Callee];
465 Function *Callee = Intrinsic->getCalledFunction();
466 ModRefBehavior Behaviour = AliasAnalysis::getModRefBehavior(Callee);
  /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/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 160 Value *Callee = II->getCalledValue();
161 if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) {
  /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/Utils/
BuildLibCalls.cpp 285 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
287 CallInst *CI = B.CreateCall(Callee, Op, Name);
289 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
445 Function *Callee = CI->getCalledFunction();
446 StringRef Name = Callee->getName();
447 FunctionType *FT = Callee->getFunctionType();
  /external/webkit/Source/JavaScriptCore/interpreter/
RegisterFile.h 100 Callee = -4,
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 118 std::string Callee;
121 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
122 : Callee(callee), Args(args) {}
384 Function *CalleeF = TheModule->getFunction(Callee);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 125 std::string Callee;
128 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
129 : Callee(callee), Args(args) {}
392 Function *CalleeF = TheModule->getFunction(Callee);

Completed in 186 milliseconds

1 2 3