//===- Common.td - Common definitions for LLVMCC ----------*- tablegen -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file contains common definitions used in llvmcc tool description files. // //===----------------------------------------------------------------------===// class Tool l> { list properties = l; } // Special Tool instance - the root node of the compilation graph. def root : Tool<[]>; // Possible Tool properties def in_language; def out_language; def output_suffix; def cmd_line; def join; def sink; // Possible option types def alias_option; 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; def stop_compilation; def unpack_values; def help; def required; // Empty DAG marker. def empty; // The 'case' construct. def case; // Primitive tests. def switch_on; def parameter_equals; def element_in_list; def input_languages_contain; def not_empty; // TOTHINK: remove? def default; // Boolean operators. def and; def or; // Increase/decrease the edge weight. def inc_weight; def dec_weight; // Map from suffixes to language names class LangToSuffixes lst> { string lang = str; list suffixes = lst; } class LanguageMap lst> { list map = lst; } // Compilation graph class EdgeBase { Tool a = t1; Tool b = t2; dag weight = d; } class Edge : EdgeBase; // Edge and SimpleEdge are synonyms. class SimpleEdge : EdgeBase; // Optionally enabled edge. class OptionalEdge : EdgeBase; class CompilationGraph lst> { list edges = lst; }