Home
last modified time | relevance | path

Searched refs:ArgNames (Results 1 – 22 of 22) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
Dtoy.cpp286 std::vector<std::string> ArgNames; in ParsePrototype() local
288 ArgNames.push_back(IdentifierStr); in ParsePrototype()
295 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter3/
Dtoy.cpp307 std::vector<std::string> ArgNames; in ParsePrototype() local
309 ArgNames.push_back(IdentifierStr); in ParsePrototype()
316 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp547 std::vector<std::string> ArgNames; in ParsePrototype() local
549 ArgNames.push_back(IdentifierStr); in ParsePrototype()
557 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
560 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp577 std::vector<std::string> ArgNames; in ParsePrototype() local
579 ArgNames.push_back(IdentifierStr); in ParsePrototype()
587 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
590 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
Dtoy.cpp584 std::vector<std::string> ArgNames; in ParsePrototype() local
586 ArgNames.push_back(IdentifierStr); in ParsePrototype()
594 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
597 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp618 std::vector<std::string> ArgNames; in ParsePrototype() local
620 ArgNames.push_back(IdentifierStr); in ParsePrototype()
628 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
631 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp562 std::vector<std::string> ArgNames; in ParsePrototype() local
564 ArgNames.push_back(IdentifierStr); in ParsePrototype()
572 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
575 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
Dtoy.cpp563 std::vector<std::string> ArgNames; in ParsePrototype() local
565 ArgNames.push_back(IdentifierStr); in ParsePrototype()
573 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
576 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter4/
Dtoy.cpp343 std::vector<std::string> ArgNames; in ParsePrototype() local
345 ArgNames.push_back(IdentifierStr); in ParsePrototype()
352 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp463 std::vector<std::string> ArgNames; in ParsePrototype() local
465 ArgNames.push_back(IdentifierStr); in ParsePrototype()
472 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
/external/llvm/lib/TableGen/
DRecord.cpp915 std::vector<std::string> ArgNames; in Fold() local
918 ArgNames.push_back(LHSs->getArgName(i)); in Fold()
922 ArgNames.push_back(RHSs->getArgName(i)); in Fold()
924 return DagInit::get(LHSs->getOperator(), "", Args, ArgNames); in Fold()
1611 ProfileDagInit(ID, Val, ValName, Args, ArgNames); in Profile()
1622 return DagInit::get(Op, ValName, NewArgs, ArgNames); in resolveReferences()
1634 if (!ArgNames[0].empty()) Result += ":$" + ArgNames[0]; in getAsString()
1637 if (!ArgNames[i].empty()) Result += ":$" + ArgNames[i]; in getAsString()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp195 typedef std::vector<std::string> ArgNames; typedef
217 const ArgNames &theArgNames, in createFunction()
1138 ArgNames argNames; in createCatchWrappedInvokeFunction()
1399 ArgNames unwindArgNames; in createThrowExceptionFunction()
1740 ArgNames argNames; in createStandardUtilityFunctions()
/external/llvm/include/llvm/TableGen/
DRecord.h1270 std::vector<std::string> ArgNames; variable
1277 ArgNames(NameRange.begin(), NameRange.end()) {} in DagInit()
1309 assert(Num < ArgNames.size() && "Arg number out of range!"); in getArgName()
1310 return ArgNames[Num]; in getArgName()
1326 inline const_name_iterator name_begin() const { return ArgNames.begin(); } in name_begin()
1327 inline const_name_iterator name_end () const { return ArgNames.end(); } in name_end()
1329 inline size_t name_size () const { return ArgNames.size(); } in name_size()
1330 inline bool name_empty() const { return ArgNames.empty(); } in name_empty()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp561 std::vector<std::string> ArgNames; in ParsePrototype() local
563 ArgNames.push_back(IdentifierStr); in ParsePrototype()
571 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
574 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp767 std::vector<std::string> ArgNames; in ParsePrototype() local
769 ArgNames.push_back(IdentifierStr); in ParsePrototype()
777 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
780 return new PrototypeAST(FnLoc, FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp603 std::vector<std::string> ArgNames; in ParsePrototype() local
605 ArgNames.push_back(IdentifierStr); in ParsePrototype()
613 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
616 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
Dtoy.cpp600 std::vector<std::string> ArgNames; in ParsePrototype() local
602 ArgNames.push_back(IdentifierStr); in ParsePrototype()
610 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
613 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0, in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Orc/initial/
Dtoy.cpp600 std::vector<std::string> ArgNames; in ParsePrototype() local
602 ArgNames.push_back(IdentifierStr); in ParsePrototype()
610 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
613 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0, in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
Dtoy.cpp600 std::vector<std::string> ArgNames; in ParsePrototype() local
602 ArgNames.push_back(IdentifierStr); in ParsePrototype()
610 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
613 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0, in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
Dtoy.cpp601 std::vector<std::string> ArgNames; in ParsePrototype() local
603 ArgNames.push_back(IdentifierStr); in ParsePrototype()
611 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
614 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0, in ParsePrototype()
/external/llvm/docs/tutorial/
DLangImpl6.rst200 std::vector<std::string> ArgNames;
202 ArgNames.push_back(IdentifierStr);
210 if (Kind && ArgNames.size() != Kind)
213 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
DLangImpl2.rst555 std::vector<std::string> ArgNames;
557 ArgNames.push_back(IdentifierStr);
564 return new PrototypeAST(FnName, ArgNames);