Home
last modified time | relevance | path

Searched refs:nested (Results 1 – 25 of 486) sorted by relevance

12345678910>>...20

/llvm-project-15.0.7/llvm/test/Analysis/BasicAA/
H A Dnoalias-bugs.ll10 %nested = type { %nested.i64 }
11 %nested.i64 = type { i64 }
13 define i64 @testcase(%nested * noalias %p1, %nested * noalias %p2,
15 %ptr = getelementptr inbounds %nested, %nested* %p1, i64 -1, i32 0
16 %ptr.64 = getelementptr inbounds %nested.i64, %nested.i64* %ptr, i64 0, i32 0
17 %ptr2= getelementptr inbounds %nested, %nested* %p2, i64 0, i32 0
19 %either_ptr = select i1 %cmp, %nested.i64* %ptr2, %nested.i64* %ptr
20 %either_ptr.64 = getelementptr inbounds %nested.i64, %nested.i64* %either_ptr, i64 0, i32 0
/llvm-project-15.0.7/mlir/test/Transforms/
H A Dtest-symbol-dce.mlir12 func.func nested @dead_nested_function()
17 // CHECK: func nested @live_nested_function
18 func.func nested @live_nested_function()
30 module attributes {test.nested} {
34 func.func nested @dead_nested_function()
39 // CHECK: func nested @nested_function
40 func.func nested @nested_function() {
56 // NESTED: func nested @nested_function
57 func.func nested @nested_function()
62 func.func nested @nested_function()
[all …]
H A Dsccp-callgraph.mlir28 /// results of a visible nested function.
30 // CHECK: func nested @nested(
31 func.func nested @nested(%arg0 : i32) -> i32 {
44 %result = call @nested(%1) : (i32) -> i32
50 /// Check that non-visible nested functions do not track arguments.
55 // NESTED: func nested @nested(
56 func.func nested @nested(%arg0 : i32) -> (i32, i32) {
67 // NESTED: %[[CALL:.*]]:2 = call @nested
71 %result:2 = call @nested(%1) : (i32) -> (i32, i32)
/llvm-project-15.0.7/polly/lib/External/isl/
H A Disl_space.c515 nested = space->nested[pos]; in isl_space_take_nested()
541 space->nested[pos] = nested; in isl_space_restore_nested()
1652 nested = space->nested[0]; in isl_space_domain_factor_domain()
1663 if (nested->nested[0]) { in isl_space_domain_factor_domain()
1688 nested = space->nested[0]; in isl_space_domain_factor_range()
1698 if (nested->nested[1]) { in isl_space_domain_factor_range()
1699 range->nested[0] = isl_space_copy(nested->nested[1]); in isl_space_domain_factor_range()
1725 nested = space->nested[1]; in range_factor_domain()
1736 if (nested->nested[0]) { in range_factor_domain()
1811 if (nested->nested[1]) { in range_factor_range()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Affine/Analysis/
H A DNestedMatcher.cpp44 if (nested.empty()) in copyNestedToThis()
48 std::uninitialized_copy(nested.begin(), nested.end(), newNested); in copyNestedToThis()
57 NestedPattern::NestedPattern(ArrayRef<NestedPattern> nested, in NestedPattern() argument
60 copyNestedToThis(nested); in NestedPattern()
147 NestedPattern If(ArrayRef<NestedPattern> nested) { in If() argument
148 return NestedPattern(nested, isAffineIfOp); in If()
151 ArrayRef<NestedPattern> nested) { in If() argument
152 return NestedPattern(nested, [filter](Operation &op) { in If()
165 NestedPattern For(ArrayRef<NestedPattern> nested) { in For() argument
166 return NestedPattern(nested, isAffineForOp); in For()
[all …]
/llvm-project-15.0.7/llvm/test/tools/llvm-rc/
H A Dinclude-paths.test12 ; RUN: rm -f %t.nested-include.res
13 ; RUN: llvm-rc -no-preprocess /FO %t.nested-include.res /I %p/Inputs/nested -- %p/Inputs/deep-inclu…
14 ; RUN: llvm-readobj %t.nested-include.res | FileCheck --check-prefix=FOUND %s
17 ; RUN: rm -f %t.nested-include.res
18 ; RUN: env INCLUDE=%p/Inputs/nested llvm-rc -no-preprocess /FO %t.nested-include.res -- %p/Inputs/d…
19 ; RUN: llvm-readobj %t.nested-include.res | FileCheck --check-prefix=FOUND %s
22 ; RUN: rm -f %t.nested-include.res
23 ; RUN: not env INCLUDE=%p/Inputs/nested llvm-rc -no-preprocess /X /FO %t.nested-include.res -- %p/I…
27 ; RUN: rm -f %t.nested-include.res
35 ; RUN: rm -f %t.nested-include.res
[all …]
/llvm-project-15.0.7/flang/test/Semantics/
H A Dcall01.f9021 res = nested()
24 integer function nested function
26 nested = n * f02(n-1) ! 15.6.2.1(3)
27 end function nested
111 res = nested()
114 character(1) function nested function
117 nested = f14(n-1) ! 15.6.2.1(3)
118 end function nested
/llvm-project-15.0.7/mlir/test/IR/
H A Dprint-ir-nesting.mlir4 // CHECK: 1 nested regions:
13 // CHECK: 0 nested regions:
18 // CHECK: 2 nested regions:
24 // CHECK: 0 nested regions:
32 // CHECK: 0 nested regions:
35 // CHECK: 0 nested regions:
40 // CHECK: 0 nested regions:
43 // CHECK: 0 nested regions:
48 // CHECK: 0 nested regions:
51 // CHECK: 0 nested regions:
H A Dtest-symbol-uses.mlir12 // expected-remark@below {{symbol contains 2 nested references}}
36 // Test nested attribute support
43 func.func nested @foo()
48 // expected-remark@below {{symbol contains 2 nested references}}
64 // expected-remark@+1 {{contains an unknown nested operation that 'may' define a new symbol table}}
H A Dtest-symbol-rauw.mlir35 // Check the support for nested references.
41 // CHECK: func nested @replaced_foo
42 func.func nested @foo() attributes {sym.new_name = "replaced_foo" }
49 // CHECK: func nested @replaced_foo
50 func.func nested @foo() attributes {sym.new_name = "replaced_foo" }
/llvm-project-15.0.7/llvm/test/tools/llvm-ar/
H A Dwindows-path.test36 RUN: rm -f a\nested.a b\nested.a nested.a
37 RUN: llvm-ar rcST a\nested.a a\foo.txt
38 RUN: llvm-ar rcST b\nested.a b\foo.txt
39 RUN: llvm-ar rcST nested.a a\nested.a foo.txt b\nested.a
40 RUN: llvm-ar t nested.a | FileCheck %s --check-prefix=NESTED --implicit-check-not {{.}}
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.join.view/
H A Dadaptor.pass.cpp45 …Foo nested[2][3][3] = {{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}, {{10, 11, 12}, {13, 14, 15}, {16, 17, 18… in test() local
71 auto jv = std::views::join(nested); in test()
77 assert(&(*jv2.begin()) == &nested[0][0][0]); in test()
106 auto jv = nested | std::views::join | std::views::join; in test()
109 assert(&(*jv.begin()) == &nested[0][0][0]); in test()
110 static_assert(CanBePiped<decltype((nested)), decltype((std::views::join))>); in test()
116 auto jv = nested | join_twice; in test()
119 assert(&(*jv.begin()) == &nested[0][0][0]); in test()
120 static_assert(CanBePiped<decltype((nested)), decltype((join_twice))>); in test()
/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Dnullability-consistency-arrays.mm1 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type %s …
2 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type %s …
3 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type %s …
4 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type -x …
5 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type -x …
6 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type -x …
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Affine/Analysis/
H A DNestedMatcher.h94 NestedPattern(ArrayRef<NestedPattern> nested,
121 void copyNestedToThis(ArrayRef<NestedPattern> nested);
180 NestedPattern If(ArrayRef<NestedPattern> nested = {});
182 ArrayRef<NestedPattern> nested = {});
185 NestedPattern For(ArrayRef<NestedPattern> nested = {});
187 ArrayRef<NestedPattern> nested = {});
/llvm-project-15.0.7/compiler-rt/test/tsan/Darwin/
H A Dobjc-synchronize-nested-recursive.mm13 NSLog(@"nested 1-1");
14 // CHECK: nested 1-1
22 NSLog(@"nested 1-2-1-2");
23 // CHECK: nested 1-2-1-2
/llvm-project-15.0.7/mlir/docs/Tutorials/
H A DUnderstandingTheIRStructure.md25 The IR is recursively nested, an `Operation` can have one or multiple nested
120 1 nested regions:
126 0 nested regions:
128 2 nested regions:
132 0 nested regions:
136 0 nested regions:
138 0 nested regions:
141 0 nested regions:
143 0 nested regions:
146 0 nested regions:
[all …]
/llvm-project-15.0.7/mlir/test/lib/IR/
H A DTestDominance.cpp41 operation->walk([&](Operation *nested) { in DominanceTest() argument
42 if (blockIds.count(nested->getBlock()) > 0) in DominanceTest()
44 blockIds.insert({nested->getBlock(), blockIds.size()}); in DominanceTest()
59 operation->walk([&](Operation *nested) { in printDominance() argument
60 Block *nestedBlock = nested->getBlock(); in printDominance()
/llvm-project-15.0.7/mlir/test/mlir-tblgen/
H A Dop-format.mlir265 // CHECK: module attributes {test.nested = #test.cmpnd_nested<nested = <1, !test.smpla, [5, 6]>>}…
266 module attributes {test.nested = #test.cmpnd_nested<nested = <1, !test.smpla, [5, 6]>>} {
272 // CHECK: module attributes {test.nested = #test.cmpnd_nested<nested = <1, !test.smpla, [5, 6]>>}…
273 module attributes {test.nested = #test.cmpnd_nested<nested = #test.cmpnd_a<1, !test.smpla, [5, 6]>>…
276 // CHECK: test.format_nested_attr <nested = <1, !test.smpla, [5, 6]>>
277 test.format_nested_attr #test.cmpnd_nested<nested = <1, !test.smpla, [5, 6]>>
282 // CHECK: test.format_nested_attr <nested = <1, !test.smpla, [5, 6]>>
283 test.format_nested_attr #test.cmpnd_nested<nested = #test.cmpnd_a<1, !test.smpla, [5, 6]>>
301 // CHECK: test.format_cpmd_nested_attr nested <i <42 <1, !test.smpla, [5, 6]>>>
302 test.format_cpmd_nested_attr nested <i <42 <1, !test.smpla, [5, 6]>>>
[all …]
H A Dtestdialect-typedefs.mlir25 // CHECK: format_cpmd_nested_type %arg0 nested <i <42 <1, !test.smpla, [5, 6]>>>
26 // CHECK: format_cpmd_nested_type %arg0 nested <i <42 <1, !test.smpla, [5, 6]>>>
27 …test.format_cpmd_nested_type %arg0 nested !test.cmpnd_nested_outer<i !test.cmpnd_inner<42 <1, !tes…
28 test.format_cpmd_nested_type %arg0 nested <i <42 <1, !test.smpla, [5, 6]>>>
/llvm-project-15.0.7/llvm/test/DebugInfo/PDB/Native/
H A Dpdb-native-udts.test46 ; DUMP-NEXT: nested: 0
69 ; DUMP-NEXT: nested: 0
92 ; DUMP-NEXT: nested: 0
115 ; DUMP-NEXT: nested: 0
138 ; DUMP-NEXT: nested: 0
161 ; DUMP-NEXT: nested: 0
184 ; DUMP-NEXT: nested: 0
207 ; DUMP-NEXT: nested: 0
230 ; DUMP-NEXT: nested: 0
253 ; DUMP-NEXT: nested: 0
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/llvmlibc/
H A Dcallee-namespace.cpp4 namespace nested { namespace
29 __llvm_libc::nested::nested_func(); in Test()
38 nested::nested_func(); in Test()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dobject-size.c464 struct { struct DynStruct1 fst, snd; } *nested; in test30() local
467 gi = OBJECT_SIZE_BUILTIN(nested->fst.snd, 0); in test30()
469 gi = OBJECT_SIZE_BUILTIN(nested->fst.snd, 1); in test30()
471 gi = OBJECT_SIZE_BUILTIN(nested->fst.snd, 2); in test30()
473 gi = OBJECT_SIZE_BUILTIN(nested->fst.snd, 3); in test30()
476 gi = OBJECT_SIZE_BUILTIN(nested->snd.snd, 0); in test30()
478 gi = OBJECT_SIZE_BUILTIN(nested->snd.snd, 1); in test30()
480 gi = OBJECT_SIZE_BUILTIN(nested->snd.snd, 2); in test30()
482 gi = OBJECT_SIZE_BUILTIN(nested->snd.snd, 3); in test30()
/llvm-project-15.0.7/llvm/test/Transforms/LoadStoreVectorizer/X86/
H A Dpreserve-order64.ll7 %struct.nested.buffer = type { %struct.buffer_t, %struct.buffer_t }
36 define void @transitive_reorder(%struct.buffer_t* noalias %buff, %struct.nested.buffer* noalias %ne…
38 …%nest0_0 = getelementptr inbounds %struct.nested.buffer, %struct.nested.buffer* %nest, i64 0, i32 0
43 …%nest1_0 = getelementptr inbounds %struct.nested.buffer, %struct.nested.buffer* %nest, i64 0, i32 0
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Dconcat-nested-namespaces.rst1 .. title:: clang-tidy - modernize-concat-nested-namespaces
3 modernize-concat-nested-namespaces
6 Checks for use of nested namespaces such as ``namespace a { namespace b { ... } }``
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DSubElementInterfaces.td31 Walk all of the immediately nested sub-attributes and sub-types. This
39 Replace the immediately nested sub-attributes and sub-types with those provided.
56 /// Recursively replace all of the nested sub-attributes and sub-types using the
71 /// Recursively replace all of the nested sub-attributes and sub-types using the
80 /// Recursively replace all of the nested sub-attributes and sub-types using the
98 /// Recursively replace all of the nested sub-attributes using the provided
105 /// Recursively replace all of the nested sub-types using the provided map

12345678910>>...20