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

1 2 3 4 5 6

  /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/llvm/lib/Transforms/IPO/
InlineAlways.cpp 92 Function *Callee = CS.getCalledFunction();
97 if (Callee && !Callee->isDeclaration() &&
99 ICA->isInlineViable(*Callee))
Inliner.cpp 86 static void AdjustCallerSSPLevel(Function *Caller, Function *Callee) {
97 CalleeAttr = Callee->getAttributes();
130 Function *Callee = CS.getCalledFunction();
138 AdjustCallerSSPLevel(Caller, Callee);
280 Function *Callee = CS.getCalledFunction();
281 bool InlineHint = Callee && !Callee->isDeclaration() &&
282 Callee->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
290 bool ColdCallee = Callee && !Callee->isDeclaration() &
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 60 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B)
178 Value *callOptimizer(Function *Callee, CallInst *CI,
181 FunctionType *FT = Callee->getFunctionType();
202 Value *callOptimizer(Function *Callee, CallInst *CI,
205 FunctionType *FT = Callee->getFunctionType();
226 Value *callOptimizer(Function *Callee, CallInst *CI,
229 FunctionType *FT = Callee->getFunctionType();
251 Value *callOptimizer(Function *Callee, CallInst *CI,
254 StringRef Name = Callee->getName();
255 FunctionType *FT = Callee->getFunctionType()
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 72 if (const Function *Callee = CS.getCalledFunction()) {
73 if (Callee->isDeclaration() || Callee->mayBeOverridden())
75 for (Function::const_iterator I = Callee->begin(), E = Callee->end();
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 83 const Function *Callee = CS.getCalledFunction();
84 if (!Callee)
87 else if (!Callee->isIntrinsic())
88 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
195 // the specified callee function. This takes more time to execute than
197 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
199 if (CalledFunctions[i].second == Callee) {
200 Callee->DropRef();
208 /// from this node to the specified callee function.
209 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) {
    [all...]
CallGraphSCCPass.cpp 258 Function *Callee = CS.getCalledFunction();
259 if (Callee && Callee->isIntrinsic()) continue;
271 // Verify that the callee is right.
290 if (Function *Callee = CS.getCalledFunction()) {
291 CalleeNode = CG.getOrInsertFunction(Callee);
297 << Callee->getName() << "'\n");
314 if (Function *Callee = CS.getCalledFunction()) {
315 CalleeNode = CG.getOrInsertFunction(Callee);
InlineCost.cpp 66 /// Number of bytes allocated statically by the callee.
144 Function &Callee, int Threshold)
145 : DL(DL), TTI(TTI), F(Callee), Threshold(Threshold), Cost(0),
764 Value *Callee = CS.getCalledValue();
772 Function *F = dyn_cast_or_null<Function>(SimplifiedValues.lookup(Callee));
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NoReturnFunctionChecker.cpp 48 const Expr *Callee = CE.getOriginExpr();
49 if (!BuildSinks && Callee)
50 BuildSinks = getFunctionExtInfo(Callee->getType()).getNoReturn();
MallocSizeofChecker.cpp 220 const FunctionDecl *Callee = i->AllocCall->getDirectCallee();
221 if (Callee && Callee->getIdentifier())
222 OS << '\'' << Callee->getIdentifier()->getName() << '\'';
  /external/clang/lib/CodeGen/
CGCUDARuntime.cpp 47 llvm::Value *Callee = CGF.EmitScalarExpr(E->getCallee());
48 CGF.EmitCall(E->getCallee()->getType(), Callee, E->getLocStart(),
CGExprCXX.cpp 29 llvm::Value *Callee,
63 Callee, ReturnValue, Args, MD);
78 const Expr *callee = CE->getCallee()->IgnoreParens(); local
80 if (isa<BinaryOperator>(callee))
83 const MemberExpr *ME = cast<MemberExpr>(callee);
88 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
89 return EmitCall(getContext().getPointerType(MD->getType()), Callee,
180 llvm::Value *Callee;
193 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
195 Callee = CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete, FInfo, Ty)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 24 const Expr *Callee = CE->getCallee();
25 SVal L = State->getSVal(Callee, Pred->getLocationContext());
  /external/llvm/include/llvm/Analysis/
InlineCost.h 126 /// \brief Get an InlineCost with the callee explicitly specified.
128 /// pointer. This behaves exactly as the version with no explicit callee
133 InlineCost getInlineCost(CallSite CS, Function *Callee, int Threshold);
136 bool isInlineViable(Function &Callee);
LazyCallGraph.h 159 /// a callee, and facilitate iteration of child nodes in the graph.
179 /// \brief Internal helper to insert a callee.
180 void insertEdgeInternal(Function &Callee);
182 /// \brief Internal helper to insert a callee.
185 /// \brief Internal helper to remove a callee from this node.
186 void removeEdgeInternal(Function &Callee);
273 /// There must be an existing path from the caller to the callee. This
281 /// There must be an existing path from the callee to the caller in this
290 /// caller and callee are very nearby in the graph. See comments in the
308 /// Both the \a Caller and the \a Callee must be within this SCC. Removin
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16ISelLowering.h 48 CallLoweringInfo &CLI, SDValue Callee,
MipsSEISelLowering.h 60 CallLoweringInfo &CLI, SDValue Callee,
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 208 // callee isn't.
    [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 85 Function *Callee = CS.getCalledFunction();
86 if (!Callee || !Callee->isDeclaration())
88 return Callee;
100 Function *Callee = getCalledFunction(V, LookThroughBitCast);
101 if (!Callee)
105 StringRef FnName = Callee->getName();
128 FunctionType *FTy = Callee->getFunctionType();
321 Function *Callee = CI->getCalledFunction();
322 if (Callee == nullptr || !Callee->isDeclaration()
    [all...]
LazyCallGraph.cpp 78 void LazyCallGraph::Node::insertEdgeInternal(Function &Callee) {
79 if (Node *N = G->lookup(Callee))
82 CalleeIndexMap.insert(std::make_pair(&Callee, Callees.size()));
83 Callees.push_back(&Callee);
91 void LazyCallGraph::Node::removeEdgeInternal(Function &Callee) {
92 auto IndexMapI = CalleeIndexMap.find(&Callee);
94 "Callee not in the callee set for this caller?");
185 assert(G->SCCMap.lookup(&CalleeN) == this && "Callee must be in this SCC.");
197 assert(&CalleeC != this && "Callee must not be in this SCC.")
    [all...]
AliasAnalysisEvaluator.cpp 162 Value *Callee = CS.getCalledValue();
164 if (!isa<Function>(Callee) && isInterestingPointer(Callee))
165 Pointers.insert(Callee);
  /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/Target/Hexagon/
HexagonISelLowering.h 84 IsEligibleForTailCallOptimization(SDValue Callee,
125 SDValue Callee) const;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementConstructorBuilder.cpp 289 Document* document = V8Document::toNative(V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Callee(), V8HiddenValue::customElementDocument(isolate)).As<v8::Object>());
290 TOSTRING_VOID(V8StringResource<>, namespaceURI, V8HiddenValue::getHiddenValue(isolate, info.Callee(), V8HiddenValue::customElementNamespaceURI(isolate)));
291 TOSTRING_VOID(V8StringResource<>, tagName, V8HiddenValue::getHiddenValue(isolate, info.Callee(), V8HiddenValue::customElementTagName(isolate)));
292 v8::Handle<v8::Value> maybeType = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Callee(), V8HiddenValue::customElementType(isolate));
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 119 std::string Callee;
122 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
123 : Callee(callee), Args(args) {}
386 Function *CalleeF = TheModule->getFunction(Callee);

Completed in 1090 milliseconds

1 2 3 4 5 6