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

1 2 3 4 5 67 8 91011>>

  /external/llvm/lib/Analysis/
GlobalsModRef.cpp 516 if (Function *Callee = CI->second->getFunction()) {
517 if (FunctionInfo *CalleeFI = getFunctionInfo(Callee)) {
523 CallGraphNode *CalleeNode = CG[Callee];
555 } else if (Function *Callee = CS.getCalledFunction()) {
557 if (Callee->isIntrinsic()) {
559 AAResultBase::getModRefBehavior(Callee);
    [all...]
Lint.cpp 65 static const unsigned Callee = 4;
205 Value *Callee = CS.getCalledValue();
207 visitMemoryReference(I, Callee, MemoryLocation::UnknownSize, 0, nullptr,
208 MemRef::Callee);
210 if (Function *F = dyn_cast<Function>(findValue(Callee,
213 "Undefined behavior: Caller and callee calling convention differ",
221 "Undefined behavior: Call argument count mismatches callee "
227 "callee return type",
230 // Check argument types (in case the callee was casted) and attributes.
231 // TODO: Verify that caller and callee attributes are compatible
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 396 // tracking values through callee saved registers to their eventual
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.h 207 /// operand #1 callee (register or absolute)
    [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 497 Value *Callee = Constant::getNullValue(FnTy->getPointerTo());
503 std::unique_ptr<CallInst> Call(CallInst::Create(Callee, Args, "result"));
529 Value *Callee = Constant::getNullValue(FnTy->getPointerTo());
533 CallInst::Create(Callee, Args, OldBundle, "result"));
556 Value *Callee = Constant::getNullValue(FnTy->getPointerTo());
562 Callee, NormalDest.get(), UnwindDest.get(), Args, OldBundle, "result"));
  /external/swiftshader/third_party/LLVM/lib/Analysis/
Lint.cpp 62 static unsigned Callee = 4;
194 Value *Callee = CS.getCalledValue();
196 visitMemoryReference(I, Callee, AliasAnalysis::UnknownSize,
197 0, 0, MemRef::Callee);
199 if (Function *F = dyn_cast<Function>(findValue(Callee, /*OffsetOk=*/false))) {
201 "Undefined behavior: Caller and callee calling convention differ",
210 "Undefined behavior: Call argument count mismatches callee "
215 "callee return type", &I);
217 // Check argument types (in case the callee was casted) and attributes.
218 // TODO: Verify that caller and callee attributes are compatible
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinISelLowering.cpp 282 BlackfinTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
361 // If the callee is a GlobalAddress node (quite common, every direct call is)
364 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
365 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i32);
366 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
367 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32);
372 SDValue Ops[] = { Chain, Callee, InFlag };
399 // Callee is responsible for extending any i16 return values.
  /external/swiftshader/third_party/LLVM/lib/Target/Sparc/
SparcISelLowering.cpp 349 SparcTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
557 unsigned SRetArgSize = (hasStructRetAttr)? getSRetArgSize(DAG, Callee):0;
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::i32);
564 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
565 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32);
571 Ops.push_back(Callee);
616 SparcTargetLowering::getSRetArgSize(SelectionDAG &DAG, SDValue Callee) const
619 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp 184 // callee's register window. This function translates registers to the
319 // Integer return values must be sign or zero extended by the callee.
701 static bool hasReturnsTwiceAttr(SelectionDAG &DAG, SDValue Callee,
707 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
710 dyn_cast<ExternalSymbolSDNode>(Callee)) {
732 SDValue Callee = CLI.Callee;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 702 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
706 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
709 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
713 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
IRBuilder.h 754 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
758 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
761 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
765 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
IRBuilder.h 754 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
758 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
761 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
765 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
IRBuilder.h 754 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
758 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
761 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
765 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
IRBuilder.h 754 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
758 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
761 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
765 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
IRBuilder.h 754 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
758 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
761 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
765 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
IRBuilder.h 754 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
758 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
761 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
765 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
IRBuilder.h 754 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
758 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
761 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
765 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
IRBuilder.h 754 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
758 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
761 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
765 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
    [all...]
  /external/llvm/lib/Target/Lanai/
LanaiISelLowering.cpp 401 SDValue Callee = CLI.Callee;
412 return LowerCCCCallTo(Chain, Callee, CallConv, IsVarArg, IsTailCall, Outs,
582 SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool IsVarArg,
591 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
708 // If the callee is a GlobalAddress node (quite common, every direct call is)
713 Callee = DAG.getTargetGlobalAddress(
715 } else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee)) {
716 Callee = DAG.getTargetExternalSymbol(
724 Ops.push_back(Callee);
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 388 SDValue Callee = CLI.Callee;
401 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
558 SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg,
651 // If the callee is a GlobalAddress node (quite common, every direct call is)
654 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
655 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i16);
656 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
657 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i16);
663 Ops.push_back(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 190 std::string Callee;
194 CallExprAST(const std::string &Callee,
196 : Callee(Callee), Args(std::move(Args)) {}
804 Function *CalleeF = getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 190 std::string Callee;
194 CallExprAST(const std::string &Callee,
196 : Callee(Callee), Args(std::move(Args)) {}
804 Function *CalleeF = getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 190 std::string Callee;
194 CallExprAST(const std::string &Callee,
196 : Callee(Callee), Args(std::move(Args)) {}
804 Function *CalleeF = getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 191 std::string Callee;
195 CallExprAST(const std::string &Callee,
197 : Callee(Callee), Args(std::move(Args)) {}
793 Function *CalleeF = getFunction(Callee);
    [all...]

Completed in 565 milliseconds

1 2 3 4 5 67 8 91011>>