mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
40eeddfb23
llvm-svn: 91594
57 lines
1.8 KiB
TableGen
57 lines
1.8 KiB
TableGen
// Test for the OptionPreprocessor and any*.
|
|
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
|
// RUN: FileCheck -input-file %t %s
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
def OptList : OptionList<[
|
|
(switch_option "foo", (help "dummy")),
|
|
(switch_option "bar", (help "dummy")),
|
|
(switch_option "baz", (help "dummy")),
|
|
(parameter_option "foo_p", (help "dummy")),
|
|
(parameter_option "bar_p", (help "dummy")),
|
|
(parameter_option "baz_p", (help "dummy")),
|
|
(parameter_list_option "foo_l", (help "dummy"))
|
|
]>;
|
|
|
|
def Preprocess : OptionPreprocessor<
|
|
(case
|
|
// CHECK: W1
|
|
// CHECK: foo = false;
|
|
// CHECK: foo_p = "";
|
|
// CHECK: foo_l.clear();
|
|
(and (switch_on "foo"), (any_switch_on ["bar", "baz"])),
|
|
[(warning "W1"), (unset_option "foo"),
|
|
(unset_option "foo_p"), (unset_option "foo_l")],
|
|
// CHECK: W2
|
|
// CHECK: foo = true;
|
|
// CHECK: foo_p = "asdf";
|
|
(and (switch_on ["foo", "bar"]), (any_empty ["foo_p", "bar_p"])),
|
|
[(warning "W2"), (set_option "foo"), (set_option "foo_p", "asdf")],
|
|
// CHECK: W3
|
|
// CHECK: foo = true;
|
|
// CHECK: bar = true;
|
|
// CHECK: baz = true;
|
|
(and (empty ["foo_p", "bar_p"]), (any_not_empty ["baz_p"])),
|
|
[(warning "W3"), (set_option ["foo", "bar", "baz"])])
|
|
>;
|
|
|
|
// Shut up warnings...
|
|
def dummy : Tool<
|
|
[(in_language "dummy"),
|
|
(out_language "dummy"),
|
|
(output_suffix "d"),
|
|
(cmd_line "dummy $INFILE -o $OUTFILE"),
|
|
(actions (case (switch_on "foo"), (error),
|
|
(switch_on "bar"), (error),
|
|
(switch_on "baz"), (error),
|
|
(not_empty "foo_p"), (error),
|
|
(not_empty "bar_p"), (error),
|
|
(not_empty "baz_p"), (error),
|
|
(not_empty "foo_l"), (error)))
|
|
]>;
|
|
|
|
def Graph : CompilationGraph<[Edge<"root", "dummy">]>;
|
|
|