| /llvm-project-15.0.7/openmp/libomptarget/src/ |
| H A D | interface.cpp | 71 map_var_info_t *ArgNames, in __tgt_target_data_begin_mapper() argument 91 (ArgNames) ? getNameFromMapping(ArgNames[I]).c_str() : "unknown"); in __tgt_target_data_begin_mapper() 97 ArgTypes, ArgNames, ArgMappers, AsyncInfo); in __tgt_target_data_begin_mapper() 121 map_var_info_t *ArgNames, in __tgt_target_data_end_mapper() argument 140 (ArgNames) ? getNameFromMapping(ArgNames[I]).c_str() : "unknown"); in __tgt_target_data_end_mapper() 146 ArgTypes, ArgNames, ArgMappers, AsyncInfo); in __tgt_target_data_end_mapper() 160 ArgTypes, ArgNames, ArgMappers); in __tgt_target_data_end_nowait_mapper() 167 map_var_info_t *ArgNames, in __tgt_target_data_update_mapper() argument 183 ArgTypes, ArgNames, ArgMappers, AsyncInfo); in __tgt_target_data_update_mapper() 228 Args->ArgTypes, Args->ArgNames, in __tgt_target_kernel() [all …]
|
| H A D | private.h | 25 int64_t *ArgTypes, map_var_info_t *ArgNames, 31 int64_t *ArgTypes, map_var_info_t *ArgNames, 37 int64_t *ArgTypes, map_var_info_t *ArgNames, 43 int64_t *ArgTypes, map_var_info_t *ArgNames, 158 const int64_t *ArgTypes, const map_var_info_t *ArgNames, in printKernelArguments() argument 166 const map_var_info_t VarName = (ArgNames) ? ArgNames[I] : nullptr; in printKernelArguments()
|
| H A D | LegacyAPI.cpp | 77 map_var_info_t *ArgNames, void **ArgMappers) { in __tgt_target_mapper() argument 80 1, ArgNum, ArgsBase, Args, ArgSizes, ArgTypes, ArgNames, ArgMappers, -1}; in __tgt_target_mapper() 105 map_var_info_t *ArgNames, void **ArgMappers, int32_t DepNum, void *DepList, in __tgt_target_nowait_mapper() argument 110 ArgSizes, ArgTypes, ArgNames, ArgMappers); in __tgt_target_nowait_mapper() 117 map_var_info_t *ArgNames, in __tgt_target_teams_mapper() argument 123 1, ArgNum, ArgsBase, Args, ArgSizes, ArgTypes, ArgNames, ArgMappers, -1}; in __tgt_target_teams_mapper() 155 map_var_info_t *ArgNames, void **ArgMappers, int32_t NumTeams, in __tgt_target_teams_nowait_mapper() argument 161 Args, ArgSizes, ArgTypes, ArgNames, in __tgt_target_teams_nowait_mapper()
|
| H A D | omptarget.cpp | 382 ArgNames); in targetDataMapper() 414 int64_t *ArgTypes, map_var_info_t *ArgNames, in targetDataBegin() argument 430 map_var_info_t ArgName = (!ArgNames) ? nullptr : ArgNames[I]; in targetDataBegin() 448 map_var_info_t HstPtrName = (!ArgNames) ? nullptr : ArgNames[I]; in targetDataBegin() 679 int64_t *ArgTypes, map_var_info_t *ArgNames, in targetDataEnd() argument 698 map_var_info_t ArgName = (!ArgNames) ? nullptr : ArgNames[I]; in targetDataEnd() 1035 int64_t *ArgTypes, map_var_info_t *ArgNames, in targetDataUpdate() argument 1049 map_var_info_t ArgName = (!ArgNames) ? nullptr : ArgNames[I]; in targetDataUpdate() 1393 map_var_info_t HstPtrName = (!ArgNames) ? nullptr : ArgNames[I]; in processDataBefore() 1464 ArgTypes, ArgNames, ArgMappers, AsyncInfo); in processDataAfter() [all …]
|
| /llvm-project-15.0.7/openmp/libomptarget/include/ |
| H A D | omptarget.h | 120 void **ArgNames; // Name of the data for debugging, possibly null. member 279 int64_t *ArgTypes, map_var_info_t *ArgNames, 283 void **Args, int64_t *ArgSizes, int64_t *ArgTypes, map_var_info_t *ArgNames, 300 map_var_info_t *ArgNames, void **ArgMappers); 303 void **Args, int64_t *ArgSizes, int64_t *ArgTypes, map_var_info_t *ArgNames, 321 map_var_info_t *ArgNames, 325 void **Args, int64_t *ArgSizes, int64_t *ArgTypes, map_var_info_t *ArgNames,
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | SuspiciousCallArgumentCheck.cpp | 651 if (ArgNames.empty()) in check() 710 ArgNames.clear(); in setArgNamesAndTypes() 716 ArgNames.size() == ArgTypes.size() && in setArgNamesAndTypes() 723 ArgNames.push_back(Var->getName()); in setArgNamesAndTypes() 729 ArgNames.push_back(FCall->getName()); in setArgNamesAndTypes() 736 ArgNames.push_back(StringRef()); in setArgNamesAndTypes() 742 if (Position1 >= ArgNames.size() || Position2 >= ArgNames.size()) in areParamAndArgComparable() 746 if (ArgNames[Position1].size() < MinimumIdentifierNameLength || in areParamAndArgComparable() 747 ArgNames[Position2].size() < MinimumIdentifierNameLength || in areParamAndArgComparable() 768 !areNamesSimilar(ArgNames[Position1], ParamNames[Position1], H, in areArgsSwapped() [all …]
|
| H A D | SuspiciousCallArgumentCheck.h | 78 SmallVector<StringRef, SmallVectorSize> ArgNames; variable
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter2/ |
| H A D | toy.cpp | 330 std::vector<std::string> ArgNames; in ParsePrototype() local 332 ArgNames.push_back(IdentifierStr); in ParsePrototype() 339 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter3/ |
| H A D | toy.cpp | 357 std::vector<std::string> ArgNames; in ParsePrototype() local 359 ArgNames.push_back(IdentifierStr); in ParsePrototype() 366 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter4/ |
| H A D | toy.cpp | 367 std::vector<std::string> ArgNames; in ParsePrototype() local 369 ArgNames.push_back(IdentifierStr); in ParsePrototype() 376 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| H A D | toy-jit.cpp | 577 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()
|
| H A D | toy.cpp | 584 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()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter6/ |
| H A D | toy.cpp | 581 std::vector<std::string> ArgNames; in ParsePrototype() local 583 ArgNames.push_back(IdentifierStr); in ParsePrototype() 591 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 594 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| H A D | toy-jit.cpp | 562 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()
|
| H A D | toy.cpp | 563 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()
|
| /llvm-project-15.0.7/llvm/examples/ExceptionDemo/ |
| H A D | ExceptionDemo.cpp | 143 typedef std::vector<std::string> ArgNames; typedef 165 const ArgNames &theArgNames, in createFunction() 1087 ArgNames argNames; in createCatchWrappedInvokeFunction() 1349 ArgNames unwindArgNames; in createThrowExceptionFunction() 1690 ArgNames argNames; in createStandardUtilityFunctions()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
| H A D | toy.cpp | 649 std::vector<std::string> ArgNames; in ParsePrototype() local 651 ArgNames.push_back(IdentifierStr); in ParsePrototype() 659 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 662 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter8/ |
| H A D | toy.cpp | 655 std::vector<std::string> ArgNames; in ParsePrototype() local 657 ArgNames.push_back(IdentifierStr); in ParsePrototype() 665 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 668 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| H A D | toy.cpp | 632 std::vector<std::string> ArgNames; in ParsePrototype() local 634 ArgNames.push_back(IdentifierStr); in ParsePrototype() 642 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 645 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter7/ |
| H A D | toy.cpp | 654 std::vector<std::string> ArgNames; in ParsePrototype() local 656 ArgNames.push_back(IdentifierStr); in ParsePrototype() 664 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 667 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
| H A D | toy.cpp | 649 std::vector<std::string> ArgNames; in ParsePrototype() local 651 ArgNames.push_back(IdentifierStr); in ParsePrototype() 659 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 662 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
| H A D | toy.cpp | 649 std::vector<std::string> ArgNames; in ParsePrototype() local 651 ArgNames.push_back(IdentifierStr); in ParsePrototype() 659 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 662 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/initial/ |
| H A D | toy.cpp | 561 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()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter5/ |
| H A D | toy.cpp | 494 std::vector<std::string> ArgNames; in ParsePrototype() local 496 ArgNames.push_back(IdentifierStr); in ParsePrototype() 503 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter9/ |
| H A D | toy.cpp | 769 std::vector<std::string> ArgNames; in ParsePrototype() local 771 ArgNames.push_back(IdentifierStr); in ParsePrototype() 779 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 782 return std::make_unique<PrototypeAST>(FnLoc, FnName, ArgNames, Kind != 0, in ParsePrototype()
|