mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
76b1b24dc8
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50759 91177308-0d34-0410-b5e6-96231b3b80d8
89 lines
1.9 KiB
TableGen
89 lines
1.9 KiB
TableGen
//===- Tools.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<list<dag> l> {
|
|
list<dag> properties = l;
|
|
}
|
|
|
|
// Special Tool instance - graph root.
|
|
|
|
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 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;
|
|
|
|
// Possible edge properties
|
|
|
|
def switch_on;
|
|
def parameter_equals;
|
|
def element_in_list;
|
|
def if_input_languages_contain;
|
|
|
|
// Edge property combinators.
|
|
def and;
|
|
def or;
|
|
|
|
// 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;
|
|
}
|
|
|
|
// Compilation graph
|
|
|
|
class EdgeBase<Tool t1, Tool t2, list<dag> lst> {
|
|
Tool a = t1;
|
|
Tool b = t2;
|
|
list<dag> props = lst;
|
|
}
|
|
|
|
class Edge<Tool t1, Tool t2> : EdgeBase<t1, t2, []>;
|
|
|
|
// Edge and DefaultEdge are synonyms.
|
|
class DefaultEdge<Tool t1, Tool t2> : EdgeBase<t1, t2, []>;
|
|
|
|
// Optionally enabled edge.
|
|
class OptionalEdge<Tool t1, Tool t2, list<dag> lst> : EdgeBase<t1, t2, lst>;
|
|
|
|
class CompilationGraph<list<EdgeBase> lst> {
|
|
list<EdgeBase> edges = lst;
|
|
}
|