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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-09-22 20:46:19 +00:00
|
|
|
// This file contains common definitions used in llvmc2 tool description files.
|
2008-03-23 08:57:20 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class Tool<list<dag> l> {
|
|
|
|
list<dag> properties = l;
|
|
|
|
}
|
|
|
|
|
2008-05-09 08:27:26 +00:00
|
|
|
// Special Tool instance - the root node of the compilation graph.
|
2008-05-06 16:35:25 +00:00
|
|
|
|
|
|
|
def root : Tool<[]>;
|
|
|
|
|
2008-03-23 08:57:20 +00:00
|
|
|
// Possible Tool properties
|
|
|
|
|
|
|
|
def in_language;
|
|
|
|
def out_language;
|
|
|
|
def output_suffix;
|
|
|
|
def cmd_line;
|
|
|
|
def join;
|
|
|
|
def sink;
|
|
|
|
|
|
|
|
// Possible option types
|
|
|
|
|
2008-05-30 06:22:52 +00:00
|
|
|
def alias_option;
|
2008-03-23 08:57:20 +00:00
|
|
|
def switch_option;
|
|
|
|
def parameter_option;
|
|
|
|
def parameter_list_option;
|
|
|
|
def prefix_option;
|
|
|
|
def prefix_list_option;
|
|
|
|
|
|
|
|
// Possible option properties
|
|
|
|
|
|
|
|
def append_cmd;
|
|
|
|
def forward;
|
2008-09-22 20:46:19 +00:00
|
|
|
def forward_as;
|
2008-03-23 08:57:20 +00:00
|
|
|
def stop_compilation;
|
|
|
|
def unpack_values;
|
|
|
|
def help;
|
|
|
|
def required;
|
|
|
|
|
2008-05-30 06:22:52 +00:00
|
|
|
// Empty DAG marker.
|
2008-05-30 06:08:50 +00:00
|
|
|
def empty;
|
2008-05-06 16:36:06 +00:00
|
|
|
|
2008-05-30 06:08:50 +00:00
|
|
|
// The 'case' construct.
|
|
|
|
def case;
|
|
|
|
|
|
|
|
// 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;
|
2008-05-30 06:19:52 +00:00
|
|
|
def not_empty;
|
2008-05-30 06:10:19 +00:00
|
|
|
def default;
|
2008-05-06 18:15:12 +00:00
|
|
|
|
2008-05-30 06:08:50 +00:00
|
|
|
// Boolean operators.
|
2008-05-06 17:22:47 +00:00
|
|
|
def and;
|
2008-05-06 18:15:12 +00:00
|
|
|
def or;
|
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;
|
|
|
|
|
2008-05-30 06:26:08 +00:00
|
|
|
// Option list - used to specify aliases and sometimes help strings.
|
|
|
|
class OptionList<list<dag> l> {
|
|
|
|
list<dag> options = l;
|
|
|
|
}
|
|
|
|
|
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-05-30 06:08:50 +00:00
|
|
|
class EdgeBase<Tool t1, Tool t2, dag d> {
|
2008-05-06 16:35:25 +00:00
|
|
|
Tool a = t1;
|
|
|
|
Tool b = t2;
|
2008-05-30 06:08:50 +00:00
|
|
|
dag weight = d;
|
2008-03-23 08:57:20 +00:00
|
|
|
}
|
|
|
|
|
2008-05-30 06:08:50 +00:00
|
|
|
class Edge<Tool t1, Tool t2> : EdgeBase<t1, t2, (empty)>;
|
2008-05-06 16:36:06 +00:00
|
|
|
|
2008-05-06 18:18:20 +00:00
|
|
|
// Edge and SimpleEdge are synonyms.
|
2008-05-30 06:08:50 +00:00
|
|
|
class SimpleEdge<Tool t1, Tool t2> : EdgeBase<t1, t2, (empty)>;
|
2008-05-06 16:36:06 +00:00
|
|
|
|
|
|
|
// Optionally enabled edge.
|
2008-05-30 06:08:50 +00:00
|
|
|
class OptionalEdge<Tool t1, Tool 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
|
|
|
}
|