2008-09-22 20:46:19 +00:00
|
|
|
//===- Common.td - Common definitions for LLVMC2 ----------*- tablegen -*-===//
|
2008-03-23 08:57:20 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-07-07 16:09:05 +00:00
|
|
|
// This file contains common definitions used in llvmc tool description files.
|
2008-03-23 08:57:20 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class Tool<list<dag> l> {
|
|
|
|
list<dag> properties = l;
|
|
|
|
}
|
|
|
|
|
2008-12-07 16:41:11 +00:00
|
|
|
// Possible Tool properties.
|
2008-03-23 08:57:20 +00:00
|
|
|
|
|
|
|
def in_language;
|
|
|
|
def out_language;
|
|
|
|
def output_suffix;
|
2010-02-23 09:04:44 +00:00
|
|
|
def command;
|
|
|
|
def out_file_option;
|
|
|
|
def in_file_option;
|
2008-03-23 08:57:20 +00:00
|
|
|
def join;
|
|
|
|
def sink;
|
2010-02-23 09:04:28 +00:00
|
|
|
def works_on_empty;
|
2008-12-07 16:41:11 +00:00
|
|
|
def actions;
|
2008-03-23 08:57:20 +00:00
|
|
|
|
2008-12-07 16:41:11 +00:00
|
|
|
// Possible option types.
|
2008-03-23 08:57:20 +00:00
|
|
|
|
2008-05-30 06:22:52 +00:00
|
|
|
def alias_option;
|
2008-03-23 08:57:20 +00:00
|
|
|
def switch_option;
|
2010-07-19 03:16:25 +00:00
|
|
|
def switch_list_option;
|
2008-03-23 08:57:20 +00:00
|
|
|
def parameter_option;
|
|
|
|
def parameter_list_option;
|
|
|
|
def prefix_option;
|
|
|
|
def prefix_list_option;
|
|
|
|
|
2008-12-07 16:41:11 +00:00
|
|
|
// Possible option properties.
|
2008-03-23 08:57:20 +00:00
|
|
|
|
|
|
|
def help;
|
2008-11-28 00:13:25 +00:00
|
|
|
def hidden;
|
2009-07-07 16:08:41 +00:00
|
|
|
def init;
|
2009-01-28 03:47:20 +00:00
|
|
|
def multi_val;
|
|
|
|
def one_or_more;
|
2010-03-05 04:46:39 +00:00
|
|
|
def zero_or_more;
|
2009-12-15 03:04:52 +00:00
|
|
|
def optional;
|
2008-11-28 00:13:25 +00:00
|
|
|
def really_hidden;
|
2008-03-23 08:57:20 +00:00
|
|
|
def required;
|
2009-12-07 18:25:54 +00:00
|
|
|
def comma_separated;
|
2010-02-23 09:04:13 +00:00
|
|
|
def forward_not_split;
|
2008-03-23 08:57:20 +00:00
|
|
|
|
2008-05-30 06:08:50 +00:00
|
|
|
// The 'case' construct.
|
|
|
|
def case;
|
|
|
|
|
2009-07-07 16:08:41 +00:00
|
|
|
// Boolean constants.
|
|
|
|
def true;
|
|
|
|
def false;
|
|
|
|
|
2008-12-07 16:41:11 +00:00
|
|
|
// Boolean operators.
|
|
|
|
def and;
|
|
|
|
def or;
|
2009-09-10 16:21:38 +00:00
|
|
|
def not;
|
2008-12-07 16:41:11 +00:00
|
|
|
|
2008-05-30 06:08:50 +00:00
|
|
|
// Primitive tests.
|
2008-05-06 16:36:06 +00:00
|
|
|
def switch_on;
|
|
|
|
def parameter_equals;
|
|
|
|
def element_in_list;
|
2008-05-30 06:08:50 +00:00
|
|
|
def input_languages_contain;
|
2009-09-10 16:22:02 +00:00
|
|
|
def empty;
|
2008-05-30 06:19:52 +00:00
|
|
|
def not_empty;
|
2008-05-30 06:10:19 +00:00
|
|
|
def default;
|
2009-09-28 01:16:42 +00:00
|
|
|
def single_input_file;
|
|
|
|
def multiple_input_files;
|
2009-10-17 20:09:29 +00:00
|
|
|
def any_switch_on;
|
|
|
|
def any_not_empty;
|
2009-10-22 04:15:24 +00:00
|
|
|
def any_empty;
|
2008-05-06 18:15:12 +00:00
|
|
|
|
2008-12-07 16:41:11 +00:00
|
|
|
// Possible actions.
|
|
|
|
|
|
|
|
def append_cmd;
|
|
|
|
def forward;
|
|
|
|
def forward_as;
|
2009-12-07 17:03:05 +00:00
|
|
|
def forward_value;
|
|
|
|
def forward_transformed_value;
|
2008-12-07 16:41:11 +00:00
|
|
|
def stop_compilation;
|
2010-02-23 09:04:44 +00:00
|
|
|
def no_out_file;
|
2008-12-07 16:41:11 +00:00
|
|
|
def unpack_values;
|
2009-10-17 20:09:29 +00:00
|
|
|
def warning;
|
2008-12-17 02:47:01 +00:00
|
|
|
def error;
|
2009-12-17 07:49:16 +00:00
|
|
|
def set_option;
|
2009-10-17 20:09:29 +00:00
|
|
|
def unset_option;
|
2008-05-06 16:36:06 +00:00
|
|
|
|
2008-05-30 06:08:50 +00:00
|
|
|
// Increase/decrease the edge weight.
|
|
|
|
def inc_weight;
|
|
|
|
def dec_weight;
|
|
|
|
|
2009-09-10 16:22:02 +00:00
|
|
|
// Empty DAG marker.
|
|
|
|
def empty_dag_marker;
|
|
|
|
|
2009-10-17 20:09:29 +00:00
|
|
|
// Option list - a single place to specify options.
|
2008-05-30 06:26:08 +00:00
|
|
|
class OptionList<list<dag> l> {
|
|
|
|
list<dag> options = l;
|
|
|
|
}
|
|
|
|
|
2009-10-17 20:09:29 +00:00
|
|
|
// Option preprocessor - actions taken during plugin loading.
|
|
|
|
class OptionPreprocessor<dag d> {
|
|
|
|
dag preprocessor = d;
|
|
|
|
}
|
|
|
|
|
2008-03-23 08:57:20 +00:00
|
|
|
// Map from suffixes to language names
|
|
|
|
|
|
|
|
class LangToSuffixes<string str, list<string> lst> {
|
|
|
|
string lang = str;
|
|
|
|
list<string> suffixes = lst;
|
|
|
|
}
|
|
|
|
|
|
|
|
class LanguageMap<list<LangToSuffixes> lst> {
|
|
|
|
list<LangToSuffixes> map = lst;
|
|
|
|
}
|
|
|
|
|
2008-05-06 16:35:25 +00:00
|
|
|
// Compilation graph
|
2008-03-23 08:57:20 +00:00
|
|
|
|
2008-11-17 17:29:18 +00:00
|
|
|
class EdgeBase<string t1, string t2, dag d> {
|
|
|
|
string a = t1;
|
|
|
|
string b = t2;
|
2008-05-30 06:08:50 +00:00
|
|
|
dag weight = d;
|
2008-03-23 08:57:20 +00:00
|
|
|
}
|
|
|
|
|
2009-09-10 16:22:02 +00:00
|
|
|
class Edge<string t1, string t2> : EdgeBase<t1, t2, (empty_dag_marker)>;
|
2008-05-06 16:36:06 +00:00
|
|
|
|
2008-05-06 18:18:20 +00:00
|
|
|
// Edge and SimpleEdge are synonyms.
|
2009-09-10 16:22:02 +00:00
|
|
|
class SimpleEdge<string t1, string t2> : EdgeBase<t1, t2, (empty_dag_marker)>;
|
2008-05-06 16:36:06 +00:00
|
|
|
|
|
|
|
// Optionally enabled edge.
|
2008-11-17 17:29:18 +00:00
|
|
|
class OptionalEdge<string t1, string t2, dag props> : EdgeBase<t1, t2, props>;
|
2008-05-06 16:36:06 +00:00
|
|
|
|
|
|
|
class CompilationGraph<list<EdgeBase> lst> {
|
|
|
|
list<EdgeBase> edges = lst;
|
2008-03-23 08:57:20 +00:00
|
|
|
}
|