[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / exists.td
blob2153dbf9872d327accec89a2fe2637f4cdc2e7e2
1 // RUN: llvm-tblgen --no-warn-on-unused-template-args %s | FileCheck %s
2 // XFAIL: vg_leak
4 class A;
5 def a0 : A;
7 class A_check<string name>{
8   int exists = !exists<A>(name);
11 def a0_exists : A_check<"a0">;
12 def a1_missing : A_check<"a1">;
15 // Subclasses are allowed.
17 class B;
18 class SubOfB : B;
19 class B_check<string name> {
20   int exists = !exists<B>(name);
23 def sub : SubOfB;
25 def sub_exists : B_check<"sub">;
26 def a0_is_not_sub_of_B : B_check<"a0">;
29 // Self-references are allowed.
31 class Self_check<string name> {
32   int exists = !exists<Self_check>(name);
35 def self_reference : Self_check<"self_reference">; // Self-reference
36 // There is no record called `current` in current context though we will define it below.
37 def current_missing : Self_check<"current">;
38 def current : Self_check<"current">;
40 // CHECK: def a0_exists {
41 // CHECK:   int exists = 1;
42 // CHECK: }
44 // CHECK: def a0_is_not_sub_of_B {
45 // CHECK:   int exists = 0;
46 // CHECK: }
48 // CHECK: def a1_missing {
49 // CHECK:   int exists = 0;
50 // CHECK: }
52 // CHECK: def current {
53 // CHECK:   int exists = 1;
54 // CHECK: }
56 // `current` doesn't exist because we define it below `current_missing`.
57 // CHECK: def current_missing {
58 // CHECK:   int exists = 0;
59 // CHECK: }
61 // CHECK: def self_reference {
62 // CHECK:   int exists = 1;
63 // CHECK: }
65 // CHECK: def sub_exists {
66 // CHECK:   int exists = 1;
67 // CHECK: }