HomeSort by relevance Sort by last modified time
    Searched refs:Callee (Results 101 - 125 of 370) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/lib/ProfileData/
SampleProfWriter.cpp 173 StringRef Callee = J.first();
175 if (std::error_code EC = writeNameIdx(Callee))
  /external/swiftshader/third_party/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/swiftshader/third_party/LLVM/include/llvm/Analysis/
CallGraph.h 40 // of all of the caller-callee relationships, which is useful for
221 /// CallGraph that reference this node in their callee list.
250 /// stealCalledFunctionsFrom - Move all the callee information from N to this
282 /// to the specified callee function. This takes more time to execute than
284 void removeAnyCallEdgeTo(CallGraphNode *Callee);
287 /// from this node to the specified callee function.
288 void removeOneAbstractEdgeTo(CallGraphNode *Callee);
  /external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
SystemZISelLowering.cpp 255 SystemZTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
271 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
373 SystemZTargetLowering::LowerCCCCallTo(SDValue Chain, SDValue Callee,
467 // If the callee is a GlobalAddress node (quite common, every direct call is)
470 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
471 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, getPointerTy());
472 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
473 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), getPointerTy());
479 Ops.push_back(Callee);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelLowering.h 117 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
178 LowerCall(SDValue Chain, SDValue Callee,
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
PruneEH.cpp 11 // call-graph, turning invoke instructions into calls, iff the callee cannot
119 } else if (Function *Callee = CI->getCalledFunction()) {
120 CallGraphNode *CalleeNode = CG[Callee];
121 // If the callee is outside our current SCC then we may
  /external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 132 void llvm::InsertProfilingShutdownCall(Function *Callee, Module *Mod) {
145 ConstantExpr::getBitCast(Callee, GlobalDtorElems[1])
  /external/swiftshader/third_party/LLVM/lib/VMCore/
IRBuilder.cpp 55 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops,
57 CallInst *CI = CallInst::Create(Callee, Ops, "");
  /external/llvm/lib/IR/
Attributes.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 164 std::string Callee;
168 CallExprAST(const std::string &Callee,
170 : Callee(Callee), Args(std::move(Args)) {}
589 Function *CalleeF = getFunction(Callee);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Target/Mips/
Mips16ISelLowering.cpp 424 bool IsCallReloc, CallLoweringInfo &CLI, SDValue Callee,
439 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(CLI.Callee)) {
482 dyn_cast<GlobalAddressSDNode>(CLI.Callee)) {
495 SDValue JumpTarget = Callee;
497 // T9 should contain the address of the callee function if
502 RegsToPass.push_front(std::make_pair(V0Reg, Callee));
510 RegsToPass.push_front(std::make_pair((unsigned)Mips::T9, Callee));
516 InternalLinkage, IsCallReloc, CLI, Callee,
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 293 // Note: the callee and the two successor blocks *follow* the argument
308 // use. In this case it does not matter if the callee is within our SCC
423 // Note: the callee and the two successor blocks *follow* the argument
429 // U cannot be the callee operand use: since we're exploring the
430 // transitive uses of an Argument, having such a use be a callee would
829 Function *Callee = CS.getCalledFunction();
832 if (Callee && SCCNodes.count(Callee)) {
    [all...]
  /external/clang/lib/Sema/
SemaCUDA.cpp 96 const FunctionDecl *Callee) {
97 assert(Callee && "Callee must be valid.");
98 CUDAFunctionTarget CalleeTarget = IdentifyCUDATarget(Callee);
  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 378 const Function *Callee) const {
380 Callee->getFnAttribute("target-cpu")) &&
382 Callee->getFnAttribute("target-features"));
  /external/swiftshader/third_party/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);
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 553 : PathDiagnosticPiece(Call), Caller(callerD), Callee(nullptr),
557 : PathDiagnosticPiece(Call), Caller(caller), Callee(nullptr),
561 const Decl *Callee;
581 const Decl *getCallee() const { return Callee; }
  /external/clang/lib/StaticAnalyzer/Checkers/
CallAndMessageChecker.cpp 308 const Expr *Callee = CE->getCallee()->IgnoreParens();
311 SVal L = State->getSVal(Callee, LCtx);
317 emitBadCall(BT_call_undef.get(), C, Callee);
328 emitBadCall(BT_call_null.get(), C, Callee);
364 // If this is a call to a C++ method, check if the callee is null or
438 // If we make it here, record our assumptions about the callee.
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 498 for (const Decl *Callee : VisitedCallees)
501 Visited.insert(isa<ObjCMethodDecl>(Callee) ? Callee
502 : Callee->getCanonicalDecl());
  /external/llvm/lib/Target/Lanai/
LanaiISelLowering.h 109 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 131 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
  /external/llvm/lib/Target/Sparc/
SparcAsmPrinter.cpp 109 MCOperand &Callee,
114 CallInst.addOperand(Callee);
241 MCOperand Callee = createPCXCallOP(EndLabel, OutContext);
242 EmitCall(*OutStreamer, Callee, STI);
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.h 102 const Function *Callee) const;
  /external/llvm/lib/Transforms/Instrumentation/
SanitizerCoverage.cpp 420 // - callee address,
422 // The cache is used to speed up recording the caller-callee pairs.
435 Value *Callee = CS.getCalledValue();
436 if (isa<InlineAsm>(Callee))
444 IRB.CreatePointerCast(Callee, IntptrTy));
447 {IRB.CreatePointerCast(Callee, IntptrTy),
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUISelLowering.h 163 LowerCall(SDValue Chain, SDValue Callee,

Completed in 2601 milliseconds

1 2 3 45 6 7 8 91011>>