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

1 2 34 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
FastISel.h 62 const Value *Callee = nullptr;
84 Callee = Target;
107 Callee = Call.getCalledValue();
130 Callee = Target;
545 const Value *Callee, bool ForceRetVoidTy,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
FastISel.h 62 const Value *Callee = nullptr;
84 Callee = Target;
107 Callee = Call.getCalledValue();
130 Callee = Target;
545 const Value *Callee, bool ForceRetVoidTy,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
FastISel.h 62 const Value *Callee = nullptr;
84 Callee = Target;
107 Callee = Call.getCalledValue();
130 Callee = Target;
545 const Value *Callee, bool ForceRetVoidTy,
  /external/llvm/lib/Transforms/Utils/
Evaluator.cpp 429 Function *Callee = dyn_cast<Function>(getVal(CS.getCalledValue()));
430 if (!Callee || Callee->isInterposable()) {
439 if (Callee->isDeclaration()) {
441 if (Constant *C = ConstantFoldCall(Callee, Formals, TLI)) {
450 if (Callee->getFunctionType()->isVarArg()) {
458 if (!EvaluateFunction(Callee, RetVal, Formals)) {
  /external/clang/lib/CodeGen/
CGVTables.cpp 154 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
155 llvm::Function *BaseFn = cast<llvm::Function>(Callee);
254 void CodeGenFunction::EmitCallAndReturnForThunk(llvm::Value *Callee,
274 EmitMustTailThunk(MD, AdjustedThisPtr, Callee);
323 RValue RV = EmitCall(*CurFnInfo, Callee, Slot, CallArgs, MD, &CallOrInvoke);
343 llvm::Value *Callee) {
346 // that the caller prototype more or less matches the callee prototype with
372 llvm::CallInst *Call = Builder.CreateCall(Callee, Args);
378 CGM.ConstructAttributeList(Callee->getName(), *CurFnInfo, MD, AttributeList,
401 // Get our callee
    [all...]
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/include/llvm/Analysis/
LazyCallGraph.h 193 /// a callee, and facilitate iteration of child nodes in the graph.
641 /// caller and callee are very nearby in the graph. See comments in the
709 /// always visits SCCs for a callee prior to visiting the SCC for a caller
816 void insertEdge(Node &Caller, Function &Callee, Edge::Kind EK);
819 void insertEdge(Function &Caller, Function &Callee, Edge::Kind EK) {
820 return insertEdge(get(Caller), Callee, EK);
824 void removeEdge(Node &Caller, Function &Callee);
    [all...]
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 214 auto Callee =
217 FCall = Builder.CreateCall(Callee, None);
229 FCall = Builder.CreateCall(Callee, None);
390 auto Callee =
410 auto Call1 = Builder.CreateCall(Callee, None);
416 auto Call2 = Builder.CreateCall(Callee, None);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BuildLibCalls.cpp 226 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
228 CallInst *CI = B.CreateCall(Callee, Op, Name);
230 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
362 Function *Callee = CI->getCalledFunction();
363 StringRef Name = Callee->getName();
364 FunctionType *FT = Callee->getFunctionType();
  /external/swiftshader/third_party/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/lib/Analysis/
AliasAnalysisEvaluator.cpp 119 Value *Callee = CS.getCalledValue();
121 if (!isa<Function>(Callee) && isInterestingPointer(Callee))
122 Pointers.insert(Callee);
  /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/llvm/lib/Target/Mips/
MipsCCState.h 25 /// Determine the SpecialCallingConvType for the given callee
27 getSpecialCallingConvForCallee(const SDNode *Callee,
MipsSEISelLowering.h 62 bool IsCallReloc, CallLoweringInfo &CLI, SDValue Callee,
  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaISelLowering.h 125 LowerCall(SDValue Chain, SDValue Callee,
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXISelLowering.cpp 345 PTXTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
362 // The layout of the ops will be [Chain, #Ins, Ins, Callee, #Outs, Outs]
367 // Identify the callee function
368 const GlobalValue *GV = cast<GlobalAddressSDNode>(Callee)->getGlobal();
371 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy());
372 Ops[Ins.size()+2] = Callee;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/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/darwin-x86/clang-3960126/prebuilt_include/llvm/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/darwin-x86/clang-3977809/prebuilt_include/llvm/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/darwin-x86/clang-4053586/prebuilt_include/llvm/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-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerTracePC.h 52 void HandleCallerCallee(uintptr_t Caller, uintptr_t Callee);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/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-3960126/prebuilt_include/llvm/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-3977809/prebuilt_include/llvm/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-4053586/prebuilt_include/llvm/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

Completed in 972 milliseconds

1 2 34 5 6 7 8 91011>>