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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfo.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfo.h     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
ItaniumCXXABI.cpp 602 llvm::PHINode *Callee = Builder.CreatePHI(FTy->getPointerTo(), 2);
603 Callee->addIncoming(VirtualFn, FnVirtual);
604 Callee->addIncoming(NonVirtualFn, FnNonVirtual);
605 return Callee;
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 317 /// Callee - The function which was called.
318 const FunctionDecl *Callee;
338 const FunctionDecl *Callee, const LValue *This,
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 680 unsigned NumArgs, const Value *Callee,
703 CLI.setCallee(CI->getCallingConv(), RetTy, Callee, std::move(Args), NumArgs);
727 Value *Callee = I->getOperand(PatchPointOpers::TargetPos)->stripPointerCasts();
746 if (!lowerCallOperands(I, NumMetaOpers, NumCallArgs, Callee, IsAnyRegCC, CLI))
774 if (const auto *C = dyn_cast<IntToPtrInst>(Callee)) {
778 } else if (const auto *C = dyn_cast<ConstantExpr>(Callee)) {
785 } else if (const auto *GV = dyn_cast<GlobalValue>(Callee)) {
787 } else if (isa<ConstantPointerNull>(Callee))
790 llvm_unreachable("Unsupported callee address.");
    [all...]
  /external/llvm/lib/IR/
IRBuilder.cpp 59 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops,
62 CallInst *CI = CallInst::Create(Callee, Ops, Name);
339 // Extract out the type of the callee.
342 "actual callee must be a callable value");
390 // Extract out the type of the callee.
393 "actual callee must be a callable value");
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.h 65 /// #1 - The callee
67 /// #3 - The number of arg bytes the callee pops off the stack.
215 /// operand #1 callee (register or absolute)
494 /// isCalleePop - Determines whether the callee is required to pop its
495 /// own arguments. Callee pop is necessary to support tail calls.
771 bool IsEligibleForTailCallOptimization(SDValue Callee,
    [all...]
X86ISelDAGToDAG.cpp 398 static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
399 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
401 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
417 if (Chain.getOperand(0).getNode() == Callee.getNode())
420 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
421 Callee.getValue(1).hasOneUse())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 198 std::string Callee;
201 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
202 : Callee(callee), Args(args) {}
    [all...]
  /external/llvm/lib/Analysis/
LazyCallGraph.cpp 78 if (Function *Callee = CS.getCalledFunction())
79 if (Callees.insert(Callee).second) {
80 Visited.insert(Callee);
81 addEdge(Edges, EdgeIndexMap, *Callee, LazyCallGraph::Edge::Call);
738 // callee.
798 // callee) which terminates the search.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp     [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 707 if (Decl *Callee = ce->getCalleeDecl()) {
708 if (Callee->hasAttr<ReturnsTwiceAttr>()) {
716 else if (Callee->hasAttr<AnalyzerNoReturnAttr>()) {
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 156 std::string Callee;
159 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
160 : Callee(callee), Args(args) {}
942 Function *CalleeF = TheHelper->getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 158 std::string Callee;
161 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
162 : Callee(callee), Args(args) {}
982 Function *CalleeF = TheHelper->getFunction(Callee);
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 284 SDValue Callee = CLI.Callee;
394 Ops.push_back(Callee);
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 253 // IR, while in the callee the classification is determined dynamically based
373 Function *Callee = Arg->getParent();
374 const DataLayout &DL = Callee->getParent()->getDataLayout();
380 for (User *U : Callee->users()) {
471 // would have happened in the callee anyway (ie, there is a load in the entry
    [all...]
  /external/swiftshader/third_party/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/lib/Target/Hexagon/
HexagonISelLowering.cpp 614 const SmallVectorImpl<SDValue> &OutVals, SDValue Callee) const {
665 SDValue Callee = CLI.Callee;
677 if (GlobalAddressSDNode *GAN = dyn_cast<GlobalAddressSDNode>(Callee)) {
679 Callee = DAG.getTargetGlobalAddress(GV, dl, MVT::i32);
683 // varargs if the callee is undefined.
705 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
840 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
843 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
    [all...]

Completed in 1858 milliseconds

1 2 3 4 5 6 7 8 91011>>