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

1 2 3 4 5 6 78 91011>>

  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 206 std::string Callee;
210 CallExprAST(const std::string &Callee,
212 : Callee(Callee), Args(std::move(Args)) {}
815 Function *CalleeF = getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 183 std::string Callee;
187 CallExprAST(const std::string &Callee,
189 : Callee(Callee), Args(std::move(Args)) {}
700 Function *CalleeF = getFunction(Callee);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 190 std::string Callee;
194 CallExprAST(const std::string &Callee,
196 : Callee(Callee), Args(std::move(Args)) {}
805 Function *CalleeF = getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 187 std::string Callee;
191 CallExprAST(const std::string &Callee,
193 : Callee(Callee), Args(std::move(Args)) {}
800 Function *CalleeF = getFunction(Callee);
    [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 183 const FunctionDecl *Callee =
185 return Callee ? Callee->isConstexpr() : false;
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 216 // Make sure the call and the callee agree on calling convention.
586 llvm::Value *Callee = DtorsAndObjects[e - i - 1].first;
587 llvm::CallInst *CI = Builder.CreateCall(Callee,
589 // Make sure the call and the callee agree on calling convention.
590 if (llvm::Function *F = dyn_cast<llvm::Function>(Callee))
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 134 std::string Callee;
137 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
138 : Callee(callee), Args(args) {}
493 Function *CalleeF = TheModule->getFunction(Callee);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 149 std::string Callee;
152 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
153 : Callee(callee), Args(args) {}
597 Function *CalleeF = TheModule->getFunction(Callee);
  /external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
GlobalsModRef.cpp 420 if (Function *Callee = CI->second->getFunction()) {
421 if (FunctionRecord *CalleeFR = getFunctionInfo(Callee)) {
425 // Incorporate callee's effects on globals into our info.
434 CallGraphNode *CalleeNode = CG[Callee];
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 417 const Function *Callee) const {
419 Callee->getFnAttribute("target-cpu")) &&
421 Callee->getFnAttribute("target-features"));
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 417 const Function *Callee) const {
419 Callee->getFnAttribute("target-cpu")) &&
421 Callee->getFnAttribute("target-features"));
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 417 const Function *Callee) const {
419 Callee->getFnAttribute("target-cpu")) &&
421 Callee->getFnAttribute("target-features"));
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 417 const Function *Callee) const {
419 Callee->getFnAttribute("target-cpu")) &&
421 Callee->getFnAttribute("target-features"));
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 417 const Function *Callee) const {
419 Callee->getFnAttribute("target-cpu")) &&
421 Callee->getFnAttribute("target-features"));
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 417 const Function *Callee) const {
419 Callee->getFnAttribute("target-cpu")) &&
421 Callee->getFnAttribute("target-features"));
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 417 const Function *Callee) const {
419 Callee->getFnAttribute("target-cpu")) &&
421 Callee->getFnAttribute("target-features"));
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 417 const Function *Callee) const {
419 Callee->getFnAttribute("target-cpu")) &&
421 Callee->getFnAttribute("target-features"));
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 277 std::string Callee;
281 CallExprAST(SourceLocation Loc, const std::string &Callee,
283 : ExprAST(Loc), Callee(Callee), Args(std::move(Args)) {}
286 ExprAST::dump(out << "call " << Callee, ind);
982 Function *CalleeF = getFunction(Callee);
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 888 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
890 CallInst *CI = B.CreateCall(Callee, Op, Name);
892 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
904 Value *Callee = M->getOrInsertFunction(Name, Op1->getType(), Op1->getType(),
906 CallInst *CI = B.CreateCall(Callee, {Op1, Op2}, Name);
908 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeISelLowering.cpp 683 LowerCall(SDValue Chain, SDValue Callee, CallingConv::ID CallConv,
789 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
792 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
793 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
795 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
796 Callee = DAG.getTargetExternalSymbol(S->getSymbol(),
800 // = Chain, Callee, Reg#1, Reg#2, ...
806 Ops.push_back(Callee);
    [all...]
  /external/llvm/include/llvm/IR/
Attributes.h 602 bool areInlineCompatible(const Function &Caller, const Function &Callee);
604 /// \brief Merge caller's and callee's attributes.
605 void mergeAttributesForInlining(Function &Caller, const Function &Callee);
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 416 const Function *Callee) const {
417 return TTIImpl->areInlineCompatible(Caller, Callee);
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 350 if (Function *Callee = II->getCalledFunction())
351 if (Callee->getIntrinsicID() == Intrinsic::donothing) {
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 64 // Inserts a simple function that invokes Callee and takes the same arguments:
65 // int Caller(...) { return Callee(...); }
67 Function *insertSimpleCallFunction(Module *M, Function *Callee) {
75 Value *ReturnCode = Builder.CreateCall(Callee, CallArgs);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
builder_misc.cpp 319 CallInst *Builder::CALL(Value *Callee, const std::initializer_list<Value*> &argsList)
324 return CALLA(Callee, args);
328 CallInst *Builder::CALL(Value *Callee, Value* arg)
332 return CALLA(Callee, args);
335 CallInst *Builder::CALL2(Value *Callee, Value* arg1, Value* arg2)
340 return CALLA(Callee, args);
343 CallInst *Builder::CALL3(Value *Callee, Value* arg1, Value* arg2, Value* arg3)
349 return CALLA(Callee, args);
    [all...]

Completed in 664 milliseconds

1 2 3 4 5 6 78 91011>>