| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | DeltaAlgorithm.cpp | 46 UpdatedSearchState(Changes, Sets); in Delta() 49 if (Sets.size() <= 1) in Delta() 54 if (Search(Changes, Sets, Res)) in Delta() 59 for (const changeset_ty &Set : Sets) in Delta() 75 changesetlist_ty Sets; in Search() local 76 Split(*it, Sets); in Search() 77 Res = Delta(*it, Sets); in Search() 83 if (Sets.size() > 2) { in Search() 108 changesetlist_ty Sets; in Run() local 109 Split(Changes, Sets); in Run() [all …]
|
| H A D | DAGDeltaAlgorithm.cpp | 117 const changesetlist_ty &Sets, in UpdatedSearchState() argument 119 DDA.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState() 162 const changesetlist_ty &Sets) override { in UpdatedSearchState() argument 163 DDAI.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | OptionsBase.td | 8 // - `Group`: Sets a single group to this option. 10 // - `Groups`: Sets a given list of group numbers. 14 // Sets group 1, 2, 3, 4 for the option. 42 // - `Arg`: Sets the argument type and marks it as required. 72 // - `Completions`: Sets a given kinds of completions. 75 // Sets the completion to 101 // - `Desc`: Sets the description for the given option. 130 // Sets the description for the option that should be 164 // Sets the available completions for the given option. 168 // Sets a single completion for the given option. [all …]
|
| /llvm-project-15.0.7/libcxx/benchmarks/ |
| H A D | ordered_set.bench.cpp | 45 std::vector<std::set<uint64_t> > Sets; member 52 R.Sets.resize(1); in makeTestingSets() 55 R.Sets[0].insert(2 * I); in makeTestingSets() 58 R.Sets.resize(NumTables, R.Sets[0]); in makeTestingSets() 92 for (auto& Set : Sets) { in run() 113 for (auto& Set : Data.Sets) { in run() 134 for (auto& Set : Data.Sets) { in run() 155 for (auto& Set : Data.Sets) { in run() 176 for (auto& Set : Data.Sets) { in run() 196 for (auto& Set : Data.Sets) { in run() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | CFLSteensAliasAnalysis.cpp | 73 StratifiedSets<InstantiatedValue> Sets; member in CFLSteensAAResult::FunctionInfo 81 return Sets; in getStratifiedSets() 119 : Sets(std::move(S)) { in FunctionInfo() 148 auto &Link = Sets.getLink(SetIndex); in FunctionInfo() 167 auto RetInfo = Sets.find(InstantiatedValue{RetVal, 0}); in FunctionInfo() 176 auto ParamInfo = Sets.find(InstantiatedValue{&Param, 0}); in FunctionInfo() 298 auto &Sets = MaybeInfo->getStratifiedSets(); in query() local 299 auto MaybeA = Sets.find(InstantiatedValue{ValA, 0}); in query() 303 auto MaybeB = Sets.find(InstantiatedValue{ValB, 0}); in query() 309 auto AttrsA = Sets.getLink(SetA.Index).Attrs; in query() [all …]
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugPubTable.cpp | 26 Sets.clear(); in extract() 30 Sets.push_back({}); in extract() 31 Set &NewSet = Sets.back(); in extract() 38 Sets.pop_back(); in extract() 94 for (const Set &S : Sets) { in dump()
|
| /llvm-project-15.0.7/polly/unittests/Support/ |
| H A D | ISLTools.cpp | 23 std::vector<isl::basic_set> Sets; in TEST() local 25 Sets.push_back(BS); in TEST() 26 EXPECT_THAT(Sets, testing::UnorderedElementsAre(A, B)); in TEST()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | DeltaAlgorithm.h | 60 const changesetlist_ty &Sets); 68 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets, 74 const changesetlist_ty &Sets) {} in UpdatedSearchState() argument
|
| H A D | DAGDeltaAlgorithm.h | 69 const changesetlist_ty &Sets, in UpdatedSearchState() argument
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugPubTable.h | 68 std::vector<Set> Sets; 82 ArrayRef<Set> getData() { return Sets; } in getData()
|
| /llvm-project-15.0.7/llvm/tools/obj2yaml/ |
| H A D | dwarf2yaml.cpp | 179 ArrayRef<DWARFDebugPubTable::Set> Sets = Table.getData(); in dumpPubSection() local 180 if (Sets.empty()) in dumpPubSection() 184 Y.Format = Sets[0].Format; in dumpPubSection() 185 Y.Length = Sets[0].Length; in dumpPubSection() 186 Y.Version = Sets[0].Version; in dumpPubSection() 187 Y.UnitOffset = Sets[0].Offset; in dumpPubSection() 188 Y.UnitSize = Sets[0].Size; in dumpPubSection() 190 for (const DWARFDebugPubTable::Entry &E : Sets[0].Entries) in dumpPubSection()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | SplitModule.cpp | 174 SmallVector<SortType, 64> Sets; in findPartitions() local 182 Sets.push_back( in findPartitions() 186 llvm::sort(Sets, [](const SortType &a, const SortType &b) { in findPartitions() 193 for (auto &I : Sets) { in findPartitions()
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | TableGen.cpp | 227 SetTheory Sets; in LLVMTableGenMain() local 228 Sets.addFieldExpander("Set", "Elements"); in LLVMTableGenMain() 231 const std::vector<Record*> *Elts = Sets.expand(Rec); in LLVMTableGenMain()
|
| /llvm-project-15.0.7/clang-tools-extra/pseudo/unittests/ |
| H A D | GrammarTest.cpp | 165 std::vector<std::pair<SymbolID, llvm::DenseSet<SymbolID>>> Sets; in TEST_F() local 167 Sets.emplace_back(ID, std::move(Input[ID])); in TEST_F() 168 return Sets; in TEST_F()
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | SymbolInterfaces.td | 42 InterfaceMethod<"Sets the name of this symbol.", 73 InterfaceMethod<"Sets the visibility of this symbol.", 79 InterfaceMethod<"Sets the visibility of this symbol to be nested.", 85 InterfaceMethod<"Sets the visibility of this symbol to be private.", 91 InterfaceMethod<"Sets the visibility of this symbol to be public.",
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-debuginfod-find/ |
| H A D | debuginfod.test | 43 # Sets the DEBUGINFOD_CACHE_PATH env var to point at the given cache_directory. 44 # Sets the DEBUGINFOD_URLS env var to point at the local server.
|
| /llvm-project-15.0.7/libc/utils/buildbot/ |
| H A D | README.txt | 4 Dockerfile: Sets up the docker image with all pre-requisites.
|
| /llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/ |
| H A D | wrappers_c.inc | 259 // Sets whether scudo records stack traces and other metadata for allocations 267 // Sets whether scudo zero-initializes all allocated memory. 273 // Sets whether scudo pattern-initializes all allocated memory. 280 // Sets whether scudo adds a small amount of slack at the end of large
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-mca/X86/BtVer2/ |
| H A D | clear-super-register-1.s | 4 ## Sets register RAX.
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-mca/X86/BdVer2/ |
| H A D | clear-super-register-1.s | 4 ## Sets register RAX.
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-mca/X86/Barcelona/ |
| H A D | clear-super-register-1.s | 4 ## Sets register RAX.
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-debuginfod/ |
| H A D | llvm-debuginfod.test | 67 # Sets the DEBUGINFOD_CACHE_PATH env var to point at the given cache_directory. 68 # Sets the DEBUGINFOD_URLS env var to point at the local server.
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | PropertiesBase.td | 8 // Sets the description for the property that should be displayed to the user.
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | SDNodeProperties.td | 29 def SDNPSideEffect : SDNodeProperty; // Sets 'HasUnmodelledSideEffects'.
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Attributes.cpp | 965 AttributeListImpl::AttributeListImpl(ArrayRef<AttributeSet> Sets) in AttributeListImpl() argument 966 : NumAttrSets(Sets.size()) { in AttributeListImpl() 967 assert(!Sets.empty() && "pointless AttributeListImpl"); in AttributeListImpl() 970 llvm::copy(Sets, getTrailingObjects<AttributeSet>()); in AttributeListImpl() 974 for (const auto &I : Sets[attrIdxToArrayIdx(AttributeList::FunctionIndex)]) in AttributeListImpl() 978 for (const auto &Set : Sets) in AttributeListImpl() 989 ArrayRef<AttributeSet> Sets) { in Profile() argument 990 for (const auto &Set : Sets) in Profile()
|