HomeSort by relevance Sort by last modified time
    Searched refs:Callee (Results 126 - 150 of 467) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/GlobalISel/
CallLowering.h 161 /// \p Callee is the destination of the call. It should be either a register,
177 const MachineOperand &Callee, const ArgInfo &OrigRet,
193 /// \p GetCalleeReg is a callback to materialize a register for the callee if
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/GlobalISel/
CallLowering.h 170 /// \p Callee is the destination of the call. It should be either a register,
186 const MachineOperand &Callee, const ArgInfo &OrigRet,
202 /// \p GetCalleeReg is a callback to materialize a register for the callee if
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/GlobalISel/
CallLowering.h 170 /// \p Callee is the destination of the call. It should be either a register,
186 const MachineOperand &Callee, const ArgInfo &OrigRet,
202 /// \p GetCalleeReg is a callback to materialize a register for the callee if
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/GlobalISel/
CallLowering.h 170 /// \p Callee is the destination of the call. It should be either a register,
186 const MachineOperand &Callee, const ArgInfo &OrigRet,
202 /// \p GetCalleeReg is a callback to materialize a register for the callee if
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/GlobalISel/
CallLowering.h 170 /// \p Callee is the destination of the call. It should be either a register,
186 const MachineOperand &Callee, const ArgInfo &OrigRet,
202 /// \p GetCalleeReg is a callback to materialize a register for the callee if
  /external/llvm/lib/Target/BPF/
BPFISelLowering.cpp 223 SDValue Callee = CLI.Callee;
249 fail(CLI.DL, DAG, "too many args to ", Callee);
256 fail(CLI.DL, DAG, "pass by value not supported ", Callee);
306 // If the callee is a GlobalAddress node (quite common, every direct call is)
309 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
310 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), CLI.DL, PtrVT,
312 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
313 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), PtrVT, 0);
319 Ops.push_back(Callee);
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 74 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
82 Callee, ReturnValue, Args, MD);
86 const CXXDestructorDecl *DD, llvm::Value *Callee, llvm::Value *This,
93 Callee, ReturnValueSlot(), Args, DD);
108 const Expr *callee = CE->getCallee()->IgnoreParens(); local
110 if (isa<BinaryOperator>(callee))
113 const MemberExpr *ME = cast<MemberExpr>(callee);
118 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
119 return EmitCall(getContext().getPointerType(MD->getType()), Callee, CE,
227 llvm::Value *Callee;
    [all...]
  /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.

Completed in 1030 milliseconds

1 2 3 4 56 7 8 91011>>