/external/clang/lib/CodeGen/ |
CGBlocks.cpp | 1131 FunctionArgList args; local 1305 FunctionArgList args; local 1444 llvm::Value *args[] = { local 1482 FunctionArgList args; local 1623 llvm::Value *args[] = { destField, srcValue, flagsVal }; variable 1769 FunctionArgList args; local 1845 FunctionArgList args; local 2236 llvm::Value *args[] = { local [all...] |
CGDecl.cpp | 503 CallArgList Args; 504 Args.add(RValue::get(Arg), 506 CGF.EmitCall(FnInfo, CleanupFn, ReturnValueSlot(), Args); [all...] |
CGException.cpp | [all...] |
CGExprCXX.cpp | 30 QualType ImplicitParamTy, const CallExpr *CE, CallArgList &Args) { 48 Args.add(RValue::get(This), MD->getThisType(CGF.getContext())); 52 Args.add(RValue::get(ImplicitParam), ImplicitParamTy); 56 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size()); 58 // And the rest of the call args. 62 CGF.EmitCallArgs(Args, FPT, CE->arg_begin() + ArgsToSkip, CE->arg_end(), 77 CallArgList Args; 80 Args); 81 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required), 82 Callee, ReturnValue, Args, MD) [all...] |
CGExprComplex.cpp | 575 CallArgList Args; 576 Args.add(RValue::get(Op.LHS.first), 578 Args.add(RValue::get(Op.LHS.second), 580 Args.add(RValue::get(Op.RHS.first), 582 Args.add(RValue::get(Op.RHS.second), 590 Op.Ty, Args, FunctionType::ExtInfo(/* No CC here - will be added later */), 596 RValue Res = CGF.EmitCall(FuncInfo, Func, ReturnValueSlot(), Args, [all...] |
CGOpenMPRuntime.cpp | [all...] |
CGStmt.cpp | [all...] |
CodeGenFunction.cpp | 357 llvm::Value *args[] = { local 362 EmitNounwindRuntimeCall(F, args); 590 const FunctionArgList &Args, 662 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end(); 717 EmitFunctionProlog(*CurFnInfo, CurFn, Args); 751 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end(); 772 void CodeGenFunction::EmitFunctionBody(FunctionArgList &Args, 830 FunctionArgList Args; [all...] |
/external/clang/lib/Parse/ |
ParseExprCXX.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaTemplateInstantiate.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTWriterStmt.cpp | 43 void AddTemplateKWAndArgsInfo(const ASTTemplateKWAndArgsInfo &Args); 53 AddTemplateKWAndArgsInfo(const ASTTemplateKWAndArgsInfo &Args) { 54 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record); 55 Writer.AddSourceLocation(Args.LAngleLoc, Record); 56 Writer.AddSourceLocation(Args.RAngleLoc, Record); 57 for (unsigned i=0; i != Args.NumTemplateArgs; ++i) 58 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record); [all...] |
/external/llvm/examples/Kaleidoscope/Chapter8/ |
toy.cpp | 280 std::vector<ExprAST *> Args; 284 std::vector<ExprAST *> &args) 285 : ExprAST(Loc), Callee(callee), Args(args) {} 288 for (ExprAST *Arg : Args) 356 std::vector<std::string> Args; 363 const std::vector<std::string> &args, bool isoperator = false, 365 : Name(name), Args(args), isOperator(isoperator), Precedence(prec), 368 bool isUnaryOp() const { return isOperator && Args.size() == 1; [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy.cpp | 180 std::vector<ExprAST*> Args; 182 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 183 : Callee(callee), Args(args) {} 223 std::vector<std::string> Args; 227 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 229 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {} 231 bool isUnaryOp() const { return isOperator && Args.size() == 1; } 232 bool isBinaryOp() const { return isOperator && Args.size() == 2; [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 199 std::vector<ExprAST*> Args; 201 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 202 : Callee(callee), Args(args) {} 242 std::vector<std::string> Args; 246 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 248 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {} 250 bool isUnaryOp() const { return isOperator && Args.size() == 1; } 251 bool isBinaryOp() const { return isOperator && Args.size() == 2; [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 157 std::vector<ExprAST*> Args; 159 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 160 : Callee(callee), Args(args) {} 200 std::vector<std::string> Args; 204 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 206 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {} 208 bool isUnaryOp() const { return isOperator && Args.size() == 1; } 209 bool isBinaryOp() const { return isOperator && Args.size() == 2; [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy.cpp | 159 std::vector<ExprAST*> Args; 161 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 162 : Callee(callee), Args(args) {} 202 std::vector<std::string> Args; 206 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 208 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {} 210 bool isUnaryOp() const { return isOperator && Args.size() == 1; } 211 bool isBinaryOp() const { return isOperator && Args.size() == 2; [all...] |
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
toy.cpp | 167 std::vector<std::unique_ptr<ExprAST>> Args) 168 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {} 173 std::vector<std::unique_ptr<ExprAST>> Args; 217 PrototypeAST(std::string Name, std::vector<std::string> Args, 219 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator), 225 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 226 bool isBinaryOp() const { return IsOperator && Args.size() == 2; } 234 std::vector<std::string> Args; [all...] |
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
toy.cpp | 166 std::vector<std::unique_ptr<ExprAST>> Args) 167 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {} 172 std::vector<std::unique_ptr<ExprAST>> Args; 216 PrototypeAST(std::string Name, std::vector<std::string> Args, 218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator), 224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; } 233 std::vector<std::string> Args; [all...] |
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
toy.cpp | 166 std::vector<std::unique_ptr<ExprAST>> Args) 167 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {} 172 std::vector<std::unique_ptr<ExprAST>> Args; 216 PrototypeAST(std::string Name, std::vector<std::string> Args, 218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator), 224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; } 233 std::vector<std::string> Args; [all...] |
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
toy.cpp | 166 std::vector<std::unique_ptr<ExprAST>> Args) 167 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {} 172 std::vector<std::unique_ptr<ExprAST>> Args; 216 PrototypeAST(std::string Name, std::vector<std::string> Args, 218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator), 224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; } 233 std::vector<std::string> Args; [all...] |
/external/llvm/include/llvm/IR/ |
IRBuilder.h | 649 Value *Args[] = { Arg1, Arg2, Arg3 }; 650 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args), 655 BasicBlock *UnwindDest, ArrayRef<Value *> Args, 657 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args), [all...] |
/external/llvm/include/llvm/TableGen/ |
Record.h | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
FastISel.cpp | 678 ArgListTy Args; 679 Args.reserve(NumArgs); 682 // Attributes for args start at offset 1, after the return attribute. 694 Args.push_back(Entry); 699 CLI.setCallee(CI->getCallingConv(), RetTy, Callee, std::move(Args), NumArgs); 709 // [Args...], 723 // Skip the four meta args: <id>, <numNopBytes>, <target>, <numArgs> [all...] |
TargetLowering.cpp | 92 TargetLowering::ArgListTy Args; 93 Args.reserve(NumOps); 101 Args.push_back(Entry); 111 .setCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0) [all...] |
/external/llvm/lib/TableGen/ |
Record.cpp | 914 std::vector<Init*> Args; 917 Args.push_back(LHSs->getArg(i)); 921 Args.push_back(RHSs->getArg(i)); 924 return DagInit::get(LHSs->getOperator(), "", Args, ArgNames); 932 std::vector<Init *> Args; 933 Args.insert(Args.end(), LHSs->begin(), LHSs->end()); 934 Args.insert(Args.end(), RHSs->begin(), RHSs->end()); 936 Args, static_cast<ListRecTy *>(LHSs->getType())->getElementType()) 1111 std::vector<std::pair<Init *, std::string> > args; local [all...] |