//===--- OptParser.td - Common Option Parsing Interfaces ------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines the common interfaces used by the option parsing TableGen // backend. // //===----------------------------------------------------------------------===// // Define the kinds of options. class OptionKind { string Name = name; // The kind precedence, kinds with lower precedence are matched first. int Precedence = predecence; // Indicate a sentinel option. bit Sentinel = sentinel; } // An option group. def KIND_GROUP : OptionKind<"Group">; // The input option kind. def KIND_INPUT : OptionKind<"Input", 1, 1>; // The unknown option kind. def KIND_UNKNOWN : OptionKind<"Unknown", 2, 1>; // A flag with no values. def KIND_FLAG : OptionKind<"Flag">; // An option which prefixes its (single) value. def KIND_JOINED : OptionKind<"Joined", 1>; // An option which is followed by its value. def KIND_SEPARATE : OptionKind<"Separate">; // An option followed by its values, which are separated by commas. def KIND_COMMAJOINED : OptionKind<"CommaJoined">; // An option which is which takes multiple (separate) arguments. def KIND_MULTIARG : OptionKind<"MultiArg">; // An option which is either joined to its (non-empty) value, or followed by its // value. def KIND_JOINED_OR_SEPARATE : OptionKind<"JoinedOrSeparate">; // An option which is both joined to its (first) value, and followed by its // (second) value. def KIND_JOINED_AND_SEPARATE : OptionKind<"JoinedAndSeparate">; // Define the option flags. class OptionFlag {} // HelpHidden - The option should not be displayed in --help, even if it has // help text. Clients *can* use this in conjunction with the OptTable::PrintHelp // arguments to implement hidden help groups. def HelpHidden : OptionFlag; // RenderAsInput - The option should not render the name when rendered as an // input (i.e., the option is rendered as values). def RenderAsInput : OptionFlag; // RenderJoined - The option should be rendered joined, even if separate (only // sensible on single value separate options). def RenderJoined : OptionFlag; // RenderSeparate - The option should be rendered separately, even if joined // (only sensible on joined options). def RenderSeparate : OptionFlag; // Define the option group class. class OptionGroup { string EnumName = ?; // Uses the def name if undefined. string Name = name; string HelpText = ?; OptionGroup Group = ?; } // Define the option class. class Option prefixes, string name, OptionKind kind> { string EnumName = ?; // Uses the def name if undefined. list Prefixes = prefixes; string Name = name; OptionKind Kind = kind; // Used by MultiArg option kind. int NumArgs = 0; string HelpText = ?; string MetaVarName = ?; list Flags = []; OptionGroup Group = ?; Option Alias = ?; } // Helpers for defining options. class Flag prefixes, string name> : Option; class Joined prefixes, string name> : Option; class Separate prefixes, string name> : Option; class CommaJoined prefixes, string name> : Option; class MultiArg prefixes, string name, int numargs> : Option { int NumArgs = numargs; } class JoinedOrSeparate prefixes, string name> : Option; class JoinedAndSeparate prefixes, string name> : Option; // Mix-ins for adding optional attributes. class Alias