HomeSort by relevance Sort by last modified time
    Searched defs:Callee (Results 26 - 50 of 77) sorted by null

12 3 4

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 134 std::string Callee;
137 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
138 : Callee(callee), Args(args) {}
493 Function *CalleeF = TheModule->getFunction(Callee);
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 47 BasicBlock *InnerResumeDest; ///< Destination for the callee's resume.
274 /// UpdateCallGraphAfterInlining - Once we have cloned code over from a callee
284 const Function *Callee = CS.getCalledFunction();
285 CallGraphNode *CalleeNode = CG[Callee];
288 // Since we inlined some uninlined call sites in the callee into the caller,
289 // add edges from the caller to all of the callees of the callee.
319 // happens, set the callee of the new call site to a more precise
333 // Update the call graph by deleting the edge from Callee to Caller. We must
334 // do this after the loop above in case Caller and Callee are the same.
377 // pointer inside the callee)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 546 : PathDiagnosticPiece(Call), Caller(callerD), Callee(0),
550 : PathDiagnosticPiece(Call), Caller(caller), Callee(0),
554 const Decl *Callee;
574 const Decl *getCallee() const { return Callee; }
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 503 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(D, Ctor_Complete);
513 CGF.EmitCXXMemberCall(D, SourceLocation(), Callee, ReturnValueSlot(), This,
529 llvm::Value *Callee
537 CGF.EmitCXXMemberCall(Dtor, CallLoc, Callee, ReturnValueSlot(), This,
    [all...]
CGBlocks.cpp     [all...]
CGBuiltin.cpp 190 llvm::Value *Callee = CGF.CGM.getIntrinsic(IntrinsicID, X->getType());
191 llvm::Value *Tmp = CGF.Builder.CreateCall2(Callee, X, Y);
    [all...]
CGExprCXX.cpp 28 llvm::Value *Callee,
62 Callee, ReturnValue, Args, MD);
170 const Expr *callee = CE->getCallee()->IgnoreParens(); local
172 if (isa<BinaryOperator>(callee))
175 const MemberExpr *ME = cast<MemberExpr>(callee);
180 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
181 return EmitCall(getContext().getPointerType(MD->getType()), Callee,
272 llvm::Value *Callee;
285 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
287 Callee = CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete, FInfo, Ty)
    [all...]
ItaniumCXXABI.cpp 344 llvm::PHINode *Callee = Builder.CreatePHI(FTy->getPointerTo(), 2);
345 Callee->addIncoming(VirtualFn, FnVirtual);
346 Callee->addIncoming(NonVirtualFn, FnNonVirtual);
347 return Callee;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 149 std::string Callee;
152 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
153 : Callee(callee), Args(args) {}
597 Function *CalleeF = TheModule->getFunction(Callee);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 154 std::string Callee;
157 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
158 : Callee(callee), Args(args) {}
693 Function *CalleeF = TheModule->getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 172 std::string Callee;
175 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
176 : Callee(callee), Args(args) {}
718 Function *CalleeF = TheModule->getFunction(Callee);
721 sprintf(error_str, "Unknown function referenced %s", Callee.c_str());
    [all...]
toy.cpp 178 std::string Callee;
181 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
182 : Callee(callee), Args(args) {}
1085 Function *CalleeF = TheHelper->getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 157 std::string Callee;
160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
161 : Callee(callee), Args(args) {}
700 Function *CalleeF = TheModule->getFunction(Callee);
703 sprintf(error_str, "Unknown function referenced %s", Callee.c_str());
    [all...]
toy.cpp 157 std::string Callee;
160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
161 : Callee(callee), Args(args) {}
983 Function *CalleeF = TheHelper->getFunction(Callee);
    [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 63 /// Number of bytes allocated statically by the callee.
138 Function &Callee, int Threshold)
139 : TD(TD), TTI(TTI), F(Callee), Threshold(Threshold), Cost(0),
761 Value *Callee = CS.getCalledValue();
769 Function *F = dyn_cast_or_null<Function>(SimplifiedValues.lookup(Callee));
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 357 SDValue Callee) const {
390 SDValue Callee = CLI.Callee;
404 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Callee))
407 Callee = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, MVT::i32);
412 // varargs if the callee is undefined.
429 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
551 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
557 Callee =
560 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 286 SDValue Callee = CLI.Callee;
299 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
461 MSP430TargetLowering::LowerCCCCallTo(SDValue Chain, SDValue Callee,
559 // If the callee is a GlobalAddress node (quite common, every direct call is)
562 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
563 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i16);
564 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
565 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i16);
571 Ops.push_back(Callee);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 206 // callee isn't.
862 static IntrinsicInst *FindInitTrampoline(Value *Callee) {
863 Callee = Callee->stripPointerCasts();
864 IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee);
    [all...]
InstCombineCasts.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 296 /// Callee - The function which was called.
297 const FunctionDecl *Callee;
317 const FunctionDecl *Callee, const LValue *This,
692 const FunctionDecl *Callee, const LValue *This,
694 : Info(Info), Caller(Info.CurrentCall), CallLoc(CallLoc), Callee(Callee),
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 202 std::string Callee;
205 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
206 : Callee(callee), Args(args) {}
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 155 std::string Callee;
158 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
159 : Callee(callee), Args(args) {}
943 Function *CalleeF = TheHelper->getFunction(Callee);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 85 SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC), getPointerTy());
93 Callee, Args, DAG, dl);
    [all...]

Completed in 1744 milliseconds

12 3 4