| /llvm-project-15.0.7/llvm/include/llvm/Target/GlobalISel/ |
| H A D | Combine.td | 215 (defs root:$root), 221 (defs root:$root), 227 (defs root:$root), 233 (defs root:$root), 239 (defs root:$root), 247 (defs root:$root), 255 (defs root:$root), 262 (defs root:$root), 269 (defs root:$root), 277 (defs root:$root), [all …]
|
| /llvm-project-15.0.7/libcxx/test/libcxx/containers/associative/ |
| H A D | tree_remove.pass.cpp | 40 Node root; in test1() local 105 Node root; in test1() local 170 Node root; in test1() local 246 Node root; in test1() local 325 Node root; in test2() local 390 Node root; in test2() local 455 Node root; in test2() local 520 Node root; in test2() local 585 Node root; in test2() local 1109 Node root; in test3() local [all …]
|
| H A D | tree_balance_after_insert.pass.cpp | 38 Node root; in test1() local 93 Node root; in test1() local 148 Node root; in test1() local 203 Node root; in test1() local 258 Node root; in test1() local 333 Node root; in test1() local 408 Node root; in test1() local 483 Node root; in test1() local 563 Node root; in test2() local 1036 Node root; in test4() local [all …]
|
| H A D | tree_right_rotate.pass.cpp | 36 Node root; in test1() local 39 root.__left_ = &x; in test1() 42 x.__parent_ = &root; in test1() 47 assert(root.__parent_ == 0); in test1() 48 assert(root.__left_ == &y); in test1() 49 assert(root.__right_ == 0); in test1() 61 Node root; in test2() local 67 root.__left_ = &x; in test2() 70 x.__parent_ = &root; in test2() 79 assert(root.__left_ == &y); in test2() [all …]
|
| H A D | tree_left_rotate.pass.cpp | 36 Node root; in test1() local 39 root.__left_ = &x; in test1() 42 x.__parent_ = &root; in test1() 47 assert(root.__parent_ == 0); in test1() 48 assert(root.__left_ == &y); in test1() 49 assert(root.__right_ == 0); in test1() 61 Node root; in test2() local 67 root.__left_ = &x; in test2() 70 x.__parent_ = &root; in test2() 79 assert(root.__left_ == &y); in test2() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | AArch64Combine.td | 15 (defs root:$root), 58 (defs root:$root, shuffle_matchdata:$matchinfo), 65 (defs root:$root, shuffle_matchdata:$matchinfo), 72 (defs root:$root, shuffle_matchdata:$matchinfo), 79 (defs root:$root, shuffle_matchdata:$matchinfo), 86 (defs root:$root, shuffle_matchdata:$matchinfo), 93 (defs root:$root, shuffle_matchdata:$matchinfo), 138 (defs root:$root), 156 (defs root:$root, mul_const_matchdata:$matchinfo), 163 (defs root:$root), [all …]
|
| /llvm-project-15.0.7/polly/lib/External/isl/imath/tests/ |
| H A D | root.tc | 3 # Square root tests 21 root:0,1,0:0 22 root:0,1,=1:0 23 root:0,5,0:0 24 root:0,5,=1:0 25 root:-1,5,0:-1 28 root:-8,3,0:-2 30 root:17,2,0:4 31 root:17,3,0:2 32 root:29,2,0:5 [all …]
|
| /llvm-project-15.0.7/mlir/test/Rewrite/ |
| H A D | pdl-bytecode.mlir | 29 pdl_interp.erase %root 59 pdl_interp.erase %root 124 pdl_interp.erase %root 187 pdl_interp.erase %root 221 pdl_interp.erase %root 252 pdl_interp.erase %root 290 pdl_interp.erase %root 323 pdl_interp.erase %root 358 pdl_interp.erase %root 392 pdl_interp.erase %root [all …]
|
| /llvm-project-15.0.7/lldb/examples/scripting/ |
| H A D | tree_utils.py | 24 def DFS(root, word, cur_path): argument 40 root_word_ptr = root.GetChildMemberWithName("word") 79 def tree_size(root): argument 88 if (root.GetValue is None): 91 if (int(root.GetValue(), 16) == 0): 94 left_size = tree_size(root.GetChildAtIndex(1)) 95 right_size = tree_size(root.GetChildAtIndex(2)) 101 def print_tree(root): argument 113 print_tree(root.GetChildAtIndex(1)) 115 print(root.GetChildAtIndex(0).GetSummary()) [all …]
|
| /llvm-project-15.0.7/mlir/test/python/dialects/ |
| H A D | pdl_ops.py | 38 RewriteOp(root, "rewriter") 133 rewrite = RewriteOp(root) 156 rewrite = RewriteOp(root) 176 rewrite = RewriteOp(root) 198 rewrite = RewriteOp(root) 214 root = OperationOp() 215 rewrite = RewriteOp(root) 232 root = OperationOp() 233 rewrite = RewriteOp(root) 250 root = OperationOp() [all …]
|
| /llvm-project-15.0.7/mlir/test/Conversion/PDLToPDLInterp/ |
| H A D | pdl-to-pdl-interp-rewriter.mlir | 27 rewrite %root { 28 erase %root 44 rewrite %root { 47 erase %root 64 rewrite %root { 69 erase %root 87 rewrite %root { 106 rewrite %root { 122 rewrite %root { 143 rewrite %root { [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/Reproducer/Modules/ |
| H A D | TestModuleCXX.test | 5 # RUN: rm -rf %t.root 9 # Create a temporary root we can remove later. 10 # RUN: mkdir -p %t.root 13 # RUN: cp %S/Inputs/main.cpp %t.root 14 # RUN: cp %S/Inputs/Foo.h %t.root 15 # RUN: cp %S/Inputs/Bar.h %t.root 16 # RUN: cp %S/Inputs/module.modulemap %t.root 18 # Compile the test case form the temporary root. 19 # RUN: %clang_host %t.root/main.cpp -g -fmodules -fcxx-modules -fmodules-cache-path=%t.clang-cache … 30 # Remove the temporary root. [all …]
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/recursion/ |
| H A D | main.cpp | 13 void make_tree(node* root, int count) in make_tree() argument 16 if (!root) in make_tree() 18 root->value = countdown; in make_tree() 21 root->next = new node(++countdown); in make_tree() 22 root = root->next; in make_tree() 29 node root(1); in main() local 30 make_tree(&root,25000); in main()
|
| /llvm-project-15.0.7/mlir/test/Dialect/PDL/ |
| H A D | ops.mlir | 16 rewrite %root with "rewriter" 65 rewrite %root { 68 replace %root with %newOp 80 rewrite %root { 92 rewrite %root { 108 rewrite %root { 121 rewrite %root { 129 %root = operation 130 rewrite %root { 138 %root = operation [all …]
|
| /llvm-project-15.0.7/mlir/lib/TableGen/ |
| H A D | Predicate.cpp | 159 buildPredicateTree(const Pred &root, in buildPredicateTree() argument 165 rootNode->predicate = &root; in buildPredicateTree() 166 if (!root.isCombined()) { in buildPredicateTree() 167 rootNode->expr = root.getCondition(); in buildPredicateTree() 318 if (root.kind == PredCombinerKind::Leaf) in getCombinedCondition() 319 return root.expr; in getCombinedCondition() 328 for (const auto &child : root.children) in getCombinedCondition() 332 if (root.kind == PredCombinerKind::And) in getCombinedCondition() 334 if (root.kind == PredCombinerKind::Or) in getCombinedCondition() 336 if (root.kind == PredCombinerKind::Not) in getCombinedCondition() [all …]
|
| /llvm-project-15.0.7/libunwind/test/configs/ |
| H A D | apple-libunwind-backdeployment.cfg.in | 16 actions=lambda root: [libcxx.test.dsl.AddSubstitution('%{cxx-runtime-root}', root)], 18 The simulated root of the system (for libc++) when running tests. 25 actions=lambda root: [libcxx.test.dsl.AddSubstitution('%{abi-runtime-root}', root)], 27 The simulated root of the system (for libc++abi) when running tests. 34 actions=lambda root: [libcxx.test.dsl.AddSubstitution('%{unwind-runtime-root}', root)], 36 The simulated root of the system (for libunwind) when running tests. 54 … --execdir %T --env DYLD_LIBRARY_PATH="%{cxx-runtime-root}:%{abi-runtime-root}:%{unwind-runtime-ro…
|
| /llvm-project-15.0.7/libcxxabi/test/configs/ |
| H A D | apple-libc++abi-backdeployment.cfg.in | 16 actions=lambda root: [libcxx.test.dsl.AddSubstitution('%{cxx-runtime-root}', root)], 18 The simulated root of the system (for libc++) when running tests. 25 actions=lambda root: [libcxx.test.dsl.AddSubstitution('%{abi-runtime-root}', root)], 27 The simulated root of the system (for libc++abi) when running tests. 34 actions=lambda root: [libcxx.test.dsl.AddSubstitution('%{unwind-runtime-root}', root)], 36 The simulated root of the system (for libunwind) when running tests. 55 … --execdir %T --env DYLD_LIBRARY_PATH="%{cxx-runtime-root}:%{abi-runtime-root}:%{unwind-runtime-ro…
|
| /llvm-project-15.0.7/libcxx/test/configs/ |
| H A D | apple-libc++-backdeployment.cfg.in | 16 actions=lambda root: [libcxx.test.dsl.AddSubstitution('%{cxx-runtime-root}', root)], 18 The simulated root of the system (for libc++) when running tests. 25 actions=lambda root: [libcxx.test.dsl.AddSubstitution('%{abi-runtime-root}', root)], 27 The simulated root of the system (for libc++abi) when running tests. 34 actions=lambda root: [libcxx.test.dsl.AddSubstitution('%{unwind-runtime-root}', root)], 36 The simulated root of the system (for libunwind) when running tests. 54 … --execdir %T --env DYLD_LIBRARY_PATH="%{cxx-runtime-root}:%{abi-runtime-root}:%{unwind-runtime-ro…
|
| /llvm-project-15.0.7/lldb/unittests/Host/ |
| H A D | XMLTest.cpp | 16 static void assertGetElement(XMLNode &root, const char *element_name, in assertGetElement() argument 20 XMLNode node = root.FindFirstChildElementWithName(element_name); in assertGetElement() 33 XMLNode attr_node = root.FindFirstChildElementWithName("attr"); in assertGetElement() 45 assertGetElement(root, element_name, __VA_ARGS__); \ 76 XMLNode root = doc.GetRootElement(); in TEST() local 77 ASSERT_TRUE(root.IsValid()); in TEST() 102 XMLNode root = doc.GetRootElement(); in TEST() local 103 EXPECT_FALSE(root.IsValid()); in TEST() 105 XMLNode node = root.FindFirstChildElementWithName("text"); in TEST()
|
| /llvm-project-15.0.7/llvm/test/ExecutionEngine/MCJIT/ |
| H A D | lit.local.cfg | 1 root = config.root 2 targets = root.targets 11 if root.host_arch not in ['i386', 'x86', 'x86_64', 'AMD64', 16 if 'armv7' in root.host_arch: 19 if 'i386-apple-darwin' in root.target_triple: 22 if 'powerpc' in root.target_triple and not 'powerpc64' in root.target_triple:
|
| /llvm-project-15.0.7/polly/lib/External/isl/ |
| H A D | isl_test_python.py | 280 root = schedule.root() 288 root = root.map_descendant_bottom_up(inc_count) 296 root.map_descendant_bottom_up(fail_map) 305 root.foreach_descendant_top_down(inc_count) 312 root.foreach_descendant_top_down(inc_count) 324 root.every_descendant(fail) 329 domain = root.domain() 335 root.every_descendant(collect_filters) 345 root = schedule.root() 350 root = root.map_descendant_bottom_up(mark_unroll) [all …]
|
| /llvm-project-15.0.7/libcxxabi/test/ |
| H A D | dynamic_cast.pass.cpp | 66 Root root; variable 67 Src *src = &root; 71 assert(dynamic_cast<Src*>(src) == static_cast<Src*>(&root)); in test() 72 assert(dynamic_cast<Mask*>(src) == static_cast<Mask*>(&root)); in test() 73 assert(dynamic_cast<Dest*>(src) == static_cast<Dest*>(&root)); in test() 74 assert(dynamic_cast<Root*>(src) == static_cast<Root*>(&root)); in test() 140 Root root; variable 141 Src *src = &root; 146 assert(dynamic_cast<Src*>(src) == static_cast<Src*>(&root)); in test() 148 assert(dynamic_cast<A1*>(src) == static_cast<A1*>(&root)); in test() [all …]
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | Reproducer.cpp | 26 llvm::Optional<FileSpec> root) { in Initialize() argument 32 if (!root) { in Initialize() 38 root.emplace(repro_dir); in Initialize() 40 auto ec = sys::fs::create_directory(root->GetPath()); in Initialize() 45 return Instance().SetCapture(root); in Initialize() 101 if (root && m_loader) in SetCapture() 106 if (!root) { in SetCapture() 111 m_generator.emplace(*root); in SetCapture() 130 Generator::Generator(FileSpec root) : m_root(MakeAbsolute(std::move(root))) { in Generator() argument 199 Loader::Loader(FileSpec root, bool passive) in Loader() argument [all …]
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | ValueObject.cpp | 402 root = root->GetChildAtIndex(idx, true); in GetChildAtIndexPath() 409 return root; in GetChildAtIndexPath() 418 root = root->GetChildAtIndex(idx.first, idx.second); in GetChildAtIndexPath() 425 return root; in GetChildAtIndexPath() 435 root = root->GetChildMemberWithName(name, true); in GetChildAtNamePath() 2063 if (!root) in GetValueForExpressionPath_Impl() 2387 root = root->Dereference(error); in GetValueForExpressionPath_Impl() 2439 root = root->GetChildAtIndex(index, true); in GetValueForExpressionPath_Impl() 2458 root = root->GetSyntheticValue(); in GetValueForExpressionPath_Impl() 2474 root = root->GetChildAtIndex(index, true); in GetValueForExpressionPath_Impl() [all …]
|
| /llvm-project-15.0.7/libcxx/utils/ |
| H A D | graph_header_deps.py | 36 def list_all_roots_under(root): argument 38 for root, _, files in os.walk(root): 45 result.append(root + '/' + fname) 175 if options.root is None: 177 options.root = os.path.join(curr_dir, '../include') 180 options.search_dirs = [options.root] 182 options.root = os.path.abspath(options.root) 185 if os.path.isdir(options.root): 186 roots = list_all_roots_under(options.root) 187 elif os.path.isfile(options.root): [all …]
|