diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 b/src/main/java/dk/camelot64/kickc/parser/KickC.g4
index 607b823bb..f84576d6e 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickC.g4
+++ b/src/main/java/dk/camelot64/kickc/parser/KickC.g4
@@ -24,6 +24,7 @@ declSeq
decl
: declVariable
| declFunction
+ | declKasm
;
declVariable
@@ -34,6 +35,28 @@ declFunction
: directive* typeDecl directive* NAME '(' parameterListDecl? ')' '{' stmtSeq? '}'
;
+declKasm
+ : 'kickasm' kasmParams? KICKASM
+ ;
+
+kasmParams
+ : '(' kasmParam ( ';' kasmParam )* ')'
+ ;
+
+kasmParam
+ : 'import' kasmImportList
+ | 'clobber' STRING
+ | 'param' kasmParamList
+ ;
+
+kasmImportList
+ : STRING ( ',' STRING )*
+ ;
+
+kasmParamList
+ : NAME ':' expr ( ',' NAME ':' expr )*
+ ;
+
parameterListDecl
: parameterDecl (',' parameterDecl)* ;
@@ -42,6 +65,7 @@ parameterDecl
directive
: 'const' #directiveConst
+ | 'extern' #directiveExtern
| 'align' '(' NUMBER ')' #directiveAlign
| 'register' '(' NAME ')' #directiveRegister
| 'inline' #directiveInline
@@ -61,6 +85,7 @@ stmt
| 'for' '(' forDeclaration? forIteration ')' stmt #stmtFor
| 'return' expr? ';' #stmtReturn
| 'asm' '{' asmLines '}' #stmtAsm
+ | declKasm #stmtDeclKasm
;
forDeclaration
@@ -164,6 +189,8 @@ MNEMONIC:
'cpy' | 'cmp' | 'cpx' | 'dcp' | 'dec' | 'inc' | 'axs' | 'bne' | 'cld' | 'sbc' | 'isc' | 'inx' | 'beq' | 'sed' | 'dex' | 'iny' | 'ror'
;
+
+KICKASM: '{{' .*? '}}';
SIMPLETYPE: 'byte' | 'word' | 'dword' | 'bool' | 'void' ;
STRING : '"' ('\\"' | ~'"')* '"';
CHAR : '\'' ('\\\'' | ~'\'' ) '\'';
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens
index a8ebe6406..3e4dbaea9 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens
+++ b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens
@@ -56,25 +56,30 @@ T__54=55
T__55=56
T__56=57
T__57=58
-MNEMONIC=59
-SIMPLETYPE=60
-STRING=61
-CHAR=62
-BOOLEAN=63
-NUMBER=64
-NUMFLOAT=65
-BINFLOAT=66
-DECFLOAT=67
-HEXFLOAT=68
-NUMINT=69
-BININTEGER=70
-DECINTEGER=71
-HEXINTEGER=72
-NAME=73
-ASMREL=74
-WS=75
-COMMENT_LINE=76
-COMMENT_BLOCK=77
+T__58=59
+T__59=60
+T__60=61
+T__61=62
+MNEMONIC=63
+KICKASM=64
+SIMPLETYPE=65
+STRING=66
+CHAR=67
+BOOLEAN=68
+NUMBER=69
+NUMFLOAT=70
+BINFLOAT=71
+DECFLOAT=72
+HEXFLOAT=73
+NUMINT=74
+BININTEGER=75
+DECINTEGER=76
+HEXINTEGER=77
+NAME=78
+ASMREL=79
+WS=80
+COMMENT_LINE=81
+COMMENT_BLOCK=82
'import'=1
'='=2
';'=3
@@ -82,54 +87,58 @@ COMMENT_BLOCK=77
')'=5
'{'=6
'}'=7
-','=8
-'const'=9
-'align'=10
-'register'=11
-'inline'=12
-'if'=13
-'else'=14
-'while'=15
-'do'=16
-'for'=17
-'return'=18
-'asm'=19
-':'=20
-'..'=21
-'signed'=22
-'*'=23
-'['=24
-']'=25
-'--'=26
-'++'=27
-'+'=28
-'-'=29
-'!'=30
-'&'=31
-'~'=32
-'>>'=33
-'<<'=34
-'/'=35
-'%'=36
-'<'=37
-'>'=38
-'=='=39
-'!='=40
-'<='=41
-'>='=42
-'^'=43
-'|'=44
-'&&'=45
-'||'=46
-'+='=47
-'-='=48
-'*='=49
-'/='=50
-'%='=51
-'<<='=52
-'>>='=53
-'&='=54
-'|='=55
-'^='=56
-'.byte'=57
-'#'=58
+'kickasm'=8
+'clobber'=9
+'param'=10
+','=11
+':'=12
+'const'=13
+'extern'=14
+'align'=15
+'register'=16
+'inline'=17
+'if'=18
+'else'=19
+'while'=20
+'do'=21
+'for'=22
+'return'=23
+'asm'=24
+'..'=25
+'signed'=26
+'*'=27
+'['=28
+']'=29
+'--'=30
+'++'=31
+'+'=32
+'-'=33
+'!'=34
+'&'=35
+'~'=36
+'>>'=37
+'<<'=38
+'/'=39
+'%'=40
+'<'=41
+'>'=42
+'=='=43
+'!='=44
+'<='=45
+'>='=46
+'^'=47
+'|'=48
+'&&'=49
+'||'=50
+'+='=51
+'-='=52
+'*='=53
+'/='=54
+'%='=55
+'<<='=56
+'>>='=57
+'&='=58
+'|='=59
+'^='=60
+'.byte'=61
+'#'=62
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java
index 60d50ece5..1c10eec74 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java
@@ -107,6 +107,66 @@ public class KickCBaseListener implements KickCListener {
*
The default implementation does nothing.
*/
@Override public void exitDeclFunction(KickCParser.DeclFunctionContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterDeclKasm(KickCParser.DeclKasmContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitDeclKasm(KickCParser.DeclKasmContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterKasmParams(KickCParser.KasmParamsContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitKasmParams(KickCParser.KasmParamsContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterKasmParam(KickCParser.KasmParamContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitKasmParam(KickCParser.KasmParamContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterKasmImportList(KickCParser.KasmImportListContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitKasmImportList(KickCParser.KasmImportListContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterKasmParamList(KickCParser.KasmParamListContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitKasmParamList(KickCParser.KasmParamListContext ctx) { }
/**
* {@inheritDoc}
*
@@ -143,6 +203,18 @@ public class KickCBaseListener implements KickCListener {
* The default implementation does nothing.
*/
@Override public void exitDirectiveConst(KickCParser.DirectiveConstContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterDirectiveExtern(KickCParser.DirectiveExternContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitDirectiveExtern(KickCParser.DirectiveExternContext ctx) { }
/**
* {@inheritDoc}
*
@@ -299,6 +371,18 @@ public class KickCBaseListener implements KickCListener {
* The default implementation does nothing.
*/
@Override public void exitStmtAsm(KickCParser.StmtAsmContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx) { }
/**
* {@inheritDoc}
*
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java
index 648ad9ce2..e64872cf9 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java
@@ -67,6 +67,41 @@ public class KickCBaseVisitor extends AbstractParseTreeVisitor implements
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitDeclFunction(KickCParser.DeclFunctionContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitDeclKasm(KickCParser.DeclKasmContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitKasmParams(KickCParser.KasmParamsContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitKasmParam(KickCParser.KasmParamContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitKasmImportList(KickCParser.KasmImportListContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitKasmParamList(KickCParser.KasmParamListContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
@@ -88,6 +123,13 @@ public class KickCBaseVisitor extends AbstractParseTreeVisitor implements
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitDirectiveConst(KickCParser.DirectiveConstContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitDirectiveExtern(KickCParser.DirectiveExternContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
@@ -179,6 +221,13 @@ public class KickCBaseVisitor extends AbstractParseTreeVisitor implements
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitStmtAsm(KickCParser.StmtAsmContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
index af64339dd..f0b6af7b8 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
@@ -24,10 +24,11 @@ public class KickCLexer extends Lexer {
T__31=32, T__32=33, T__33=34, T__34=35, T__35=36, T__36=37, T__37=38,
T__38=39, T__39=40, T__40=41, T__41=42, T__42=43, T__43=44, T__44=45,
T__45=46, T__46=47, T__47=48, T__48=49, T__49=50, T__50=51, T__51=52,
- T__52=53, T__53=54, T__54=55, T__55=56, T__56=57, T__57=58, MNEMONIC=59,
- SIMPLETYPE=60, STRING=61, CHAR=62, BOOLEAN=63, NUMBER=64, NUMFLOAT=65,
- BINFLOAT=66, DECFLOAT=67, HEXFLOAT=68, NUMINT=69, BININTEGER=70, DECINTEGER=71,
- HEXINTEGER=72, NAME=73, ASMREL=74, WS=75, COMMENT_LINE=76, COMMENT_BLOCK=77;
+ T__52=53, T__53=54, T__54=55, T__55=56, T__56=57, T__57=58, T__58=59,
+ T__59=60, T__60=61, T__61=62, MNEMONIC=63, KICKASM=64, SIMPLETYPE=65,
+ STRING=66, CHAR=67, BOOLEAN=68, NUMBER=69, NUMFLOAT=70, BINFLOAT=71, DECFLOAT=72,
+ HEXFLOAT=73, NUMINT=74, BININTEGER=75, DECINTEGER=76, HEXINTEGER=77, NAME=78,
+ ASMREL=79, WS=80, COMMENT_LINE=81, COMMENT_BLOCK=82;
public static String[] channelNames = {
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
};
@@ -44,30 +45,33 @@ public class KickCLexer extends Lexer {
"T__33", "T__34", "T__35", "T__36", "T__37", "T__38", "T__39", "T__40",
"T__41", "T__42", "T__43", "T__44", "T__45", "T__46", "T__47", "T__48",
"T__49", "T__50", "T__51", "T__52", "T__53", "T__54", "T__55", "T__56",
- "T__57", "MNEMONIC", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER",
- "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER",
- "DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME",
- "NAME_START", "NAME_CHAR", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
+ "T__57", "T__58", "T__59", "T__60", "T__61", "MNEMONIC", "KICKASM", "SIMPLETYPE",
+ "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT",
+ "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "BINDIGIT",
+ "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR", "ASMREL", "WS",
+ "COMMENT_LINE", "COMMENT_BLOCK"
};
private static final String[] _LITERAL_NAMES = {
- null, "'import'", "'='", "';'", "'('", "')'", "'{'", "'}'", "','", "'const'",
- "'align'", "'register'", "'inline'", "'if'", "'else'", "'while'", "'do'",
- "'for'", "'return'", "'asm'", "':'", "'..'", "'signed'", "'*'", "'['",
- "']'", "'--'", "'++'", "'+'", "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'",
- "'/'", "'%'", "'<'", "'>'", "'=='", "'!='", "'<='", "'>='", "'^'", "'|'",
- "'&&'", "'||'", "'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='",
- "'&='", "'|='", "'^='", "'.byte'", "'#'"
+ null, "'import'", "'='", "';'", "'('", "')'", "'{'", "'}'", "'kickasm'",
+ "'clobber'", "'param'", "','", "':'", "'const'", "'extern'", "'align'",
+ "'register'", "'inline'", "'if'", "'else'", "'while'", "'do'", "'for'",
+ "'return'", "'asm'", "'..'", "'signed'", "'*'", "'['", "']'", "'--'",
+ "'++'", "'+'", "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'",
+ "'<'", "'>'", "'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'",
+ "'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='",
+ "'^='", "'.byte'", "'#'"
};
private static final String[] _SYMBOLIC_NAMES = {
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
- null, null, null, null, null, null, null, null, null, null, null, "MNEMONIC",
- "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT",
- "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER",
- "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
+ null, null, null, null, null, null, null, null, null, null, null, null,
+ null, null, null, "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR",
+ "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT",
+ "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE",
+ "COMMENT_BLOCK"
};
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
@@ -127,7 +131,7 @@ public class KickCLexer extends Lexer {
public ATN getATN() { return _ATN; }
public static final String _serializedATN =
- "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2O\u0318\b\1\4\2\t"+
+ "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2T\u034b\b\1\4\2\t"+
"\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+
"\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
@@ -136,285 +140,303 @@ public class KickCLexer extends Lexer {
",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+
"\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+
"\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+
- "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\3\2\3"+
- "\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b"+
- "\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\f\3\f"+
- "\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16"+
- "\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21"+
- "\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24"+
- "\3\24\3\25\3\25\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30"+
- "\3\30\3\31\3\31\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\35\3\35\3\36"+
- "\3\36\3\37\3\37\3 \3 \3!\3!\3\"\3\"\3\"\3#\3#\3#\3$\3$\3%\3%\3&\3&\3\'"+
- "\3\'\3(\3(\3(\3)\3)\3)\3*\3*\3*\3+\3+\3+\3,\3,\3-\3-\3.\3.\3.\3/\3/\3"+
- "/\3\60\3\60\3\60\3\61\3\61\3\61\3\62\3\62\3\62\3\63\3\63\3\63\3\64\3\64"+
- "\3\64\3\65\3\65\3\65\3\65\3\66\3\66\3\66\3\66\3\67\3\67\3\67\38\38\38"+
- "\39\39\39\3:\3:\3:\3:\3:\3:\3;\3;\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<"+
- "\3<\3<\3<\5<\u0245\n<\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3="+
- "\3=\3=\3=\3=\3=\5=\u025c\n=\3>\3>\3>\3>\7>\u0262\n>\f>\16>\u0265\13>\3"+
- ">\3>\3?\3?\3?\3?\5?\u026d\n?\3?\3?\3@\3@\3@\3@\3@\3@\3@\3@\3@\5@\u027a"+
- "\n@\3A\3A\5A\u027e\nA\3B\3B\3B\5B\u0283\nB\3C\3C\3C\3C\3C\5C\u028a\nC"+
- "\3C\7C\u028d\nC\fC\16C\u0290\13C\3C\3C\6C\u0294\nC\rC\16C\u0295\3D\7D"+
- "\u0299\nD\fD\16D\u029c\13D\3D\3D\6D\u02a0\nD\rD\16D\u02a1\3E\3E\3E\3E"+
- "\3E\5E\u02a9\nE\3E\7E\u02ac\nE\fE\16E\u02af\13E\3E\3E\6E\u02b3\nE\rE\16"+
- "E\u02b4\3F\3F\3F\5F\u02ba\nF\3G\3G\3G\6G\u02bf\nG\rG\16G\u02c0\3G\3G\6"+
- "G\u02c5\nG\rG\16G\u02c6\5G\u02c9\nG\3H\6H\u02cc\nH\rH\16H\u02cd\3I\3I"+
- "\3I\3I\3I\5I\u02d5\nI\3I\6I\u02d8\nI\rI\16I\u02d9\3J\3J\3K\3K\3L\3L\3"+
- "M\3M\7M\u02e4\nM\fM\16M\u02e7\13M\3N\3N\3O\3O\3P\3P\7P\u02ef\nP\fP\16"+
- "P\u02f2\13P\3P\6P\u02f5\nP\rP\16P\u02f6\3Q\6Q\u02fa\nQ\rQ\16Q\u02fb\3"+
- "Q\3Q\3R\3R\3R\3R\7R\u0304\nR\fR\16R\u0307\13R\3R\3R\3S\3S\3S\3S\7S\u030f"+
- "\nS\fS\16S\u0312\13S\3S\3S\3S\3S\3S\3\u0310\2T\3\3\5\4\7\5\t\6\13\7\r"+
- "\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25"+
- ")\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O"+
- ")Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081"+
- "B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093\2\u0095"+
- "\2\u0097\2\u0099K\u009b\2\u009d\2\u009fL\u00a1M\u00a3N\u00a5O\3\2\r\3"+
- "\2$$\3\2))\4\2DDdd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\"+
- "aac|\4\2--//\5\2\13\f\17\17\"\"\4\2\f\f\17\17\2\u037f\2\3\3\2\2\2\2\5"+
- "\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2"+
- "\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33"+
- "\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2"+
- "\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2"+
- "\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2"+
- "\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K"+
- "\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2"+
- "\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2"+
- "\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q"+
- "\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2"+
- "\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087"+
- "\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2"+
- "\2\2\u0091\3\2\2\2\2\u0099\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3"+
- "\3\2\2\2\2\u00a5\3\2\2\2\3\u00a7\3\2\2\2\5\u00ae\3\2\2\2\7\u00b0\3\2\2"+
- "\2\t\u00b2\3\2\2\2\13\u00b4\3\2\2\2\r\u00b6\3\2\2\2\17\u00b8\3\2\2\2\21"+
- "\u00ba\3\2\2\2\23\u00bc\3\2\2\2\25\u00c2\3\2\2\2\27\u00c8\3\2\2\2\31\u00d1"+
- "\3\2\2\2\33\u00d8\3\2\2\2\35\u00db\3\2\2\2\37\u00e0\3\2\2\2!\u00e6\3\2"+
- "\2\2#\u00e9\3\2\2\2%\u00ed\3\2\2\2\'\u00f4\3\2\2\2)\u00f8\3\2\2\2+\u00fa"+
- "\3\2\2\2-\u00fd\3\2\2\2/\u0104\3\2\2\2\61\u0106\3\2\2\2\63\u0108\3\2\2"+
- "\2\65\u010a\3\2\2\2\67\u010d\3\2\2\29\u0110\3\2\2\2;\u0112\3\2\2\2=\u0114"+
- "\3\2\2\2?\u0116\3\2\2\2A\u0118\3\2\2\2C\u011a\3\2\2\2E\u011d\3\2\2\2G"+
- "\u0120\3\2\2\2I\u0122\3\2\2\2K\u0124\3\2\2\2M\u0126\3\2\2\2O\u0128\3\2"+
- "\2\2Q\u012b\3\2\2\2S\u012e\3\2\2\2U\u0131\3\2\2\2W\u0134\3\2\2\2Y\u0136"+
- "\3\2\2\2[\u0138\3\2\2\2]\u013b\3\2\2\2_\u013e\3\2\2\2a\u0141\3\2\2\2c"+
- "\u0144\3\2\2\2e\u0147\3\2\2\2g\u014a\3\2\2\2i\u014d\3\2\2\2k\u0151\3\2"+
- "\2\2m\u0155\3\2\2\2o\u0158\3\2\2\2q\u015b\3\2\2\2s\u015e\3\2\2\2u\u0164"+
- "\3\2\2\2w\u0244\3\2\2\2y\u025b\3\2\2\2{\u025d\3\2\2\2}\u0268\3\2\2\2\177"+
- "\u0279\3\2\2\2\u0081\u027d\3\2\2\2\u0083\u0282\3\2\2\2\u0085\u0289\3\2"+
- "\2\2\u0087\u029a\3\2\2\2\u0089\u02a8\3\2\2\2\u008b\u02b9\3\2\2\2\u008d"+
- "\u02c8\3\2\2\2\u008f\u02cb\3\2\2\2\u0091\u02d4\3\2\2\2\u0093\u02db\3\2"+
- "\2\2\u0095\u02dd\3\2\2\2\u0097\u02df\3\2\2\2\u0099\u02e1\3\2\2\2\u009b"+
- "\u02e8\3\2\2\2\u009d\u02ea\3\2\2\2\u009f\u02ec\3\2\2\2\u00a1\u02f9\3\2"+
- "\2\2\u00a3\u02ff\3\2\2\2\u00a5\u030a\3\2\2\2\u00a7\u00a8\7k\2\2\u00a8"+
- "\u00a9\7o\2\2\u00a9\u00aa\7r\2\2\u00aa\u00ab\7q\2\2\u00ab\u00ac\7t\2\2"+
- "\u00ac\u00ad\7v\2\2\u00ad\4\3\2\2\2\u00ae\u00af\7?\2\2\u00af\6\3\2\2\2"+
- "\u00b0\u00b1\7=\2\2\u00b1\b\3\2\2\2\u00b2\u00b3\7*\2\2\u00b3\n\3\2\2\2"+
- "\u00b4\u00b5\7+\2\2\u00b5\f\3\2\2\2\u00b6\u00b7\7}\2\2\u00b7\16\3\2\2"+
- "\2\u00b8\u00b9\7\177\2\2\u00b9\20\3\2\2\2\u00ba\u00bb\7.\2\2\u00bb\22"+
- "\3\2\2\2\u00bc\u00bd\7e\2\2\u00bd\u00be\7q\2\2\u00be\u00bf\7p\2\2\u00bf"+
- "\u00c0\7u\2\2\u00c0\u00c1\7v\2\2\u00c1\24\3\2\2\2\u00c2\u00c3\7c\2\2\u00c3"+
- "\u00c4\7n\2\2\u00c4\u00c5\7k\2\2\u00c5\u00c6\7i\2\2\u00c6\u00c7\7p\2\2"+
- "\u00c7\26\3\2\2\2\u00c8\u00c9\7t\2\2\u00c9\u00ca\7g\2\2\u00ca\u00cb\7"+
- "i\2\2\u00cb\u00cc\7k\2\2\u00cc\u00cd\7u\2\2\u00cd\u00ce\7v\2\2\u00ce\u00cf"+
- "\7g\2\2\u00cf\u00d0\7t\2\2\u00d0\30\3\2\2\2\u00d1\u00d2\7k\2\2\u00d2\u00d3"+
- "\7p\2\2\u00d3\u00d4\7n\2\2\u00d4\u00d5\7k\2\2\u00d5\u00d6\7p\2\2\u00d6"+
- "\u00d7\7g\2\2\u00d7\32\3\2\2\2\u00d8\u00d9\7k\2\2\u00d9\u00da\7h\2\2\u00da"+
- "\34\3\2\2\2\u00db\u00dc\7g\2\2\u00dc\u00dd\7n\2\2\u00dd\u00de\7u\2\2\u00de"+
- "\u00df\7g\2\2\u00df\36\3\2\2\2\u00e0\u00e1\7y\2\2\u00e1\u00e2\7j\2\2\u00e2"+
- "\u00e3\7k\2\2\u00e3\u00e4\7n\2\2\u00e4\u00e5\7g\2\2\u00e5 \3\2\2\2\u00e6"+
- "\u00e7\7f\2\2\u00e7\u00e8\7q\2\2\u00e8\"\3\2\2\2\u00e9\u00ea\7h\2\2\u00ea"+
- "\u00eb\7q\2\2\u00eb\u00ec\7t\2\2\u00ec$\3\2\2\2\u00ed\u00ee\7t\2\2\u00ee"+
- "\u00ef\7g\2\2\u00ef\u00f0\7v\2\2\u00f0\u00f1\7w\2\2\u00f1\u00f2\7t\2\2"+
- "\u00f2\u00f3\7p\2\2\u00f3&\3\2\2\2\u00f4\u00f5\7c\2\2\u00f5\u00f6\7u\2"+
- "\2\u00f6\u00f7\7o\2\2\u00f7(\3\2\2\2\u00f8\u00f9\7<\2\2\u00f9*\3\2\2\2"+
- "\u00fa\u00fb\7\60\2\2\u00fb\u00fc\7\60\2\2\u00fc,\3\2\2\2\u00fd\u00fe"+
- "\7u\2\2\u00fe\u00ff\7k\2\2\u00ff\u0100\7i\2\2\u0100\u0101\7p\2\2\u0101"+
- "\u0102\7g\2\2\u0102\u0103\7f\2\2\u0103.\3\2\2\2\u0104\u0105\7,\2\2\u0105"+
- "\60\3\2\2\2\u0106\u0107\7]\2\2\u0107\62\3\2\2\2\u0108\u0109\7_\2\2\u0109"+
- "\64\3\2\2\2\u010a\u010b\7/\2\2\u010b\u010c\7/\2\2\u010c\66\3\2\2\2\u010d"+
- "\u010e\7-\2\2\u010e\u010f\7-\2\2\u010f8\3\2\2\2\u0110\u0111\7-\2\2\u0111"+
- ":\3\2\2\2\u0112\u0113\7/\2\2\u0113<\3\2\2\2\u0114\u0115\7#\2\2\u0115>"+
- "\3\2\2\2\u0116\u0117\7(\2\2\u0117@\3\2\2\2\u0118\u0119\7\u0080\2\2\u0119"+
- "B\3\2\2\2\u011a\u011b\7@\2\2\u011b\u011c\7@\2\2\u011cD\3\2\2\2\u011d\u011e"+
- "\7>\2\2\u011e\u011f\7>\2\2\u011fF\3\2\2\2\u0120\u0121\7\61\2\2\u0121H"+
- "\3\2\2\2\u0122\u0123\7\'\2\2\u0123J\3\2\2\2\u0124\u0125\7>\2\2\u0125L"+
- "\3\2\2\2\u0126\u0127\7@\2\2\u0127N\3\2\2\2\u0128\u0129\7?\2\2\u0129\u012a"+
- "\7?\2\2\u012aP\3\2\2\2\u012b\u012c\7#\2\2\u012c\u012d\7?\2\2\u012dR\3"+
- "\2\2\2\u012e\u012f\7>\2\2\u012f\u0130\7?\2\2\u0130T\3\2\2\2\u0131\u0132"+
- "\7@\2\2\u0132\u0133\7?\2\2\u0133V\3\2\2\2\u0134\u0135\7`\2\2\u0135X\3"+
- "\2\2\2\u0136\u0137\7~\2\2\u0137Z\3\2\2\2\u0138\u0139\7(\2\2\u0139\u013a"+
- "\7(\2\2\u013a\\\3\2\2\2\u013b\u013c\7~\2\2\u013c\u013d\7~\2\2\u013d^\3"+
- "\2\2\2\u013e\u013f\7-\2\2\u013f\u0140\7?\2\2\u0140`\3\2\2\2\u0141\u0142"+
- "\7/\2\2\u0142\u0143\7?\2\2\u0143b\3\2\2\2\u0144\u0145\7,\2\2\u0145\u0146"+
- "\7?\2\2\u0146d\3\2\2\2\u0147\u0148\7\61\2\2\u0148\u0149\7?\2\2\u0149f"+
- "\3\2\2\2\u014a\u014b\7\'\2\2\u014b\u014c\7?\2\2\u014ch\3\2\2\2\u014d\u014e"+
- "\7>\2\2\u014e\u014f\7>\2\2\u014f\u0150\7?\2\2\u0150j\3\2\2\2\u0151\u0152"+
- "\7@\2\2\u0152\u0153\7@\2\2\u0153\u0154\7?\2\2\u0154l\3\2\2\2\u0155\u0156"+
- "\7(\2\2\u0156\u0157\7?\2\2\u0157n\3\2\2\2\u0158\u0159\7~\2\2\u0159\u015a"+
- "\7?\2\2\u015ap\3\2\2\2\u015b\u015c\7`\2\2\u015c\u015d\7?\2\2\u015dr\3"+
- "\2\2\2\u015e\u015f\7\60\2\2\u015f\u0160\7d\2\2\u0160\u0161\7{\2\2\u0161"+
- "\u0162\7v\2\2\u0162\u0163\7g\2\2\u0163t\3\2\2\2\u0164\u0165\7%\2\2\u0165"+
- "v\3\2\2\2\u0166\u0167\7d\2\2\u0167\u0168\7t\2\2\u0168\u0245\7m\2\2\u0169"+
- "\u016a\7q\2\2\u016a\u016b\7t\2\2\u016b\u0245\7c\2\2\u016c\u016d\7m\2\2"+
- "\u016d\u016e\7k\2\2\u016e\u0245\7n\2\2\u016f\u0170\7u\2\2\u0170\u0171"+
- "\7n\2\2\u0171\u0245\7q\2\2\u0172\u0173\7p\2\2\u0173\u0174\7q\2\2\u0174"+
- "\u0245\7r\2\2\u0175\u0176\7c\2\2\u0176\u0177\7u\2\2\u0177\u0245\7n\2\2"+
- "\u0178\u0179\7r\2\2\u0179\u017a\7j\2\2\u017a\u0245\7r\2\2\u017b\u017c"+
- "\7c\2\2\u017c\u017d\7p\2\2\u017d\u0245\7e\2\2\u017e\u017f\7d\2\2\u017f"+
- "\u0180\7r\2\2\u0180\u0245\7n\2\2\u0181\u0182\7e\2\2\u0182\u0183\7n\2\2"+
- "\u0183\u0245\7e\2\2\u0184\u0185\7l\2\2\u0185\u0186\7u\2\2\u0186\u0245"+
- "\7t\2\2\u0187\u0188\7c\2\2\u0188\u0189\7p\2\2\u0189\u0245\7f\2\2\u018a"+
- "\u018b\7t\2\2\u018b\u018c\7n\2\2\u018c\u0245\7c\2\2\u018d\u018e\7d\2\2"+
- "\u018e\u018f\7k\2\2\u018f\u0245\7v\2\2\u0190\u0191\7t\2\2\u0191\u0192"+
- "\7q\2\2\u0192\u0245\7n\2\2\u0193\u0194\7r\2\2\u0194\u0195\7n\2\2\u0195"+
- "\u0245\7c\2\2\u0196\u0197\7r\2\2\u0197\u0198\7n\2\2\u0198\u0245\7r\2\2"+
- "\u0199\u019a\7d\2\2\u019a\u019b\7o\2\2\u019b\u0245\7k\2\2\u019c\u019d"+
- "\7u\2\2\u019d\u019e\7g\2\2\u019e\u0245\7e\2\2\u019f\u01a0\7t\2\2\u01a0"+
- "\u01a1\7v\2\2\u01a1\u0245\7k\2\2\u01a2\u01a3\7g\2\2\u01a3\u01a4\7q\2\2"+
- "\u01a4\u0245\7t\2\2\u01a5\u01a6\7u\2\2\u01a6\u01a7\7t\2\2\u01a7\u0245"+
- "\7g\2\2\u01a8\u01a9\7n\2\2\u01a9\u01aa\7u\2\2\u01aa\u0245\7t\2\2\u01ab"+
- "\u01ac\7r\2\2\u01ac\u01ad\7j\2\2\u01ad\u0245\7c\2\2\u01ae\u01af\7c\2\2"+
- "\u01af\u01b0\7n\2\2\u01b0\u0245\7t\2\2\u01b1\u01b2\7l\2\2\u01b2\u01b3"+
- "\7o\2\2\u01b3\u0245\7r\2\2\u01b4\u01b5\7d\2\2\u01b5\u01b6\7x\2\2\u01b6"+
- "\u0245\7e\2\2\u01b7\u01b8\7e\2\2\u01b8\u01b9\7n\2\2\u01b9\u0245\7k\2\2"+
- "\u01ba\u01bb\7t\2\2\u01bb\u01bc\7v\2\2\u01bc\u0245\7u\2\2\u01bd\u01be"+
- "\7c\2\2\u01be\u01bf\7f\2\2\u01bf\u0245\7e\2\2\u01c0\u01c1\7t\2\2\u01c1"+
- "\u01c2\7t\2\2\u01c2\u0245\7c\2\2\u01c3\u01c4\7d\2\2\u01c4\u01c5\7x\2\2"+
- "\u01c5\u0245\7u\2\2\u01c6\u01c7\7u\2\2\u01c7\u01c8\7g\2\2\u01c8\u0245"+
- "\7k\2\2\u01c9\u01ca\7u\2\2\u01ca\u01cb\7c\2\2\u01cb\u0245\7z\2\2\u01cc"+
- "\u01cd\7u\2\2\u01cd\u01ce\7v\2\2\u01ce\u0245\7{\2\2\u01cf\u01d0\7u\2\2"+
- "\u01d0\u01d1\7v\2\2\u01d1\u0245\7c\2\2\u01d2\u01d3\7u\2\2\u01d3\u01d4"+
- "\7v\2\2\u01d4\u0245\7z\2\2\u01d5\u01d6\7f\2\2\u01d6\u01d7\7g\2\2\u01d7"+
- "\u0245\7{\2\2\u01d8\u01d9\7v\2\2\u01d9\u01da\7z\2\2\u01da\u0245\7c\2\2"+
- "\u01db\u01dc\7z\2\2\u01dc\u01dd\7c\2\2\u01dd\u0245\7c\2\2\u01de\u01df"+
- "\7d\2\2\u01df\u01e0\7e\2\2\u01e0\u0245\7e\2\2\u01e1\u01e2\7c\2\2\u01e2"+
- "\u01e3\7j\2\2\u01e3\u0245\7z\2\2\u01e4\u01e5\7v\2\2\u01e5\u01e6\7{\2\2"+
- "\u01e6\u0245\7c\2\2\u01e7\u01e8\7v\2\2\u01e8\u01e9\7z\2\2\u01e9\u0245"+
- "\7u\2\2\u01ea\u01eb\7v\2\2\u01eb\u01ec\7c\2\2\u01ec\u0245\7u\2\2\u01ed"+
- "\u01ee\7u\2\2\u01ee\u01ef\7j\2\2\u01ef\u0245\7{\2\2\u01f0\u01f1\7u\2\2"+
- "\u01f1\u01f2\7j\2\2\u01f2\u0245\7z\2\2\u01f3\u01f4\7n\2\2\u01f4\u01f5"+
- "\7f\2\2\u01f5\u0245\7{\2\2\u01f6\u01f7\7n\2\2\u01f7\u01f8\7f\2\2\u01f8"+
- "\u0245\7c\2\2\u01f9\u01fa\7n\2\2\u01fa\u01fb\7f\2\2\u01fb\u0245\7z\2\2"+
- "\u01fc\u01fd\7n\2\2\u01fd\u01fe\7c\2\2\u01fe\u0245\7z\2\2\u01ff\u0200"+
- "\7v\2\2\u0200\u0201\7c\2\2\u0201\u0245\7{\2\2\u0202\u0203\7v\2\2\u0203"+
- "\u0204\7c\2\2\u0204\u0245\7z\2\2\u0205\u0206\7d\2\2\u0206\u0207\7e\2\2"+
- "\u0207\u0245\7u\2\2\u0208\u0209\7e\2\2\u0209\u020a\7n\2\2\u020a\u0245"+
- "\7x\2\2\u020b\u020c\7v\2\2\u020c\u020d\7u\2\2\u020d\u0245\7z\2\2\u020e"+
- "\u020f\7n\2\2\u020f\u0210\7c\2\2\u0210\u0245\7u\2\2\u0211\u0212\7e\2\2"+
- "\u0212\u0213\7r\2\2\u0213\u0245\7{\2\2\u0214\u0215\7e\2\2\u0215\u0216"+
- "\7o\2\2\u0216\u0245\7r\2\2\u0217\u0218\7e\2\2\u0218\u0219\7r\2\2\u0219"+
- "\u0245\7z\2\2\u021a\u021b\7f\2\2\u021b\u021c\7e\2\2\u021c\u0245\7r\2\2"+
- "\u021d\u021e\7f\2\2\u021e\u021f\7g\2\2\u021f\u0245\7e\2\2\u0220\u0221"+
- "\7k\2\2\u0221\u0222\7p\2\2\u0222\u0245\7e\2\2\u0223\u0224\7c\2\2\u0224"+
- "\u0225\7z\2\2\u0225\u0245\7u\2\2\u0226\u0227\7d\2\2\u0227\u0228\7p\2\2"+
- "\u0228\u0245\7g\2\2\u0229\u022a\7e\2\2\u022a\u022b\7n\2\2\u022b\u0245"+
- "\7f\2\2\u022c\u022d\7u\2\2\u022d\u022e\7d\2\2\u022e\u0245\7e\2\2\u022f"+
- "\u0230\7k\2\2\u0230\u0231\7u\2\2\u0231\u0245\7e\2\2\u0232\u0233\7k\2\2"+
- "\u0233\u0234\7p\2\2\u0234\u0245\7z\2\2\u0235\u0236\7d\2\2\u0236\u0237"+
- "\7g\2\2\u0237\u0245\7s\2\2\u0238\u0239\7u\2\2\u0239\u023a\7g\2\2\u023a"+
- "\u0245\7f\2\2\u023b\u023c\7f\2\2\u023c\u023d\7g\2\2\u023d\u0245\7z\2\2"+
- "\u023e\u023f\7k\2\2\u023f\u0240\7p\2\2\u0240\u0245\7{\2\2\u0241\u0242"+
- "\7t\2\2\u0242\u0243\7q\2\2\u0243\u0245\7t\2\2\u0244\u0166\3\2\2\2\u0244"+
- "\u0169\3\2\2\2\u0244\u016c\3\2\2\2\u0244\u016f\3\2\2\2\u0244\u0172\3\2"+
- "\2\2\u0244\u0175\3\2\2\2\u0244\u0178\3\2\2\2\u0244\u017b\3\2\2\2\u0244"+
- "\u017e\3\2\2\2\u0244\u0181\3\2\2\2\u0244\u0184\3\2\2\2\u0244\u0187\3\2"+
- "\2\2\u0244\u018a\3\2\2\2\u0244\u018d\3\2\2\2\u0244\u0190\3\2\2\2\u0244"+
- "\u0193\3\2\2\2\u0244\u0196\3\2\2\2\u0244\u0199\3\2\2\2\u0244\u019c\3\2"+
- "\2\2\u0244\u019f\3\2\2\2\u0244\u01a2\3\2\2\2\u0244\u01a5\3\2\2\2\u0244"+
- "\u01a8\3\2\2\2\u0244\u01ab\3\2\2\2\u0244\u01ae\3\2\2\2\u0244\u01b1\3\2"+
- "\2\2\u0244\u01b4\3\2\2\2\u0244\u01b7\3\2\2\2\u0244\u01ba\3\2\2\2\u0244"+
- "\u01bd\3\2\2\2\u0244\u01c0\3\2\2\2\u0244\u01c3\3\2\2\2\u0244\u01c6\3\2"+
- "\2\2\u0244\u01c9\3\2\2\2\u0244\u01cc\3\2\2\2\u0244\u01cf\3\2\2\2\u0244"+
- "\u01d2\3\2\2\2\u0244\u01d5\3\2\2\2\u0244\u01d8\3\2\2\2\u0244\u01db\3\2"+
- "\2\2\u0244\u01de\3\2\2\2\u0244\u01e1\3\2\2\2\u0244\u01e4\3\2\2\2\u0244"+
- "\u01e7\3\2\2\2\u0244\u01ea\3\2\2\2\u0244\u01ed\3\2\2\2\u0244\u01f0\3\2"+
- "\2\2\u0244\u01f3\3\2\2\2\u0244\u01f6\3\2\2\2\u0244\u01f9\3\2\2\2\u0244"+
- "\u01fc\3\2\2\2\u0244\u01ff\3\2\2\2\u0244\u0202\3\2\2\2\u0244\u0205\3\2"+
- "\2\2\u0244\u0208\3\2\2\2\u0244\u020b\3\2\2\2\u0244\u020e\3\2\2\2\u0244"+
- "\u0211\3\2\2\2\u0244\u0214\3\2\2\2\u0244\u0217\3\2\2\2\u0244\u021a\3\2"+
- "\2\2\u0244\u021d\3\2\2\2\u0244\u0220\3\2\2\2\u0244\u0223\3\2\2\2\u0244"+
- "\u0226\3\2\2\2\u0244\u0229\3\2\2\2\u0244\u022c\3\2\2\2\u0244\u022f\3\2"+
- "\2\2\u0244\u0232\3\2\2\2\u0244\u0235\3\2\2\2\u0244\u0238\3\2\2\2\u0244"+
- "\u023b\3\2\2\2\u0244\u023e\3\2\2\2\u0244\u0241\3\2\2\2\u0245x\3\2\2\2"+
- "\u0246\u0247\7d\2\2\u0247\u0248\7{\2\2\u0248\u0249\7v\2\2\u0249\u025c"+
- "\7g\2\2\u024a\u024b\7y\2\2\u024b\u024c\7q\2\2\u024c\u024d\7t\2\2\u024d"+
- "\u025c\7f\2\2\u024e\u024f\7f\2\2\u024f\u0250\7y\2\2\u0250\u0251\7q\2\2"+
- "\u0251\u0252\7t\2\2\u0252\u025c\7f\2\2\u0253\u0254\7d\2\2\u0254\u0255"+
- "\7q\2\2\u0255\u0256\7q\2\2\u0256\u025c\7n\2\2\u0257\u0258\7x\2\2\u0258"+
- "\u0259\7q\2\2\u0259\u025a\7k\2\2\u025a\u025c\7f\2\2\u025b\u0246\3\2\2"+
- "\2\u025b\u024a\3\2\2\2\u025b\u024e\3\2\2\2\u025b\u0253\3\2\2\2\u025b\u0257"+
- "\3\2\2\2\u025cz\3\2\2\2\u025d\u0263\7$\2\2\u025e\u025f\7^\2\2\u025f\u0262"+
- "\7$\2\2\u0260\u0262\n\2\2\2\u0261\u025e\3\2\2\2\u0261\u0260\3\2\2\2\u0262"+
- "\u0265\3\2\2\2\u0263\u0261\3\2\2\2\u0263\u0264\3\2\2\2\u0264\u0266\3\2"+
- "\2\2\u0265\u0263\3\2\2\2\u0266\u0267\7$\2\2\u0267|\3\2\2\2\u0268\u026c"+
- "\7)\2\2\u0269\u026a\7^\2\2\u026a\u026d\7)\2\2\u026b\u026d\n\3\2\2\u026c"+
- "\u0269\3\2\2\2\u026c\u026b\3\2\2\2\u026d\u026e\3\2\2\2\u026e\u026f\7)"+
- "\2\2\u026f~\3\2\2\2\u0270\u0271\7v\2\2\u0271\u0272\7t\2\2\u0272\u0273"+
- "\7w\2\2\u0273\u027a\7g\2\2\u0274\u0275\7h\2\2\u0275\u0276\7c\2\2\u0276"+
- "\u0277\7n\2\2\u0277\u0278\7u\2\2\u0278\u027a\7g\2\2\u0279\u0270\3\2\2"+
- "\2\u0279\u0274\3\2\2\2\u027a\u0080\3\2\2\2\u027b\u027e\5\u0083B\2\u027c"+
- "\u027e\5\u008bF\2\u027d\u027b\3\2\2\2\u027d\u027c\3\2\2\2\u027e\u0082"+
- "\3\2\2\2\u027f\u0283\5\u0085C\2\u0280\u0283\5\u0087D\2\u0281\u0283\5\u0089"+
- "E\2\u0282\u027f\3\2\2\2\u0282\u0280\3\2\2\2\u0282\u0281\3\2\2\2\u0283"+
- "\u0084\3\2\2\2\u0284\u028a\7\'\2\2\u0285\u0286\7\62\2\2\u0286\u028a\7"+
- "d\2\2\u0287\u0288\7\62\2\2\u0288\u028a\7D\2\2\u0289\u0284\3\2\2\2\u0289"+
- "\u0285\3\2\2\2\u0289\u0287\3\2\2\2\u028a\u028e\3\2\2\2\u028b\u028d\5\u0093"+
- "J\2\u028c\u028b\3\2\2\2\u028d\u0290\3\2\2\2\u028e\u028c\3\2\2\2\u028e"+
- "\u028f\3\2\2\2\u028f\u0291\3\2\2\2\u0290\u028e\3\2\2\2\u0291\u0293\7\60"+
- "\2\2\u0292\u0294\5\u0093J\2\u0293\u0292\3\2\2\2\u0294\u0295\3\2\2\2\u0295"+
- "\u0293\3\2\2\2\u0295\u0296\3\2\2\2\u0296\u0086\3\2\2\2\u0297\u0299\5\u0095"+
- "K\2\u0298\u0297\3\2\2\2\u0299\u029c\3\2\2\2\u029a\u0298\3\2\2\2\u029a"+
- "\u029b\3\2\2\2\u029b\u029d\3\2\2\2\u029c\u029a\3\2\2\2\u029d\u029f\7\60"+
- "\2\2\u029e\u02a0\5\u0095K\2\u029f\u029e\3\2\2\2\u02a0\u02a1\3\2\2\2\u02a1"+
- "\u029f\3\2\2\2\u02a1\u02a2\3\2\2\2\u02a2\u0088\3\2\2\2\u02a3\u02a9\7&"+
- "\2\2\u02a4\u02a5\7\62\2\2\u02a5\u02a9\7z\2\2\u02a6\u02a7\7\62\2\2\u02a7"+
- "\u02a9\7Z\2\2\u02a8\u02a3\3\2\2\2\u02a8\u02a4\3\2\2\2\u02a8\u02a6\3\2"+
- "\2\2\u02a9\u02ad\3\2\2\2\u02aa\u02ac\5\u0097L\2\u02ab\u02aa\3\2\2\2\u02ac"+
- "\u02af\3\2\2\2\u02ad\u02ab\3\2\2\2\u02ad\u02ae\3\2\2\2\u02ae\u02b0\3\2"+
- "\2\2\u02af\u02ad\3\2\2\2\u02b0\u02b2\7\60\2\2\u02b1\u02b3\5\u0097L\2\u02b2"+
- "\u02b1\3\2\2\2\u02b3\u02b4\3\2\2\2\u02b4\u02b2\3\2\2\2\u02b4\u02b5\3\2"+
- "\2\2\u02b5\u008a\3\2\2\2\u02b6\u02ba\5\u008fH\2\u02b7\u02ba\5\u0091I\2"+
- "\u02b8\u02ba\5\u008dG\2\u02b9\u02b6\3\2\2\2\u02b9\u02b7\3\2\2\2\u02b9"+
- "\u02b8\3\2\2\2\u02ba\u008c\3\2\2\2\u02bb\u02bc\7\62\2\2\u02bc\u02be\t"+
- "\4\2\2\u02bd\u02bf\5\u0093J\2\u02be\u02bd\3\2\2\2\u02bf\u02c0\3\2\2\2"+
- "\u02c0\u02be\3\2\2\2\u02c0\u02c1\3\2\2\2\u02c1\u02c9\3\2\2\2\u02c2\u02c4"+
- "\7\'\2\2\u02c3\u02c5\5\u0093J\2\u02c4\u02c3\3\2\2\2\u02c5\u02c6\3\2\2"+
- "\2\u02c6\u02c4\3\2\2\2\u02c6\u02c7\3\2\2\2\u02c7\u02c9\3\2\2\2\u02c8\u02bb"+
- "\3\2\2\2\u02c8\u02c2\3\2\2\2\u02c9\u008e\3\2\2\2\u02ca\u02cc\5\u0095K"+
- "\2\u02cb\u02ca\3\2\2\2\u02cc\u02cd\3\2\2\2\u02cd\u02cb\3\2\2\2\u02cd\u02ce"+
- "\3\2\2\2\u02ce\u0090\3\2\2\2\u02cf\u02d5\7&\2\2\u02d0\u02d1\7\62\2\2\u02d1"+
- "\u02d5\7z\2\2\u02d2\u02d3\7\62\2\2\u02d3\u02d5\7Z\2\2\u02d4\u02cf\3\2"+
- "\2\2\u02d4\u02d0\3\2\2\2\u02d4\u02d2\3\2\2\2\u02d5\u02d7\3\2\2\2\u02d6"+
- "\u02d8\5\u0097L\2\u02d7\u02d6\3\2\2\2\u02d8\u02d9\3\2\2\2\u02d9\u02d7"+
- "\3\2\2\2\u02d9\u02da\3\2\2\2\u02da\u0092\3\2\2\2\u02db\u02dc\t\5\2\2\u02dc"+
- "\u0094\3\2\2\2\u02dd\u02de\t\6\2\2\u02de\u0096\3\2\2\2\u02df\u02e0\t\7"+
- "\2\2\u02e0\u0098\3\2\2\2\u02e1\u02e5\5\u009bN\2\u02e2\u02e4\5\u009dO\2"+
- "\u02e3\u02e2\3\2\2\2\u02e4\u02e7\3\2\2\2\u02e5\u02e3\3\2\2\2\u02e5\u02e6"+
- "\3\2\2\2\u02e6\u009a\3\2\2\2\u02e7\u02e5\3\2\2\2\u02e8\u02e9\t\b\2\2\u02e9"+
- "\u009c\3\2\2\2\u02ea\u02eb\t\t\2\2\u02eb\u009e\3\2\2\2\u02ec\u02f0\7#"+
- "\2\2\u02ed\u02ef\5\u009dO\2\u02ee\u02ed\3\2\2\2\u02ef\u02f2\3\2\2\2\u02f0"+
- "\u02ee\3\2\2\2\u02f0\u02f1\3\2\2\2\u02f1\u02f4\3\2\2\2\u02f2\u02f0\3\2"+
- "\2\2\u02f3\u02f5\t\n\2\2\u02f4\u02f3\3\2\2\2\u02f5\u02f6\3\2\2\2\u02f6"+
- "\u02f4\3\2\2\2\u02f6\u02f7\3\2\2\2\u02f7\u00a0\3\2\2\2\u02f8\u02fa\t\13"+
- "\2\2\u02f9\u02f8\3\2\2\2\u02fa\u02fb\3\2\2\2\u02fb\u02f9\3\2\2\2\u02fb"+
- "\u02fc\3\2\2\2\u02fc\u02fd\3\2\2\2\u02fd\u02fe\bQ\2\2\u02fe\u00a2\3\2"+
- "\2\2\u02ff\u0300\7\61\2\2\u0300\u0301\7\61\2\2\u0301\u0305\3\2\2\2\u0302"+
- "\u0304\n\f\2\2\u0303\u0302\3\2\2\2\u0304\u0307\3\2\2\2\u0305\u0303\3\2"+
- "\2\2\u0305\u0306\3\2\2\2\u0306\u0308\3\2\2\2\u0307\u0305\3\2\2\2\u0308"+
- "\u0309\bR\2\2\u0309\u00a4\3\2\2\2\u030a\u030b\7\61\2\2\u030b\u030c\7,"+
- "\2\2\u030c\u0310\3\2\2\2\u030d\u030f\13\2\2\2\u030e\u030d\3\2\2\2\u030f"+
- "\u0312\3\2\2\2\u0310\u0311\3\2\2\2\u0310\u030e\3\2\2\2\u0311\u0313\3\2"+
- "\2\2\u0312\u0310\3\2\2\2\u0313\u0314\7,\2\2\u0314\u0315\7\61\2\2\u0315"+
- "\u0316\3\2\2\2\u0316\u0317\bS\2\2\u0317\u00a6\3\2\2\2 \2\u0244\u025b\u0261"+
- "\u0263\u026c\u0279\u027d\u0282\u0289\u028e\u0295\u029a\u02a1\u02a8\u02ad"+
- "\u02b4\u02b9\u02c0\u02c6\u02c8\u02cd\u02d4\u02d9\u02e5\u02f0\u02f6\u02fb"+
- "\u0305\u0310\3\b\2\2";
+ "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+
+ "\4U\tU\4V\tV\4W\tW\4X\tX\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3"+
+ "\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\n\3\n"+
+ "\3\n\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\r\3\r"+
+ "\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\20"+
+ "\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+
+ "\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\24\3\24\3\24\3\24"+
+ "\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3\26\3\26\3\26\3\27\3\27\3\27\3\27"+
+ "\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\32\3\32\3\32"+
+ "\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34\3\35\3\35\3\36\3\36\3\37"+
+ "\3\37\3\37\3 \3 \3 \3!\3!\3\"\3\"\3#\3#\3$\3$\3%\3%\3&\3&\3&\3\'\3\'\3"+
+ "\'\3(\3(\3)\3)\3*\3*\3+\3+\3,\3,\3,\3-\3-\3-\3.\3.\3.\3/\3/\3/\3\60\3"+
+ "\60\3\61\3\61\3\62\3\62\3\62\3\63\3\63\3\63\3\64\3\64\3\64\3\65\3\65\3"+
+ "\65\3\66\3\66\3\66\3\67\3\67\3\67\38\38\38\39\39\39\39\3:\3:\3:\3:\3;"+
+ "\3;\3;\3<\3<\3<\3=\3=\3=\3>\3>\3>\3>\3>\3>\3?\3?\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+
+ "\3@\3@\3@\3@\3@\3@\3@\3@\5@\u026c\n@\3A\3A\3A\3A\7A\u0272\nA\fA\16A\u0275"+
+ "\13A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3"+
+ "B\3B\3B\5B\u028f\nB\3C\3C\3C\3C\7C\u0295\nC\fC\16C\u0298\13C\3C\3C\3D"+
+ "\3D\3D\3D\5D\u02a0\nD\3D\3D\3E\3E\3E\3E\3E\3E\3E\3E\3E\5E\u02ad\nE\3F"+
+ "\3F\5F\u02b1\nF\3G\3G\3G\5G\u02b6\nG\3H\3H\3H\3H\3H\5H\u02bd\nH\3H\7H"+
+ "\u02c0\nH\fH\16H\u02c3\13H\3H\3H\6H\u02c7\nH\rH\16H\u02c8\3I\7I\u02cc"+
+ "\nI\fI\16I\u02cf\13I\3I\3I\6I\u02d3\nI\rI\16I\u02d4\3J\3J\3J\3J\3J\5J"+
+ "\u02dc\nJ\3J\7J\u02df\nJ\fJ\16J\u02e2\13J\3J\3J\6J\u02e6\nJ\rJ\16J\u02e7"+
+ "\3K\3K\3K\5K\u02ed\nK\3L\3L\3L\6L\u02f2\nL\rL\16L\u02f3\3L\3L\6L\u02f8"+
+ "\nL\rL\16L\u02f9\5L\u02fc\nL\3M\6M\u02ff\nM\rM\16M\u0300\3N\3N\3N\3N\3"+
+ "N\5N\u0308\nN\3N\6N\u030b\nN\rN\16N\u030c\3O\3O\3P\3P\3Q\3Q\3R\3R\7R\u0317"+
+ "\nR\fR\16R\u031a\13R\3S\3S\3T\3T\3U\3U\7U\u0322\nU\fU\16U\u0325\13U\3"+
+ "U\6U\u0328\nU\rU\16U\u0329\3V\6V\u032d\nV\rV\16V\u032e\3V\3V\3W\3W\3W"+
+ "\3W\7W\u0337\nW\fW\16W\u033a\13W\3W\3W\3X\3X\3X\3X\7X\u0342\nX\fX\16X"+
+ "\u0345\13X\3X\3X\3X\3X\3X\4\u0273\u0343\2Y\3\3\5\4\7\5\t\6\13\7\r\b\17"+
+ "\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+"+
+ "\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+"+
+ "U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081"+
+ "B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095"+
+ "L\u0097M\u0099N\u009bO\u009d\2\u009f\2\u00a1\2\u00a3P\u00a5\2\u00a7\2"+
+ "\u00a9Q\u00abR\u00adS\u00afT\3\2\r\3\2$$\3\2))\4\2DDdd\3\2\62\63\3\2\62"+
+ ";\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\5\2\13\f\17\17\"\"\4\2"+
+ "\f\f\17\17\2\u03b3\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13"+
+ "\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2"+
+ "\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2"+
+ "!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3"+
+ "\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2"+
+ "\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E"+
+ "\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2"+
+ "\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2"+
+ "\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k"+
+ "\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2"+
+ "\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2"+
+ "\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b"+
+ "\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2"+
+ "\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u00a3"+
+ "\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2"+
+ "\2\3\u00b1\3\2\2\2\5\u00b8\3\2\2\2\7\u00ba\3\2\2\2\t\u00bc\3\2\2\2\13"+
+ "\u00be\3\2\2\2\r\u00c0\3\2\2\2\17\u00c2\3\2\2\2\21\u00c4\3\2\2\2\23\u00cc"+
+ "\3\2\2\2\25\u00d4\3\2\2\2\27\u00da\3\2\2\2\31\u00dc\3\2\2\2\33\u00de\3"+
+ "\2\2\2\35\u00e4\3\2\2\2\37\u00eb\3\2\2\2!\u00f1\3\2\2\2#\u00fa\3\2\2\2"+
+ "%\u0101\3\2\2\2\'\u0104\3\2\2\2)\u0109\3\2\2\2+\u010f\3\2\2\2-\u0112\3"+
+ "\2\2\2/\u0116\3\2\2\2\61\u011d\3\2\2\2\63\u0121\3\2\2\2\65\u0124\3\2\2"+
+ "\2\67\u012b\3\2\2\29\u012d\3\2\2\2;\u012f\3\2\2\2=\u0131\3\2\2\2?\u0134"+
+ "\3\2\2\2A\u0137\3\2\2\2C\u0139\3\2\2\2E\u013b\3\2\2\2G\u013d\3\2\2\2I"+
+ "\u013f\3\2\2\2K\u0141\3\2\2\2M\u0144\3\2\2\2O\u0147\3\2\2\2Q\u0149\3\2"+
+ "\2\2S\u014b\3\2\2\2U\u014d\3\2\2\2W\u014f\3\2\2\2Y\u0152\3\2\2\2[\u0155"+
+ "\3\2\2\2]\u0158\3\2\2\2_\u015b\3\2\2\2a\u015d\3\2\2\2c\u015f\3\2\2\2e"+
+ "\u0162\3\2\2\2g\u0165\3\2\2\2i\u0168\3\2\2\2k\u016b\3\2\2\2m\u016e\3\2"+
+ "\2\2o\u0171\3\2\2\2q\u0174\3\2\2\2s\u0178\3\2\2\2u\u017c\3\2\2\2w\u017f"+
+ "\3\2\2\2y\u0182\3\2\2\2{\u0185\3\2\2\2}\u018b\3\2\2\2\177\u026b\3\2\2"+
+ "\2\u0081\u026d\3\2\2\2\u0083\u028e\3\2\2\2\u0085\u0290\3\2\2\2\u0087\u029b"+
+ "\3\2\2\2\u0089\u02ac\3\2\2\2\u008b\u02b0\3\2\2\2\u008d\u02b5\3\2\2\2\u008f"+
+ "\u02bc\3\2\2\2\u0091\u02cd\3\2\2\2\u0093\u02db\3\2\2\2\u0095\u02ec\3\2"+
+ "\2\2\u0097\u02fb\3\2\2\2\u0099\u02fe\3\2\2\2\u009b\u0307\3\2\2\2\u009d"+
+ "\u030e\3\2\2\2\u009f\u0310\3\2\2\2\u00a1\u0312\3\2\2\2\u00a3\u0314\3\2"+
+ "\2\2\u00a5\u031b\3\2\2\2\u00a7\u031d\3\2\2\2\u00a9\u031f\3\2\2\2\u00ab"+
+ "\u032c\3\2\2\2\u00ad\u0332\3\2\2\2\u00af\u033d\3\2\2\2\u00b1\u00b2\7k"+
+ "\2\2\u00b2\u00b3\7o\2\2\u00b3\u00b4\7r\2\2\u00b4\u00b5\7q\2\2\u00b5\u00b6"+
+ "\7t\2\2\u00b6\u00b7\7v\2\2\u00b7\4\3\2\2\2\u00b8\u00b9\7?\2\2\u00b9\6"+
+ "\3\2\2\2\u00ba\u00bb\7=\2\2\u00bb\b\3\2\2\2\u00bc\u00bd\7*\2\2\u00bd\n"+
+ "\3\2\2\2\u00be\u00bf\7+\2\2\u00bf\f\3\2\2\2\u00c0\u00c1\7}\2\2\u00c1\16"+
+ "\3\2\2\2\u00c2\u00c3\7\177\2\2\u00c3\20\3\2\2\2\u00c4\u00c5\7m\2\2\u00c5"+
+ "\u00c6\7k\2\2\u00c6\u00c7\7e\2\2\u00c7\u00c8\7m\2\2\u00c8\u00c9\7c\2\2"+
+ "\u00c9\u00ca\7u\2\2\u00ca\u00cb\7o\2\2\u00cb\22\3\2\2\2\u00cc\u00cd\7"+
+ "e\2\2\u00cd\u00ce\7n\2\2\u00ce\u00cf\7q\2\2\u00cf\u00d0\7d\2\2\u00d0\u00d1"+
+ "\7d\2\2\u00d1\u00d2\7g\2\2\u00d2\u00d3\7t\2\2\u00d3\24\3\2\2\2\u00d4\u00d5"+
+ "\7r\2\2\u00d5\u00d6\7c\2\2\u00d6\u00d7\7t\2\2\u00d7\u00d8\7c\2\2\u00d8"+
+ "\u00d9\7o\2\2\u00d9\26\3\2\2\2\u00da\u00db\7.\2\2\u00db\30\3\2\2\2\u00dc"+
+ "\u00dd\7<\2\2\u00dd\32\3\2\2\2\u00de\u00df\7e\2\2\u00df\u00e0\7q\2\2\u00e0"+
+ "\u00e1\7p\2\2\u00e1\u00e2\7u\2\2\u00e2\u00e3\7v\2\2\u00e3\34\3\2\2\2\u00e4"+
+ "\u00e5\7g\2\2\u00e5\u00e6\7z\2\2\u00e6\u00e7\7v\2\2\u00e7\u00e8\7g\2\2"+
+ "\u00e8\u00e9\7t\2\2\u00e9\u00ea\7p\2\2\u00ea\36\3\2\2\2\u00eb\u00ec\7"+
+ "c\2\2\u00ec\u00ed\7n\2\2\u00ed\u00ee\7k\2\2\u00ee\u00ef\7i\2\2\u00ef\u00f0"+
+ "\7p\2\2\u00f0 \3\2\2\2\u00f1\u00f2\7t\2\2\u00f2\u00f3\7g\2\2\u00f3\u00f4"+
+ "\7i\2\2\u00f4\u00f5\7k\2\2\u00f5\u00f6\7u\2\2\u00f6\u00f7\7v\2\2\u00f7"+
+ "\u00f8\7g\2\2\u00f8\u00f9\7t\2\2\u00f9\"\3\2\2\2\u00fa\u00fb\7k\2\2\u00fb"+
+ "\u00fc\7p\2\2\u00fc\u00fd\7n\2\2\u00fd\u00fe\7k\2\2\u00fe\u00ff\7p\2\2"+
+ "\u00ff\u0100\7g\2\2\u0100$\3\2\2\2\u0101\u0102\7k\2\2\u0102\u0103\7h\2"+
+ "\2\u0103&\3\2\2\2\u0104\u0105\7g\2\2\u0105\u0106\7n\2\2\u0106\u0107\7"+
+ "u\2\2\u0107\u0108\7g\2\2\u0108(\3\2\2\2\u0109\u010a\7y\2\2\u010a\u010b"+
+ "\7j\2\2\u010b\u010c\7k\2\2\u010c\u010d\7n\2\2\u010d\u010e\7g\2\2\u010e"+
+ "*\3\2\2\2\u010f\u0110\7f\2\2\u0110\u0111\7q\2\2\u0111,\3\2\2\2\u0112\u0113"+
+ "\7h\2\2\u0113\u0114\7q\2\2\u0114\u0115\7t\2\2\u0115.\3\2\2\2\u0116\u0117"+
+ "\7t\2\2\u0117\u0118\7g\2\2\u0118\u0119\7v\2\2\u0119\u011a\7w\2\2\u011a"+
+ "\u011b\7t\2\2\u011b\u011c\7p\2\2\u011c\60\3\2\2\2\u011d\u011e\7c\2\2\u011e"+
+ "\u011f\7u\2\2\u011f\u0120\7o\2\2\u0120\62\3\2\2\2\u0121\u0122\7\60\2\2"+
+ "\u0122\u0123\7\60\2\2\u0123\64\3\2\2\2\u0124\u0125\7u\2\2\u0125\u0126"+
+ "\7k\2\2\u0126\u0127\7i\2\2\u0127\u0128\7p\2\2\u0128\u0129\7g\2\2\u0129"+
+ "\u012a\7f\2\2\u012a\66\3\2\2\2\u012b\u012c\7,\2\2\u012c8\3\2\2\2\u012d"+
+ "\u012e\7]\2\2\u012e:\3\2\2\2\u012f\u0130\7_\2\2\u0130<\3\2\2\2\u0131\u0132"+
+ "\7/\2\2\u0132\u0133\7/\2\2\u0133>\3\2\2\2\u0134\u0135\7-\2\2\u0135\u0136"+
+ "\7-\2\2\u0136@\3\2\2\2\u0137\u0138\7-\2\2\u0138B\3\2\2\2\u0139\u013a\7"+
+ "/\2\2\u013aD\3\2\2\2\u013b\u013c\7#\2\2\u013cF\3\2\2\2\u013d\u013e\7("+
+ "\2\2\u013eH\3\2\2\2\u013f\u0140\7\u0080\2\2\u0140J\3\2\2\2\u0141\u0142"+
+ "\7@\2\2\u0142\u0143\7@\2\2\u0143L\3\2\2\2\u0144\u0145\7>\2\2\u0145\u0146"+
+ "\7>\2\2\u0146N\3\2\2\2\u0147\u0148\7\61\2\2\u0148P\3\2\2\2\u0149\u014a"+
+ "\7\'\2\2\u014aR\3\2\2\2\u014b\u014c\7>\2\2\u014cT\3\2\2\2\u014d\u014e"+
+ "\7@\2\2\u014eV\3\2\2\2\u014f\u0150\7?\2\2\u0150\u0151\7?\2\2\u0151X\3"+
+ "\2\2\2\u0152\u0153\7#\2\2\u0153\u0154\7?\2\2\u0154Z\3\2\2\2\u0155\u0156"+
+ "\7>\2\2\u0156\u0157\7?\2\2\u0157\\\3\2\2\2\u0158\u0159\7@\2\2\u0159\u015a"+
+ "\7?\2\2\u015a^\3\2\2\2\u015b\u015c\7`\2\2\u015c`\3\2\2\2\u015d\u015e\7"+
+ "~\2\2\u015eb\3\2\2\2\u015f\u0160\7(\2\2\u0160\u0161\7(\2\2\u0161d\3\2"+
+ "\2\2\u0162\u0163\7~\2\2\u0163\u0164\7~\2\2\u0164f\3\2\2\2\u0165\u0166"+
+ "\7-\2\2\u0166\u0167\7?\2\2\u0167h\3\2\2\2\u0168\u0169\7/\2\2\u0169\u016a"+
+ "\7?\2\2\u016aj\3\2\2\2\u016b\u016c\7,\2\2\u016c\u016d\7?\2\2\u016dl\3"+
+ "\2\2\2\u016e\u016f\7\61\2\2\u016f\u0170\7?\2\2\u0170n\3\2\2\2\u0171\u0172"+
+ "\7\'\2\2\u0172\u0173\7?\2\2\u0173p\3\2\2\2\u0174\u0175\7>\2\2\u0175\u0176"+
+ "\7>\2\2\u0176\u0177\7?\2\2\u0177r\3\2\2\2\u0178\u0179\7@\2\2\u0179\u017a"+
+ "\7@\2\2\u017a\u017b\7?\2\2\u017bt\3\2\2\2\u017c\u017d\7(\2\2\u017d\u017e"+
+ "\7?\2\2\u017ev\3\2\2\2\u017f\u0180\7~\2\2\u0180\u0181\7?\2\2\u0181x\3"+
+ "\2\2\2\u0182\u0183\7`\2\2\u0183\u0184\7?\2\2\u0184z\3\2\2\2\u0185\u0186"+
+ "\7\60\2\2\u0186\u0187\7d\2\2\u0187\u0188\7{\2\2\u0188\u0189\7v\2\2\u0189"+
+ "\u018a\7g\2\2\u018a|\3\2\2\2\u018b\u018c\7%\2\2\u018c~\3\2\2\2\u018d\u018e"+
+ "\7d\2\2\u018e\u018f\7t\2\2\u018f\u026c\7m\2\2\u0190\u0191\7q\2\2\u0191"+
+ "\u0192\7t\2\2\u0192\u026c\7c\2\2\u0193\u0194\7m\2\2\u0194\u0195\7k\2\2"+
+ "\u0195\u026c\7n\2\2\u0196\u0197\7u\2\2\u0197\u0198\7n\2\2\u0198\u026c"+
+ "\7q\2\2\u0199\u019a\7p\2\2\u019a\u019b\7q\2\2\u019b\u026c\7r\2\2\u019c"+
+ "\u019d\7c\2\2\u019d\u019e\7u\2\2\u019e\u026c\7n\2\2\u019f\u01a0\7r\2\2"+
+ "\u01a0\u01a1\7j\2\2\u01a1\u026c\7r\2\2\u01a2\u01a3\7c\2\2\u01a3\u01a4"+
+ "\7p\2\2\u01a4\u026c\7e\2\2\u01a5\u01a6\7d\2\2\u01a6\u01a7\7r\2\2\u01a7"+
+ "\u026c\7n\2\2\u01a8\u01a9\7e\2\2\u01a9\u01aa\7n\2\2\u01aa\u026c\7e\2\2"+
+ "\u01ab\u01ac\7l\2\2\u01ac\u01ad\7u\2\2\u01ad\u026c\7t\2\2\u01ae\u01af"+
+ "\7c\2\2\u01af\u01b0\7p\2\2\u01b0\u026c\7f\2\2\u01b1\u01b2\7t\2\2\u01b2"+
+ "\u01b3\7n\2\2\u01b3\u026c\7c\2\2\u01b4\u01b5\7d\2\2\u01b5\u01b6\7k\2\2"+
+ "\u01b6\u026c\7v\2\2\u01b7\u01b8\7t\2\2\u01b8\u01b9\7q\2\2\u01b9\u026c"+
+ "\7n\2\2\u01ba\u01bb\7r\2\2\u01bb\u01bc\7n\2\2\u01bc\u026c\7c\2\2\u01bd"+
+ "\u01be\7r\2\2\u01be\u01bf\7n\2\2\u01bf\u026c\7r\2\2\u01c0\u01c1\7d\2\2"+
+ "\u01c1\u01c2\7o\2\2\u01c2\u026c\7k\2\2\u01c3\u01c4\7u\2\2\u01c4\u01c5"+
+ "\7g\2\2\u01c5\u026c\7e\2\2\u01c6\u01c7\7t\2\2\u01c7\u01c8\7v\2\2\u01c8"+
+ "\u026c\7k\2\2\u01c9\u01ca\7g\2\2\u01ca\u01cb\7q\2\2\u01cb\u026c\7t\2\2"+
+ "\u01cc\u01cd\7u\2\2\u01cd\u01ce\7t\2\2\u01ce\u026c\7g\2\2\u01cf\u01d0"+
+ "\7n\2\2\u01d0\u01d1\7u\2\2\u01d1\u026c\7t\2\2\u01d2\u01d3\7r\2\2\u01d3"+
+ "\u01d4\7j\2\2\u01d4\u026c\7c\2\2\u01d5\u01d6\7c\2\2\u01d6\u01d7\7n\2\2"+
+ "\u01d7\u026c\7t\2\2\u01d8\u01d9\7l\2\2\u01d9\u01da\7o\2\2\u01da\u026c"+
+ "\7r\2\2\u01db\u01dc\7d\2\2\u01dc\u01dd\7x\2\2\u01dd\u026c\7e\2\2\u01de"+
+ "\u01df\7e\2\2\u01df\u01e0\7n\2\2\u01e0\u026c\7k\2\2\u01e1\u01e2\7t\2\2"+
+ "\u01e2\u01e3\7v\2\2\u01e3\u026c\7u\2\2\u01e4\u01e5\7c\2\2\u01e5\u01e6"+
+ "\7f\2\2\u01e6\u026c\7e\2\2\u01e7\u01e8\7t\2\2\u01e8\u01e9\7t\2\2\u01e9"+
+ "\u026c\7c\2\2\u01ea\u01eb\7d\2\2\u01eb\u01ec\7x\2\2\u01ec\u026c\7u\2\2"+
+ "\u01ed\u01ee\7u\2\2\u01ee\u01ef\7g\2\2\u01ef\u026c\7k\2\2\u01f0\u01f1"+
+ "\7u\2\2\u01f1\u01f2\7c\2\2\u01f2\u026c\7z\2\2\u01f3\u01f4\7u\2\2\u01f4"+
+ "\u01f5\7v\2\2\u01f5\u026c\7{\2\2\u01f6\u01f7\7u\2\2\u01f7\u01f8\7v\2\2"+
+ "\u01f8\u026c\7c\2\2\u01f9\u01fa\7u\2\2\u01fa\u01fb\7v\2\2\u01fb\u026c"+
+ "\7z\2\2\u01fc\u01fd\7f\2\2\u01fd\u01fe\7g\2\2\u01fe\u026c\7{\2\2\u01ff"+
+ "\u0200\7v\2\2\u0200\u0201\7z\2\2\u0201\u026c\7c\2\2\u0202\u0203\7z\2\2"+
+ "\u0203\u0204\7c\2\2\u0204\u026c\7c\2\2\u0205\u0206\7d\2\2\u0206\u0207"+
+ "\7e\2\2\u0207\u026c\7e\2\2\u0208\u0209\7c\2\2\u0209\u020a\7j\2\2\u020a"+
+ "\u026c\7z\2\2\u020b\u020c\7v\2\2\u020c\u020d\7{\2\2\u020d\u026c\7c\2\2"+
+ "\u020e\u020f\7v\2\2\u020f\u0210\7z\2\2\u0210\u026c\7u\2\2\u0211\u0212"+
+ "\7v\2\2\u0212\u0213\7c\2\2\u0213\u026c\7u\2\2\u0214\u0215\7u\2\2\u0215"+
+ "\u0216\7j\2\2\u0216\u026c\7{\2\2\u0217\u0218\7u\2\2\u0218\u0219\7j\2\2"+
+ "\u0219\u026c\7z\2\2\u021a\u021b\7n\2\2\u021b\u021c\7f\2\2\u021c\u026c"+
+ "\7{\2\2\u021d\u021e\7n\2\2\u021e\u021f\7f\2\2\u021f\u026c\7c\2\2\u0220"+
+ "\u0221\7n\2\2\u0221\u0222\7f\2\2\u0222\u026c\7z\2\2\u0223\u0224\7n\2\2"+
+ "\u0224\u0225\7c\2\2\u0225\u026c\7z\2\2\u0226\u0227\7v\2\2\u0227\u0228"+
+ "\7c\2\2\u0228\u026c\7{\2\2\u0229\u022a\7v\2\2\u022a\u022b\7c\2\2\u022b"+
+ "\u026c\7z\2\2\u022c\u022d\7d\2\2\u022d\u022e\7e\2\2\u022e\u026c\7u\2\2"+
+ "\u022f\u0230\7e\2\2\u0230\u0231\7n\2\2\u0231\u026c\7x\2\2\u0232\u0233"+
+ "\7v\2\2\u0233\u0234\7u\2\2\u0234\u026c\7z\2\2\u0235\u0236\7n\2\2\u0236"+
+ "\u0237\7c\2\2\u0237\u026c\7u\2\2\u0238\u0239\7e\2\2\u0239\u023a\7r\2\2"+
+ "\u023a\u026c\7{\2\2\u023b\u023c\7e\2\2\u023c\u023d\7o\2\2\u023d\u026c"+
+ "\7r\2\2\u023e\u023f\7e\2\2\u023f\u0240\7r\2\2\u0240\u026c\7z\2\2\u0241"+
+ "\u0242\7f\2\2\u0242\u0243\7e\2\2\u0243\u026c\7r\2\2\u0244\u0245\7f\2\2"+
+ "\u0245\u0246\7g\2\2\u0246\u026c\7e\2\2\u0247\u0248\7k\2\2\u0248\u0249"+
+ "\7p\2\2\u0249\u026c\7e\2\2\u024a\u024b\7c\2\2\u024b\u024c\7z\2\2\u024c"+
+ "\u026c\7u\2\2\u024d\u024e\7d\2\2\u024e\u024f\7p\2\2\u024f\u026c\7g\2\2"+
+ "\u0250\u0251\7e\2\2\u0251\u0252\7n\2\2\u0252\u026c\7f\2\2\u0253\u0254"+
+ "\7u\2\2\u0254\u0255\7d\2\2\u0255\u026c\7e\2\2\u0256\u0257\7k\2\2\u0257"+
+ "\u0258\7u\2\2\u0258\u026c\7e\2\2\u0259\u025a\7k\2\2\u025a\u025b\7p\2\2"+
+ "\u025b\u026c\7z\2\2\u025c\u025d\7d\2\2\u025d\u025e\7g\2\2\u025e\u026c"+
+ "\7s\2\2\u025f\u0260\7u\2\2\u0260\u0261\7g\2\2\u0261\u026c\7f\2\2\u0262"+
+ "\u0263\7f\2\2\u0263\u0264\7g\2\2\u0264\u026c\7z\2\2\u0265\u0266\7k\2\2"+
+ "\u0266\u0267\7p\2\2\u0267\u026c\7{\2\2\u0268\u0269\7t\2\2\u0269\u026a"+
+ "\7q\2\2\u026a\u026c\7t\2\2\u026b\u018d\3\2\2\2\u026b\u0190\3\2\2\2\u026b"+
+ "\u0193\3\2\2\2\u026b\u0196\3\2\2\2\u026b\u0199\3\2\2\2\u026b\u019c\3\2"+
+ "\2\2\u026b\u019f\3\2\2\2\u026b\u01a2\3\2\2\2\u026b\u01a5\3\2\2\2\u026b"+
+ "\u01a8\3\2\2\2\u026b\u01ab\3\2\2\2\u026b\u01ae\3\2\2\2\u026b\u01b1\3\2"+
+ "\2\2\u026b\u01b4\3\2\2\2\u026b\u01b7\3\2\2\2\u026b\u01ba\3\2\2\2\u026b"+
+ "\u01bd\3\2\2\2\u026b\u01c0\3\2\2\2\u026b\u01c3\3\2\2\2\u026b\u01c6\3\2"+
+ "\2\2\u026b\u01c9\3\2\2\2\u026b\u01cc\3\2\2\2\u026b\u01cf\3\2\2\2\u026b"+
+ "\u01d2\3\2\2\2\u026b\u01d5\3\2\2\2\u026b\u01d8\3\2\2\2\u026b\u01db\3\2"+
+ "\2\2\u026b\u01de\3\2\2\2\u026b\u01e1\3\2\2\2\u026b\u01e4\3\2\2\2\u026b"+
+ "\u01e7\3\2\2\2\u026b\u01ea\3\2\2\2\u026b\u01ed\3\2\2\2\u026b\u01f0\3\2"+
+ "\2\2\u026b\u01f3\3\2\2\2\u026b\u01f6\3\2\2\2\u026b\u01f9\3\2\2\2\u026b"+
+ "\u01fc\3\2\2\2\u026b\u01ff\3\2\2\2\u026b\u0202\3\2\2\2\u026b\u0205\3\2"+
+ "\2\2\u026b\u0208\3\2\2\2\u026b\u020b\3\2\2\2\u026b\u020e\3\2\2\2\u026b"+
+ "\u0211\3\2\2\2\u026b\u0214\3\2\2\2\u026b\u0217\3\2\2\2\u026b\u021a\3\2"+
+ "\2\2\u026b\u021d\3\2\2\2\u026b\u0220\3\2\2\2\u026b\u0223\3\2\2\2\u026b"+
+ "\u0226\3\2\2\2\u026b\u0229\3\2\2\2\u026b\u022c\3\2\2\2\u026b\u022f\3\2"+
+ "\2\2\u026b\u0232\3\2\2\2\u026b\u0235\3\2\2\2\u026b\u0238\3\2\2\2\u026b"+
+ "\u023b\3\2\2\2\u026b\u023e\3\2\2\2\u026b\u0241\3\2\2\2\u026b\u0244\3\2"+
+ "\2\2\u026b\u0247\3\2\2\2\u026b\u024a\3\2\2\2\u026b\u024d\3\2\2\2\u026b"+
+ "\u0250\3\2\2\2\u026b\u0253\3\2\2\2\u026b\u0256\3\2\2\2\u026b\u0259\3\2"+
+ "\2\2\u026b\u025c\3\2\2\2\u026b\u025f\3\2\2\2\u026b\u0262\3\2\2\2\u026b"+
+ "\u0265\3\2\2\2\u026b\u0268\3\2\2\2\u026c\u0080\3\2\2\2\u026d\u026e\7}"+
+ "\2\2\u026e\u026f\7}\2\2\u026f\u0273\3\2\2\2\u0270\u0272\13\2\2\2\u0271"+
+ "\u0270\3\2\2\2\u0272\u0275\3\2\2\2\u0273\u0274\3\2\2\2\u0273\u0271\3\2"+
+ "\2\2\u0274\u0276\3\2\2\2\u0275\u0273\3\2\2\2\u0276\u0277\7\177\2\2\u0277"+
+ "\u0278\7\177\2\2\u0278\u0082\3\2\2\2\u0279\u027a\7d\2\2\u027a\u027b\7"+
+ "{\2\2\u027b\u027c\7v\2\2\u027c\u028f\7g\2\2\u027d\u027e\7y\2\2\u027e\u027f"+
+ "\7q\2\2\u027f\u0280\7t\2\2\u0280\u028f\7f\2\2\u0281\u0282\7f\2\2\u0282"+
+ "\u0283\7y\2\2\u0283\u0284\7q\2\2\u0284\u0285\7t\2\2\u0285\u028f\7f\2\2"+
+ "\u0286\u0287\7d\2\2\u0287\u0288\7q\2\2\u0288\u0289\7q\2\2\u0289\u028f"+
+ "\7n\2\2\u028a\u028b\7x\2\2\u028b\u028c\7q\2\2\u028c\u028d\7k\2\2\u028d"+
+ "\u028f\7f\2\2\u028e\u0279\3\2\2\2\u028e\u027d\3\2\2\2\u028e\u0281\3\2"+
+ "\2\2\u028e\u0286\3\2\2\2\u028e\u028a\3\2\2\2\u028f\u0084\3\2\2\2\u0290"+
+ "\u0296\7$\2\2\u0291\u0292\7^\2\2\u0292\u0295\7$\2\2\u0293\u0295\n\2\2"+
+ "\2\u0294\u0291\3\2\2\2\u0294\u0293\3\2\2\2\u0295\u0298\3\2\2\2\u0296\u0294"+
+ "\3\2\2\2\u0296\u0297\3\2\2\2\u0297\u0299\3\2\2\2\u0298\u0296\3\2\2\2\u0299"+
+ "\u029a\7$\2\2\u029a\u0086\3\2\2\2\u029b\u029f\7)\2\2\u029c\u029d\7^\2"+
+ "\2\u029d\u02a0\7)\2\2\u029e\u02a0\n\3\2\2\u029f\u029c\3\2\2\2\u029f\u029e"+
+ "\3\2\2\2\u02a0\u02a1\3\2\2\2\u02a1\u02a2\7)\2\2\u02a2\u0088\3\2\2\2\u02a3"+
+ "\u02a4\7v\2\2\u02a4\u02a5\7t\2\2\u02a5\u02a6\7w\2\2\u02a6\u02ad\7g\2\2"+
+ "\u02a7\u02a8\7h\2\2\u02a8\u02a9\7c\2\2\u02a9\u02aa\7n\2\2\u02aa\u02ab"+
+ "\7u\2\2\u02ab\u02ad\7g\2\2\u02ac\u02a3\3\2\2\2\u02ac\u02a7\3\2\2\2\u02ad"+
+ "\u008a\3\2\2\2\u02ae\u02b1\5\u008dG\2\u02af\u02b1\5\u0095K\2\u02b0\u02ae"+
+ "\3\2\2\2\u02b0\u02af\3\2\2\2\u02b1\u008c\3\2\2\2\u02b2\u02b6\5\u008fH"+
+ "\2\u02b3\u02b6\5\u0091I\2\u02b4\u02b6\5\u0093J\2\u02b5\u02b2\3\2\2\2\u02b5"+
+ "\u02b3\3\2\2\2\u02b5\u02b4\3\2\2\2\u02b6\u008e\3\2\2\2\u02b7\u02bd\7\'"+
+ "\2\2\u02b8\u02b9\7\62\2\2\u02b9\u02bd\7d\2\2\u02ba\u02bb\7\62\2\2\u02bb"+
+ "\u02bd\7D\2\2\u02bc\u02b7\3\2\2\2\u02bc\u02b8\3\2\2\2\u02bc\u02ba\3\2"+
+ "\2\2\u02bd\u02c1\3\2\2\2\u02be\u02c0\5\u009dO\2\u02bf\u02be\3\2\2\2\u02c0"+
+ "\u02c3\3\2\2\2\u02c1\u02bf\3\2\2\2\u02c1\u02c2\3\2\2\2\u02c2\u02c4\3\2"+
+ "\2\2\u02c3\u02c1\3\2\2\2\u02c4\u02c6\7\60\2\2\u02c5\u02c7\5\u009dO\2\u02c6"+
+ "\u02c5\3\2\2\2\u02c7\u02c8\3\2\2\2\u02c8\u02c6\3\2\2\2\u02c8\u02c9\3\2"+
+ "\2\2\u02c9\u0090\3\2\2\2\u02ca\u02cc\5\u009fP\2\u02cb\u02ca\3\2\2\2\u02cc"+
+ "\u02cf\3\2\2\2\u02cd\u02cb\3\2\2\2\u02cd\u02ce\3\2\2\2\u02ce\u02d0\3\2"+
+ "\2\2\u02cf\u02cd\3\2\2\2\u02d0\u02d2\7\60\2\2\u02d1\u02d3\5\u009fP\2\u02d2"+
+ "\u02d1\3\2\2\2\u02d3\u02d4\3\2\2\2\u02d4\u02d2\3\2\2\2\u02d4\u02d5\3\2"+
+ "\2\2\u02d5\u0092\3\2\2\2\u02d6\u02dc\7&\2\2\u02d7\u02d8\7\62\2\2\u02d8"+
+ "\u02dc\7z\2\2\u02d9\u02da\7\62\2\2\u02da\u02dc\7Z\2\2\u02db\u02d6\3\2"+
+ "\2\2\u02db\u02d7\3\2\2\2\u02db\u02d9\3\2\2\2\u02dc\u02e0\3\2\2\2\u02dd"+
+ "\u02df\5\u00a1Q\2\u02de\u02dd\3\2\2\2\u02df\u02e2\3\2\2\2\u02e0\u02de"+
+ "\3\2\2\2\u02e0\u02e1\3\2\2\2\u02e1\u02e3\3\2\2\2\u02e2\u02e0\3\2\2\2\u02e3"+
+ "\u02e5\7\60\2\2\u02e4\u02e6\5\u00a1Q\2\u02e5\u02e4\3\2\2\2\u02e6\u02e7"+
+ "\3\2\2\2\u02e7\u02e5\3\2\2\2\u02e7\u02e8\3\2\2\2\u02e8\u0094\3\2\2\2\u02e9"+
+ "\u02ed\5\u0099M\2\u02ea\u02ed\5\u009bN\2\u02eb\u02ed\5\u0097L\2\u02ec"+
+ "\u02e9\3\2\2\2\u02ec\u02ea\3\2\2\2\u02ec\u02eb\3\2\2\2\u02ed\u0096\3\2"+
+ "\2\2\u02ee\u02ef\7\62\2\2\u02ef\u02f1\t\4\2\2\u02f0\u02f2\5\u009dO\2\u02f1"+
+ "\u02f0\3\2\2\2\u02f2\u02f3\3\2\2\2\u02f3\u02f1\3\2\2\2\u02f3\u02f4\3\2"+
+ "\2\2\u02f4\u02fc\3\2\2\2\u02f5\u02f7\7\'\2\2\u02f6\u02f8\5\u009dO\2\u02f7"+
+ "\u02f6\3\2\2\2\u02f8\u02f9\3\2\2\2\u02f9\u02f7\3\2\2\2\u02f9\u02fa\3\2"+
+ "\2\2\u02fa\u02fc\3\2\2\2\u02fb\u02ee\3\2\2\2\u02fb\u02f5\3\2\2\2\u02fc"+
+ "\u0098\3\2\2\2\u02fd\u02ff\5\u009fP\2\u02fe\u02fd\3\2\2\2\u02ff\u0300"+
+ "\3\2\2\2\u0300\u02fe\3\2\2\2\u0300\u0301\3\2\2\2\u0301\u009a\3\2\2\2\u0302"+
+ "\u0308\7&\2\2\u0303\u0304\7\62\2\2\u0304\u0308\7z\2\2\u0305\u0306\7\62"+
+ "\2\2\u0306\u0308\7Z\2\2\u0307\u0302\3\2\2\2\u0307\u0303\3\2\2\2\u0307"+
+ "\u0305\3\2\2\2\u0308\u030a\3\2\2\2\u0309\u030b\5\u00a1Q\2\u030a\u0309"+
+ "\3\2\2\2\u030b\u030c\3\2\2\2\u030c\u030a\3\2\2\2\u030c\u030d\3\2\2\2\u030d"+
+ "\u009c\3\2\2\2\u030e\u030f\t\5\2\2\u030f\u009e\3\2\2\2\u0310\u0311\t\6"+
+ "\2\2\u0311\u00a0\3\2\2\2\u0312\u0313\t\7\2\2\u0313\u00a2\3\2\2\2\u0314"+
+ "\u0318\5\u00a5S\2\u0315\u0317\5\u00a7T\2\u0316\u0315\3\2\2\2\u0317\u031a"+
+ "\3\2\2\2\u0318\u0316\3\2\2\2\u0318\u0319\3\2\2\2\u0319\u00a4\3\2\2\2\u031a"+
+ "\u0318\3\2\2\2\u031b\u031c\t\b\2\2\u031c\u00a6\3\2\2\2\u031d\u031e\t\t"+
+ "\2\2\u031e\u00a8\3\2\2\2\u031f\u0323\7#\2\2\u0320\u0322\5\u00a7T\2\u0321"+
+ "\u0320\3\2\2\2\u0322\u0325\3\2\2\2\u0323\u0321\3\2\2\2\u0323\u0324\3\2"+
+ "\2\2\u0324\u0327\3\2\2\2\u0325\u0323\3\2\2\2\u0326\u0328\t\n\2\2\u0327"+
+ "\u0326\3\2\2\2\u0328\u0329\3\2\2\2\u0329\u0327\3\2\2\2\u0329\u032a\3\2"+
+ "\2\2\u032a\u00aa\3\2\2\2\u032b\u032d\t\13\2\2\u032c\u032b\3\2\2\2\u032d"+
+ "\u032e\3\2\2\2\u032e\u032c\3\2\2\2\u032e\u032f\3\2\2\2\u032f\u0330\3\2"+
+ "\2\2\u0330\u0331\bV\2\2\u0331\u00ac\3\2\2\2\u0332\u0333\7\61\2\2\u0333"+
+ "\u0334\7\61\2\2\u0334\u0338\3\2\2\2\u0335\u0337\n\f\2\2\u0336\u0335\3"+
+ "\2\2\2\u0337\u033a\3\2\2\2\u0338\u0336\3\2\2\2\u0338\u0339\3\2\2\2\u0339"+
+ "\u033b\3\2\2\2\u033a\u0338\3\2\2\2\u033b\u033c\bW\2\2\u033c\u00ae\3\2"+
+ "\2\2\u033d\u033e\7\61\2\2\u033e\u033f\7,\2\2\u033f\u0343\3\2\2\2\u0340"+
+ "\u0342\13\2\2\2\u0341\u0340\3\2\2\2\u0342\u0345\3\2\2\2\u0343\u0344\3"+
+ "\2\2\2\u0343\u0341\3\2\2\2\u0344\u0346\3\2\2\2\u0345\u0343\3\2\2\2\u0346"+
+ "\u0347\7,\2\2\u0347\u0348\7\61\2\2\u0348\u0349\3\2\2\2\u0349\u034a\bX"+
+ "\2\2\u034a\u00b0\3\2\2\2!\2\u026b\u0273\u028e\u0294\u0296\u029f\u02ac"+
+ "\u02b0\u02b5\u02bc\u02c1\u02c8\u02cd\u02d4\u02db\u02e0\u02e7\u02ec\u02f3"+
+ "\u02f9\u02fb\u0300\u0307\u030c\u0318\u0323\u0329\u032e\u0338\u0343\3\b"+
+ "\2\2";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens
index a8ebe6406..3e4dbaea9 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens
@@ -56,25 +56,30 @@ T__54=55
T__55=56
T__56=57
T__57=58
-MNEMONIC=59
-SIMPLETYPE=60
-STRING=61
-CHAR=62
-BOOLEAN=63
-NUMBER=64
-NUMFLOAT=65
-BINFLOAT=66
-DECFLOAT=67
-HEXFLOAT=68
-NUMINT=69
-BININTEGER=70
-DECINTEGER=71
-HEXINTEGER=72
-NAME=73
-ASMREL=74
-WS=75
-COMMENT_LINE=76
-COMMENT_BLOCK=77
+T__58=59
+T__59=60
+T__60=61
+T__61=62
+MNEMONIC=63
+KICKASM=64
+SIMPLETYPE=65
+STRING=66
+CHAR=67
+BOOLEAN=68
+NUMBER=69
+NUMFLOAT=70
+BINFLOAT=71
+DECFLOAT=72
+HEXFLOAT=73
+NUMINT=74
+BININTEGER=75
+DECINTEGER=76
+HEXINTEGER=77
+NAME=78
+ASMREL=79
+WS=80
+COMMENT_LINE=81
+COMMENT_BLOCK=82
'import'=1
'='=2
';'=3
@@ -82,54 +87,58 @@ COMMENT_BLOCK=77
')'=5
'{'=6
'}'=7
-','=8
-'const'=9
-'align'=10
-'register'=11
-'inline'=12
-'if'=13
-'else'=14
-'while'=15
-'do'=16
-'for'=17
-'return'=18
-'asm'=19
-':'=20
-'..'=21
-'signed'=22
-'*'=23
-'['=24
-']'=25
-'--'=26
-'++'=27
-'+'=28
-'-'=29
-'!'=30
-'&'=31
-'~'=32
-'>>'=33
-'<<'=34
-'/'=35
-'%'=36
-'<'=37
-'>'=38
-'=='=39
-'!='=40
-'<='=41
-'>='=42
-'^'=43
-'|'=44
-'&&'=45
-'||'=46
-'+='=47
-'-='=48
-'*='=49
-'/='=50
-'%='=51
-'<<='=52
-'>>='=53
-'&='=54
-'|='=55
-'^='=56
-'.byte'=57
-'#'=58
+'kickasm'=8
+'clobber'=9
+'param'=10
+','=11
+':'=12
+'const'=13
+'extern'=14
+'align'=15
+'register'=16
+'inline'=17
+'if'=18
+'else'=19
+'while'=20
+'do'=21
+'for'=22
+'return'=23
+'asm'=24
+'..'=25
+'signed'=26
+'*'=27
+'['=28
+']'=29
+'--'=30
+'++'=31
+'+'=32
+'-'=33
+'!'=34
+'&'=35
+'~'=36
+'>>'=37
+'<<'=38
+'/'=39
+'%'=40
+'<'=41
+'>'=42
+'=='=43
+'!='=44
+'<='=45
+'>='=46
+'^'=47
+'|'=48
+'&&'=49
+'||'=50
+'+='=51
+'-='=52
+'*='=53
+'/='=54
+'%='=55
+'<<='=56
+'>>='=57
+'&='=58
+'|='=59
+'^='=60
+'.byte'=61
+'#'=62
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java
index de3811394..eacef4805 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java
@@ -87,6 +87,56 @@ public interface KickCListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitDeclFunction(KickCParser.DeclFunctionContext ctx);
+ /**
+ * Enter a parse tree produced by {@link KickCParser#declKasm}.
+ * @param ctx the parse tree
+ */
+ void enterDeclKasm(KickCParser.DeclKasmContext ctx);
+ /**
+ * Exit a parse tree produced by {@link KickCParser#declKasm}.
+ * @param ctx the parse tree
+ */
+ void exitDeclKasm(KickCParser.DeclKasmContext ctx);
+ /**
+ * Enter a parse tree produced by {@link KickCParser#kasmParams}.
+ * @param ctx the parse tree
+ */
+ void enterKasmParams(KickCParser.KasmParamsContext ctx);
+ /**
+ * Exit a parse tree produced by {@link KickCParser#kasmParams}.
+ * @param ctx the parse tree
+ */
+ void exitKasmParams(KickCParser.KasmParamsContext ctx);
+ /**
+ * Enter a parse tree produced by {@link KickCParser#kasmParam}.
+ * @param ctx the parse tree
+ */
+ void enterKasmParam(KickCParser.KasmParamContext ctx);
+ /**
+ * Exit a parse tree produced by {@link KickCParser#kasmParam}.
+ * @param ctx the parse tree
+ */
+ void exitKasmParam(KickCParser.KasmParamContext ctx);
+ /**
+ * Enter a parse tree produced by {@link KickCParser#kasmImportList}.
+ * @param ctx the parse tree
+ */
+ void enterKasmImportList(KickCParser.KasmImportListContext ctx);
+ /**
+ * Exit a parse tree produced by {@link KickCParser#kasmImportList}.
+ * @param ctx the parse tree
+ */
+ void exitKasmImportList(KickCParser.KasmImportListContext ctx);
+ /**
+ * Enter a parse tree produced by {@link KickCParser#kasmParamList}.
+ * @param ctx the parse tree
+ */
+ void enterKasmParamList(KickCParser.KasmParamListContext ctx);
+ /**
+ * Exit a parse tree produced by {@link KickCParser#kasmParamList}.
+ * @param ctx the parse tree
+ */
+ void exitKasmParamList(KickCParser.KasmParamListContext ctx);
/**
* Enter a parse tree produced by {@link KickCParser#parameterListDecl}.
* @param ctx the parse tree
@@ -119,6 +169,18 @@ public interface KickCListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitDirectiveConst(KickCParser.DirectiveConstContext ctx);
+ /**
+ * Enter a parse tree produced by the {@code directiveExtern}
+ * labeled alternative in {@link KickCParser#directive}.
+ * @param ctx the parse tree
+ */
+ void enterDirectiveExtern(KickCParser.DirectiveExternContext ctx);
+ /**
+ * Exit a parse tree produced by the {@code directiveExtern}
+ * labeled alternative in {@link KickCParser#directive}.
+ * @param ctx the parse tree
+ */
+ void exitDirectiveExtern(KickCParser.DirectiveExternContext ctx);
/**
* Enter a parse tree produced by the {@code directiveAlign}
* labeled alternative in {@link KickCParser#directive}.
@@ -273,6 +335,18 @@ public interface KickCListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitStmtAsm(KickCParser.StmtAsmContext ctx);
+ /**
+ * Enter a parse tree produced by the {@code stmtDeclKasm}
+ * labeled alternative in {@link KickCParser#stmt}.
+ * @param ctx the parse tree
+ */
+ void enterStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx);
+ /**
+ * Exit a parse tree produced by the {@code stmtDeclKasm}
+ * labeled alternative in {@link KickCParser#stmt}.
+ * @param ctx the parse tree
+ */
+ void exitStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx);
/**
* Enter a parse tree produced by the {@code forDecl}
* labeled alternative in {@link KickCParser#forDeclaration}.
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
index 1842a4d1a..b0f04b5d8 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
@@ -24,44 +24,49 @@ public class KickCParser extends Parser {
T__31=32, T__32=33, T__33=34, T__34=35, T__35=36, T__36=37, T__37=38,
T__38=39, T__39=40, T__40=41, T__41=42, T__42=43, T__43=44, T__44=45,
T__45=46, T__46=47, T__47=48, T__48=49, T__49=50, T__50=51, T__51=52,
- T__52=53, T__53=54, T__54=55, T__55=56, T__56=57, T__57=58, MNEMONIC=59,
- SIMPLETYPE=60, STRING=61, CHAR=62, BOOLEAN=63, NUMBER=64, NUMFLOAT=65,
- BINFLOAT=66, DECFLOAT=67, HEXFLOAT=68, NUMINT=69, BININTEGER=70, DECINTEGER=71,
- HEXINTEGER=72, NAME=73, ASMREL=74, WS=75, COMMENT_LINE=76, COMMENT_BLOCK=77;
+ T__52=53, T__53=54, T__54=55, T__55=56, T__56=57, T__57=58, T__58=59,
+ T__59=60, T__60=61, T__61=62, MNEMONIC=63, KICKASM=64, SIMPLETYPE=65,
+ STRING=66, CHAR=67, BOOLEAN=68, NUMBER=69, NUMFLOAT=70, BINFLOAT=71, DECFLOAT=72,
+ HEXFLOAT=73, NUMINT=74, BININTEGER=75, DECINTEGER=76, HEXINTEGER=77, NAME=78,
+ ASMREL=79, WS=80, COMMENT_LINE=81, COMMENT_BLOCK=82;
public static final int
RULE_file = 0, RULE_asmFile = 1, RULE_importSeq = 2, RULE_importDecl = 3,
RULE_declSeq = 4, RULE_decl = 5, RULE_declVariable = 6, RULE_declFunction = 7,
- RULE_parameterListDecl = 8, RULE_parameterDecl = 9, RULE_directive = 10,
- RULE_stmtSeq = 11, RULE_stmt = 12, RULE_forDeclaration = 13, RULE_forIteration = 14,
- RULE_typeDecl = 15, RULE_expr = 16, RULE_parameterList = 17, RULE_asmLines = 18,
- RULE_asmLine = 19, RULE_asmLabel = 20, RULE_asmInstruction = 21, RULE_asmBytes = 22,
- RULE_asmParamMode = 23, RULE_asmExpr = 24;
+ RULE_declKasm = 8, RULE_kasmParams = 9, RULE_kasmParam = 10, RULE_kasmImportList = 11,
+ RULE_kasmParamList = 12, RULE_parameterListDecl = 13, RULE_parameterDecl = 14,
+ RULE_directive = 15, RULE_stmtSeq = 16, RULE_stmt = 17, RULE_forDeclaration = 18,
+ RULE_forIteration = 19, RULE_typeDecl = 20, RULE_expr = 21, RULE_parameterList = 22,
+ RULE_asmLines = 23, RULE_asmLine = 24, RULE_asmLabel = 25, RULE_asmInstruction = 26,
+ RULE_asmBytes = 27, RULE_asmParamMode = 28, RULE_asmExpr = 29;
public static final String[] ruleNames = {
"file", "asmFile", "importSeq", "importDecl", "declSeq", "decl", "declVariable",
- "declFunction", "parameterListDecl", "parameterDecl", "directive", "stmtSeq",
+ "declFunction", "declKasm", "kasmParams", "kasmParam", "kasmImportList",
+ "kasmParamList", "parameterListDecl", "parameterDecl", "directive", "stmtSeq",
"stmt", "forDeclaration", "forIteration", "typeDecl", "expr", "parameterList",
"asmLines", "asmLine", "asmLabel", "asmInstruction", "asmBytes", "asmParamMode",
"asmExpr"
};
private static final String[] _LITERAL_NAMES = {
- null, "'import'", "'='", "';'", "'('", "')'", "'{'", "'}'", "','", "'const'",
- "'align'", "'register'", "'inline'", "'if'", "'else'", "'while'", "'do'",
- "'for'", "'return'", "'asm'", "':'", "'..'", "'signed'", "'*'", "'['",
- "']'", "'--'", "'++'", "'+'", "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'",
- "'/'", "'%'", "'<'", "'>'", "'=='", "'!='", "'<='", "'>='", "'^'", "'|'",
- "'&&'", "'||'", "'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='",
- "'&='", "'|='", "'^='", "'.byte'", "'#'"
+ null, "'import'", "'='", "';'", "'('", "')'", "'{'", "'}'", "'kickasm'",
+ "'clobber'", "'param'", "','", "':'", "'const'", "'extern'", "'align'",
+ "'register'", "'inline'", "'if'", "'else'", "'while'", "'do'", "'for'",
+ "'return'", "'asm'", "'..'", "'signed'", "'*'", "'['", "']'", "'--'",
+ "'++'", "'+'", "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'",
+ "'<'", "'>'", "'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'",
+ "'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='",
+ "'^='", "'.byte'", "'#'"
};
private static final String[] _SYMBOLIC_NAMES = {
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
- null, null, null, null, null, null, null, null, null, null, null, "MNEMONIC",
- "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT",
- "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER",
- "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
+ null, null, null, null, null, null, null, null, null, null, null, null,
+ null, null, null, "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR",
+ "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT",
+ "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE",
+ "COMMENT_BLOCK"
};
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
@@ -145,11 +150,11 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(50);
+ setState(60);
importSeq();
- setState(51);
+ setState(61);
declSeq();
- setState(52);
+ setState(62);
match(EOF);
}
}
@@ -194,9 +199,9 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(54);
+ setState(64);
asmLines();
- setState(55);
+ setState(65);
match(EOF);
}
}
@@ -244,17 +249,17 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(60);
+ setState(70);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__0) {
{
{
- setState(57);
+ setState(67);
importDecl();
}
}
- setState(62);
+ setState(72);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -298,9 +303,9 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(63);
+ setState(73);
match(T__0);
- setState(64);
+ setState(74);
match(STRING);
}
}
@@ -348,20 +353,20 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(67);
+ setState(77);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(66);
+ setState(76);
decl();
}
}
- setState(69);
+ setState(79);
_errHandler.sync(this);
_la = _input.LA(1);
- } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__21) | (1L << SIMPLETYPE))) != 0) );
+ } while ( ((((_la - 8)) & ~0x3f) == 0 && ((1L << (_la - 8)) & ((1L << (T__7 - 8)) | (1L << (T__12 - 8)) | (1L << (T__13 - 8)) | (1L << (T__14 - 8)) | (1L << (T__15 - 8)) | (1L << (T__16 - 8)) | (1L << (T__25 - 8)) | (1L << (SIMPLETYPE - 8)))) != 0) );
}
}
catch (RecognitionException re) {
@@ -382,6 +387,9 @@ public class KickCParser extends Parser {
public DeclFunctionContext declFunction() {
return getRuleContext(DeclFunctionContext.class,0);
}
+ public DeclKasmContext declKasm() {
+ return getRuleContext(DeclKasmContext.class,0);
+ }
public DeclContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@@ -405,23 +413,30 @@ public class KickCParser extends Parser {
DeclContext _localctx = new DeclContext(_ctx, getState());
enterRule(_localctx, 10, RULE_decl);
try {
- setState(73);
+ setState(84);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(71);
+ setState(81);
declVariable();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(72);
+ setState(82);
declFunction();
}
break;
+ case 3:
+ enterOuterAlt(_localctx, 3);
+ {
+ setState(83);
+ declKasm();
+ }
+ break;
}
}
catch (RecognitionException re) {
@@ -475,51 +490,51 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(78);
+ setState(89);
_errHandler.sync(this);
_la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16))) != 0)) {
{
{
- setState(75);
+ setState(86);
directive();
}
}
- setState(80);
+ setState(91);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(81);
+ setState(92);
typeDecl(0);
- setState(85);
+ setState(96);
_errHandler.sync(this);
_la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16))) != 0)) {
{
{
- setState(82);
+ setState(93);
directive();
}
}
- setState(87);
+ setState(98);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(88);
+ setState(99);
match(NAME);
- setState(91);
+ setState(102);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==T__1) {
{
- setState(89);
+ setState(100);
match(T__1);
- setState(90);
+ setState(101);
expr(0);
}
}
- setState(93);
+ setState(104);
match(T__2);
}
}
@@ -577,65 +592,65 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(98);
- _errHandler.sync(this);
- _la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11))) != 0)) {
- {
- {
- setState(95);
- directive();
- }
- }
- setState(100);
- _errHandler.sync(this);
- _la = _input.LA(1);
- }
- setState(101);
- typeDecl(0);
- setState(105);
- _errHandler.sync(this);
- _la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11))) != 0)) {
- {
- {
- setState(102);
- directive();
- }
- }
- setState(107);
- _errHandler.sync(this);
- _la = _input.LA(1);
- }
- setState(108);
- match(NAME);
setState(109);
- match(T__3);
- setState(111);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__21) | (1L << SIMPLETYPE))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16))) != 0)) {
{
- setState(110);
+ {
+ setState(106);
+ directive();
+ }
+ }
+ setState(111);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ setState(112);
+ typeDecl(0);
+ setState(116);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16))) != 0)) {
+ {
+ {
+ setState(113);
+ directive();
+ }
+ }
+ setState(118);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ setState(119);
+ match(NAME);
+ setState(120);
+ match(T__3);
+ setState(122);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (((((_la - 13)) & ~0x3f) == 0 && ((1L << (_la - 13)) & ((1L << (T__12 - 13)) | (1L << (T__13 - 13)) | (1L << (T__14 - 13)) | (1L << (T__15 - 13)) | (1L << (T__16 - 13)) | (1L << (T__25 - 13)) | (1L << (SIMPLETYPE - 13)))) != 0)) {
+ {
+ setState(121);
parameterListDecl();
}
}
- setState(113);
+ setState(124);
match(T__4);
- setState(114);
+ setState(125);
match(T__5);
- setState(116);
+ setState(127);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__12) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__21) | (1L << T__22) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__36) | (1L << T__37) | (1L << SIMPLETYPE) | (1L << STRING) | (1L << CHAR) | (1L << BOOLEAN))) != 0) || _la==NUMBER || _la==NAME) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__7) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__25) | (1L << T__26) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__40) | (1L << T__41))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (SIMPLETYPE - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (BOOLEAN - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) {
{
- setState(115);
+ setState(126);
stmtSeq();
}
}
- setState(118);
+ setState(129);
match(T__6);
}
}
@@ -650,6 +665,346 @@ public class KickCParser extends Parser {
return _localctx;
}
+ public static class DeclKasmContext extends ParserRuleContext {
+ public TerminalNode KICKASM() { return getToken(KickCParser.KICKASM, 0); }
+ public KasmParamsContext kasmParams() {
+ return getRuleContext(KasmParamsContext.class,0);
+ }
+ public DeclKasmContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_declKasm; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterDeclKasm(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitDeclKasm(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitDeclKasm(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final DeclKasmContext declKasm() throws RecognitionException {
+ DeclKasmContext _localctx = new DeclKasmContext(_ctx, getState());
+ enterRule(_localctx, 16, RULE_declKasm);
+ int _la;
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(131);
+ match(T__7);
+ setState(133);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (_la==T__3) {
+ {
+ setState(132);
+ kasmParams();
+ }
+ }
+
+ setState(135);
+ match(KICKASM);
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ public static class KasmParamsContext extends ParserRuleContext {
+ public List kasmParam() {
+ return getRuleContexts(KasmParamContext.class);
+ }
+ public KasmParamContext kasmParam(int i) {
+ return getRuleContext(KasmParamContext.class,i);
+ }
+ public KasmParamsContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_kasmParams; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterKasmParams(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitKasmParams(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitKasmParams(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final KasmParamsContext kasmParams() throws RecognitionException {
+ KasmParamsContext _localctx = new KasmParamsContext(_ctx, getState());
+ enterRule(_localctx, 18, RULE_kasmParams);
+ int _la;
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(137);
+ match(T__3);
+ setState(138);
+ kasmParam();
+ setState(143);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ while (_la==T__2) {
+ {
+ {
+ setState(139);
+ match(T__2);
+ setState(140);
+ kasmParam();
+ }
+ }
+ setState(145);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ setState(146);
+ match(T__4);
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ public static class KasmParamContext extends ParserRuleContext {
+ public KasmImportListContext kasmImportList() {
+ return getRuleContext(KasmImportListContext.class,0);
+ }
+ public TerminalNode STRING() { return getToken(KickCParser.STRING, 0); }
+ public KasmParamListContext kasmParamList() {
+ return getRuleContext(KasmParamListContext.class,0);
+ }
+ public KasmParamContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_kasmParam; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterKasmParam(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitKasmParam(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitKasmParam(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final KasmParamContext kasmParam() throws RecognitionException {
+ KasmParamContext _localctx = new KasmParamContext(_ctx, getState());
+ enterRule(_localctx, 20, RULE_kasmParam);
+ try {
+ setState(154);
+ _errHandler.sync(this);
+ switch (_input.LA(1)) {
+ case T__0:
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(148);
+ match(T__0);
+ setState(149);
+ kasmImportList();
+ }
+ break;
+ case T__8:
+ enterOuterAlt(_localctx, 2);
+ {
+ setState(150);
+ match(T__8);
+ setState(151);
+ match(STRING);
+ }
+ break;
+ case T__9:
+ enterOuterAlt(_localctx, 3);
+ {
+ setState(152);
+ match(T__9);
+ setState(153);
+ kasmParamList();
+ }
+ break;
+ default:
+ throw new NoViableAltException(this);
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ public static class KasmImportListContext extends ParserRuleContext {
+ public List STRING() { return getTokens(KickCParser.STRING); }
+ public TerminalNode STRING(int i) {
+ return getToken(KickCParser.STRING, i);
+ }
+ public KasmImportListContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_kasmImportList; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterKasmImportList(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitKasmImportList(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitKasmImportList(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final KasmImportListContext kasmImportList() throws RecognitionException {
+ KasmImportListContext _localctx = new KasmImportListContext(_ctx, getState());
+ enterRule(_localctx, 22, RULE_kasmImportList);
+ int _la;
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(156);
+ match(STRING);
+ setState(161);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ while (_la==T__10) {
+ {
+ {
+ setState(157);
+ match(T__10);
+ setState(158);
+ match(STRING);
+ }
+ }
+ setState(163);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ public static class KasmParamListContext extends ParserRuleContext {
+ public List NAME() { return getTokens(KickCParser.NAME); }
+ public TerminalNode NAME(int i) {
+ return getToken(KickCParser.NAME, i);
+ }
+ public List expr() {
+ return getRuleContexts(ExprContext.class);
+ }
+ public ExprContext expr(int i) {
+ return getRuleContext(ExprContext.class,i);
+ }
+ public KasmParamListContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_kasmParamList; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterKasmParamList(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitKasmParamList(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitKasmParamList(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final KasmParamListContext kasmParamList() throws RecognitionException {
+ KasmParamListContext _localctx = new KasmParamListContext(_ctx, getState());
+ enterRule(_localctx, 24, RULE_kasmParamList);
+ int _la;
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(164);
+ match(NAME);
+ setState(165);
+ match(T__11);
+ setState(166);
+ expr(0);
+ setState(173);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ while (_la==T__10) {
+ {
+ {
+ setState(167);
+ match(T__10);
+ setState(168);
+ match(NAME);
+ setState(169);
+ match(T__11);
+ setState(170);
+ expr(0);
+ }
+ }
+ setState(175);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
public static class ParameterListDeclContext extends ParserRuleContext {
public List parameterDecl() {
return getRuleContexts(ParameterDeclContext.class);
@@ -678,26 +1033,26 @@ public class KickCParser extends Parser {
public final ParameterListDeclContext parameterListDecl() throws RecognitionException {
ParameterListDeclContext _localctx = new ParameterListDeclContext(_ctx, getState());
- enterRule(_localctx, 16, RULE_parameterListDecl);
+ enterRule(_localctx, 26, RULE_parameterListDecl);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(120);
+ setState(176);
parameterDecl();
- setState(125);
+ setState(181);
_errHandler.sync(this);
_la = _input.LA(1);
- while (_la==T__7) {
+ while (_la==T__10) {
{
{
- setState(121);
- match(T__7);
- setState(122);
+ setState(177);
+ match(T__10);
+ setState(178);
parameterDecl();
}
}
- setState(127);
+ setState(183);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -746,42 +1101,42 @@ public class KickCParser extends Parser {
public final ParameterDeclContext parameterDecl() throws RecognitionException {
ParameterDeclContext _localctx = new ParameterDeclContext(_ctx, getState());
- enterRule(_localctx, 18, RULE_parameterDecl);
+ enterRule(_localctx, 28, RULE_parameterDecl);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(131);
+ setState(187);
_errHandler.sync(this);
_la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16))) != 0)) {
{
{
- setState(128);
+ setState(184);
directive();
}
}
- setState(133);
+ setState(189);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(134);
+ setState(190);
typeDecl(0);
- setState(138);
+ setState(194);
_errHandler.sync(this);
_la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16))) != 0)) {
{
{
- setState(135);
+ setState(191);
directive();
}
}
- setState(140);
+ setState(196);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(141);
+ setState(197);
match(NAME);
}
}
@@ -823,6 +1178,22 @@ public class KickCParser extends Parser {
else return visitor.visitChildren(this);
}
}
+ public static class DirectiveExternContext extends DirectiveContext {
+ public DirectiveExternContext(DirectiveContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterDirectiveExtern(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitDirectiveExtern(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitDirectiveExtern(this);
+ else return visitor.visitChildren(this);
+ }
+ }
public static class DirectiveConstContext extends DirectiveContext {
public DirectiveConstContext(DirectiveContext ctx) { copyFrom(ctx); }
@Override
@@ -876,53 +1247,61 @@ public class KickCParser extends Parser {
public final DirectiveContext directive() throws RecognitionException {
DirectiveContext _localctx = new DirectiveContext(_ctx, getState());
- enterRule(_localctx, 20, RULE_directive);
+ enterRule(_localctx, 30, RULE_directive);
try {
- setState(153);
+ setState(210);
_errHandler.sync(this);
switch (_input.LA(1)) {
- case T__8:
+ case T__12:
_localctx = new DirectiveConstContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(143);
- match(T__8);
+ setState(199);
+ match(T__12);
}
break;
- case T__9:
- _localctx = new DirectiveAlignContext(_localctx);
+ case T__13:
+ _localctx = new DirectiveExternContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(144);
- match(T__9);
- setState(145);
- match(T__3);
- setState(146);
- match(NUMBER);
- setState(147);
- match(T__4);
+ setState(200);
+ match(T__13);
}
break;
- case T__10:
- _localctx = new DirectiveRegisterContext(_localctx);
+ case T__14:
+ _localctx = new DirectiveAlignContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(148);
- match(T__10);
- setState(149);
+ setState(201);
+ match(T__14);
+ setState(202);
match(T__3);
- setState(150);
- match(NAME);
- setState(151);
+ setState(203);
+ match(NUMBER);
+ setState(204);
match(T__4);
}
break;
- case T__11:
- _localctx = new DirectiveInlineContext(_localctx);
+ case T__15:
+ _localctx = new DirectiveRegisterContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(152);
- match(T__11);
+ setState(205);
+ match(T__15);
+ setState(206);
+ match(T__3);
+ setState(207);
+ match(NAME);
+ setState(208);
+ match(T__4);
+ }
+ break;
+ case T__16:
+ _localctx = new DirectiveInlineContext(_localctx);
+ enterOuterAlt(_localctx, 5);
+ {
+ setState(209);
+ match(T__16);
}
break;
default:
@@ -968,25 +1347,25 @@ public class KickCParser extends Parser {
public final StmtSeqContext stmtSeq() throws RecognitionException {
StmtSeqContext _localctx = new StmtSeqContext(_ctx, getState());
- enterRule(_localctx, 22, RULE_stmtSeq);
+ enterRule(_localctx, 32, RULE_stmtSeq);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(156);
+ setState(213);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(155);
+ setState(212);
stmt();
}
}
- setState(158);
+ setState(215);
_errHandler.sync(this);
_la = _input.LA(1);
- } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__12) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__21) | (1L << T__22) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__36) | (1L << T__37) | (1L << SIMPLETYPE) | (1L << STRING) | (1L << CHAR) | (1L << BOOLEAN))) != 0) || _la==NUMBER || _la==NAME );
+ } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__7) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__25) | (1L << T__26) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__40) | (1L << T__41))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (SIMPLETYPE - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (BOOLEAN - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0) );
}
}
catch (RecognitionException re) {
@@ -1049,6 +1428,25 @@ public class KickCParser extends Parser {
else return visitor.visitChildren(this);
}
}
+ public static class StmtDeclKasmContext extends StmtContext {
+ public DeclKasmContext declKasm() {
+ return getRuleContext(DeclKasmContext.class,0);
+ }
+ public StmtDeclKasmContext(StmtContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtDeclKasm(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtDeclKasm(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtDeclKasm(this);
+ else return visitor.visitChildren(this);
+ }
+ }
public static class StmtExprContext extends StmtContext {
public ExprContext expr() {
return getRuleContext(ExprContext.class,0);
@@ -1203,17 +1601,17 @@ public class KickCParser extends Parser {
public final StmtContext stmt() throws RecognitionException {
StmtContext _localctx = new StmtContext(_ctx, getState());
- enterRule(_localctx, 24, RULE_stmt);
+ enterRule(_localctx, 34, RULE_stmt);
int _la;
try {
- setState(211);
+ setState(269);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) {
case 1:
_localctx = new StmtDeclVarContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(160);
+ setState(217);
declVariable();
}
break;
@@ -1221,19 +1619,19 @@ public class KickCParser extends Parser {
_localctx = new StmtBlockContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(161);
+ setState(218);
match(T__5);
- setState(163);
+ setState(220);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__12) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__21) | (1L << T__22) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__36) | (1L << T__37) | (1L << SIMPLETYPE) | (1L << STRING) | (1L << CHAR) | (1L << BOOLEAN))) != 0) || _la==NUMBER || _la==NAME) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__7) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__25) | (1L << T__26) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__40) | (1L << T__41))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (SIMPLETYPE - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (BOOLEAN - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) {
{
- setState(162);
+ setState(219);
stmtSeq();
}
}
- setState(165);
+ setState(222);
match(T__6);
}
break;
@@ -1241,9 +1639,9 @@ public class KickCParser extends Parser {
_localctx = new StmtExprContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(166);
+ setState(223);
expr(0);
- setState(167);
+ setState(224);
match(T__2);
}
break;
@@ -1251,24 +1649,24 @@ public class KickCParser extends Parser {
_localctx = new StmtIfElseContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(169);
- match(T__12);
- setState(170);
+ setState(226);
+ match(T__17);
+ setState(227);
match(T__3);
- setState(171);
+ setState(228);
expr(0);
- setState(172);
+ setState(229);
match(T__4);
- setState(173);
+ setState(230);
stmt();
- setState(176);
+ setState(233);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) {
case 1:
{
- setState(174);
- match(T__13);
- setState(175);
+ setState(231);
+ match(T__18);
+ setState(232);
stmt();
}
break;
@@ -1279,15 +1677,15 @@ public class KickCParser extends Parser {
_localctx = new StmtWhileContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(178);
- match(T__14);
- setState(179);
+ setState(235);
+ match(T__19);
+ setState(236);
match(T__3);
- setState(180);
+ setState(237);
expr(0);
- setState(181);
+ setState(238);
match(T__4);
- setState(182);
+ setState(239);
stmt();
}
break;
@@ -1295,19 +1693,19 @@ public class KickCParser extends Parser {
_localctx = new StmtDoWhileContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(184);
- match(T__15);
- setState(185);
+ setState(241);
+ match(T__20);
+ setState(242);
stmt();
- setState(186);
- match(T__14);
- setState(187);
+ setState(243);
+ match(T__19);
+ setState(244);
match(T__3);
- setState(188);
+ setState(245);
expr(0);
- setState(189);
+ setState(246);
match(T__4);
- setState(190);
+ setState(247);
match(T__2);
}
break;
@@ -1315,25 +1713,25 @@ public class KickCParser extends Parser {
_localctx = new StmtForContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(192);
- match(T__16);
- setState(193);
+ setState(249);
+ match(T__21);
+ setState(250);
match(T__3);
- setState(195);
+ setState(252);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__21) | (1L << SIMPLETYPE))) != 0) || _la==NAME) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__25))) != 0) || _la==SIMPLETYPE || _la==NAME) {
{
- setState(194);
+ setState(251);
forDeclaration();
}
}
- setState(197);
+ setState(254);
forIteration();
- setState(198);
+ setState(255);
match(T__4);
- setState(199);
+ setState(256);
stmt();
}
break;
@@ -1341,19 +1739,19 @@ public class KickCParser extends Parser {
_localctx = new StmtReturnContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(201);
- match(T__17);
- setState(203);
+ setState(258);
+ match(T__22);
+ setState(260);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__22) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__36) | (1L << T__37) | (1L << STRING) | (1L << CHAR) | (1L << BOOLEAN))) != 0) || _la==NUMBER || _la==NAME) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__26) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__40) | (1L << T__41))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
{
- setState(202);
+ setState(259);
expr(0);
}
}
- setState(205);
+ setState(262);
match(T__2);
}
break;
@@ -1361,16 +1759,24 @@ public class KickCParser extends Parser {
_localctx = new StmtAsmContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(206);
- match(T__18);
- setState(207);
+ setState(263);
+ match(T__23);
+ setState(264);
match(T__5);
- setState(208);
+ setState(265);
asmLines();
- setState(209);
+ setState(266);
match(T__6);
}
break;
+ case 10:
+ _localctx = new StmtDeclKasmContext(_localctx);
+ enterOuterAlt(_localctx, 10);
+ {
+ setState(268);
+ declKasm();
+ }
+ break;
}
}
catch (RecognitionException re) {
@@ -1427,63 +1833,63 @@ public class KickCParser extends Parser {
public final ForDeclarationContext forDeclaration() throws RecognitionException {
ForDeclarationContext _localctx = new ForDeclarationContext(_ctx, getState());
- enterRule(_localctx, 26, RULE_forDeclaration);
+ enterRule(_localctx, 36, RULE_forDeclaration);
int _la;
try {
int _alt;
_localctx = new ForDeclContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(216);
+ setState(274);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,20,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(213);
+ setState(271);
directive();
}
}
}
- setState(218);
+ setState(276);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,20,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
}
- setState(220);
+ setState(278);
_errHandler.sync(this);
_la = _input.LA(1);
- if (_la==T__21 || _la==SIMPLETYPE) {
+ if (_la==T__25 || _la==SIMPLETYPE) {
{
- setState(219);
+ setState(277);
typeDecl(0);
}
}
- setState(225);
+ setState(283);
_errHandler.sync(this);
_la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16))) != 0)) {
{
{
- setState(222);
+ setState(280);
directive();
}
}
- setState(227);
+ setState(285);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(228);
+ setState(286);
match(NAME);
- setState(231);
+ setState(289);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==T__1) {
{
- setState(229);
+ setState(287);
match(T__1);
- setState(230);
+ setState(288);
expr(0);
}
}
@@ -1559,38 +1965,38 @@ public class KickCParser extends Parser {
public final ForIterationContext forIteration() throws RecognitionException {
ForIterationContext _localctx = new ForIterationContext(_ctx, getState());
- enterRule(_localctx, 28, RULE_forIteration);
+ enterRule(_localctx, 38, RULE_forIteration);
try {
- setState(243);
+ setState(301);
_errHandler.sync(this);
switch (_input.LA(1)) {
case T__2:
_localctx = new ForClassicContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(233);
+ setState(291);
match(T__2);
- setState(234);
+ setState(292);
expr(0);
- setState(235);
+ setState(293);
match(T__2);
- setState(236);
+ setState(294);
expr(0);
}
break;
- case T__19:
+ case T__11:
_localctx = new ForRangeContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(238);
- match(T__19);
- setState(239);
+ setState(296);
+ match(T__11);
+ setState(297);
expr(0);
{
- setState(240);
- match(T__20);
+ setState(298);
+ match(T__24);
}
- setState(241);
+ setState(299);
expr(0);
}
break;
@@ -1705,14 +2111,14 @@ public class KickCParser extends Parser {
int _parentState = getState();
TypeDeclContext _localctx = new TypeDeclContext(_ctx, _parentState);
TypeDeclContext _prevctx = _localctx;
- int _startState = 30;
- enterRecursionRule(_localctx, 30, RULE_typeDecl, _p);
+ int _startState = 40;
+ enterRecursionRule(_localctx, 40, RULE_typeDecl, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(249);
+ setState(307);
_errHandler.sync(this);
switch (_input.LA(1)) {
case SIMPLETYPE:
@@ -1721,18 +2127,18 @@ public class KickCParser extends Parser {
_ctx = _localctx;
_prevctx = _localctx;
- setState(246);
+ setState(304);
match(SIMPLETYPE);
}
break;
- case T__21:
+ case T__25:
{
_localctx = new TypeSignedSimpleContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(247);
- match(T__21);
- setState(248);
+ setState(305);
+ match(T__25);
+ setState(306);
match(SIMPLETYPE);
}
break;
@@ -1740,55 +2146,55 @@ public class KickCParser extends Parser {
throw new NoViableAltException(this);
}
_ctx.stop = _input.LT(-1);
- setState(261);
+ setState(319);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,28,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(259);
+ setState(317);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
case 1:
{
_localctx = new TypePtrContext(new TypeDeclContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_typeDecl);
- setState(251);
+ setState(309);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(252);
- match(T__22);
+ setState(310);
+ match(T__26);
}
break;
case 2:
{
_localctx = new TypeArrayContext(new TypeDeclContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_typeDecl);
- setState(253);
+ setState(311);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(254);
- match(T__23);
- setState(256);
+ setState(312);
+ match(T__27);
+ setState(314);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__22) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__36) | (1L << T__37) | (1L << STRING) | (1L << CHAR) | (1L << BOOLEAN))) != 0) || _la==NUMBER || _la==NAME) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__26) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__40) | (1L << T__41))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
{
- setState(255);
+ setState(313);
expr(0);
}
}
- setState(258);
- match(T__24);
+ setState(316);
+ match(T__28);
}
break;
}
}
}
- setState(263);
+ setState(321);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,28,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
}
}
}
@@ -2156,27 +2562,27 @@ public class KickCParser extends Parser {
int _parentState = getState();
ExprContext _localctx = new ExprContext(_ctx, _parentState);
ExprContext _prevctx = _localctx;
- int _startState = 32;
- enterRecursionRule(_localctx, 32, RULE_expr, _p);
+ int _startState = 42;
+ enterRecursionRule(_localctx, 42, RULE_expr, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(304);
+ setState(362);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
case 1:
{
_localctx = new ExprParContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(265);
+ setState(323);
match(T__3);
- setState(266);
+ setState(324);
expr(0);
- setState(267);
+ setState(325);
match(T__4);
}
break;
@@ -2185,21 +2591,21 @@ public class KickCParser extends Parser {
_localctx = new ExprCallContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(269);
+ setState(327);
match(NAME);
- setState(270);
+ setState(328);
match(T__3);
- setState(272);
+ setState(330);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__22) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__36) | (1L << T__37) | (1L << STRING) | (1L << CHAR) | (1L << BOOLEAN))) != 0) || _la==NUMBER || _la==NAME) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__26) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__40) | (1L << T__41))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
{
- setState(271);
+ setState(329);
parameterList();
}
}
- setState(274);
+ setState(332);
match(T__4);
}
break;
@@ -2208,13 +2614,13 @@ public class KickCParser extends Parser {
_localctx = new ExprCastContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(275);
+ setState(333);
match(T__3);
- setState(276);
+ setState(334);
typeDecl(0);
- setState(277);
+ setState(335);
match(T__4);
- setState(278);
+ setState(336);
expr(23);
}
break;
@@ -2223,9 +2629,9 @@ public class KickCParser extends Parser {
_localctx = new ExprPreModContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(280);
+ setState(338);
_la = _input.LA(1);
- if ( !(_la==T__25 || _la==T__26) ) {
+ if ( !(_la==T__29 || _la==T__30) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2233,7 +2639,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(281);
+ setState(339);
expr(22);
}
break;
@@ -2242,9 +2648,9 @@ public class KickCParser extends Parser {
_localctx = new ExprPtrContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(282);
- match(T__22);
- setState(283);
+ setState(340);
+ match(T__26);
+ setState(341);
expr(20);
}
break;
@@ -2253,9 +2659,9 @@ public class KickCParser extends Parser {
_localctx = new ExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(284);
+ setState(342);
_la = _input.LA(1);
- if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31))) != 0)) ) {
+ if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2263,7 +2669,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(285);
+ setState(343);
expr(19);
}
break;
@@ -2272,9 +2678,9 @@ public class KickCParser extends Parser {
_localctx = new ExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(286);
+ setState(344);
_la = _input.LA(1);
- if ( !(_la==T__36 || _la==T__37) ) {
+ if ( !(_la==T__40 || _la==T__41) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2282,7 +2688,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(287);
+ setState(345);
expr(15);
}
break;
@@ -2291,27 +2697,27 @@ public class KickCParser extends Parser {
_localctx = new InitListContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(288);
+ setState(346);
match(T__5);
- setState(289);
+ setState(347);
expr(0);
- setState(294);
+ setState(352);
_errHandler.sync(this);
_la = _input.LA(1);
- while (_la==T__7) {
+ while (_la==T__10) {
{
{
- setState(290);
- match(T__7);
- setState(291);
+ setState(348);
+ match(T__10);
+ setState(349);
expr(0);
}
}
- setState(296);
+ setState(354);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(297);
+ setState(355);
match(T__6);
}
break;
@@ -2320,7 +2726,7 @@ public class KickCParser extends Parser {
_localctx = new ExprIdContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(299);
+ setState(357);
match(NAME);
}
break;
@@ -2329,7 +2735,7 @@ public class KickCParser extends Parser {
_localctx = new ExprNumberContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(300);
+ setState(358);
match(NUMBER);
}
break;
@@ -2338,7 +2744,7 @@ public class KickCParser extends Parser {
_localctx = new ExprStringContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(301);
+ setState(359);
match(STRING);
}
break;
@@ -2347,7 +2753,7 @@ public class KickCParser extends Parser {
_localctx = new ExprCharContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(302);
+ setState(360);
match(CHAR);
}
break;
@@ -2356,32 +2762,32 @@ public class KickCParser extends Parser {
_localctx = new ExprBoolContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(303);
+ setState(361);
match(BOOLEAN);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(348);
+ setState(406);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,38,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(346);
+ setState(404);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) {
case 1:
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(306);
+ setState(364);
if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)");
- setState(307);
+ setState(365);
_la = _input.LA(1);
- if ( !(_la==T__32 || _la==T__33) ) {
+ if ( !(_la==T__36 || _la==T__37) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2389,7 +2795,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(308);
+ setState(366);
expr(19);
}
break;
@@ -2397,11 +2803,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(309);
+ setState(367);
if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)");
- setState(310);
+ setState(368);
_la = _input.LA(1);
- if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__22) | (1L << T__34) | (1L << T__35))) != 0)) ) {
+ if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__26) | (1L << T__38) | (1L << T__39))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2409,7 +2815,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(311);
+ setState(369);
expr(18);
}
break;
@@ -2417,11 +2823,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(312);
+ setState(370);
if (!(precpred(_ctx, 16))) throw new FailedPredicateException(this, "precpred(_ctx, 16)");
- setState(313);
+ setState(371);
_la = _input.LA(1);
- if ( !(_la==T__27 || _la==T__28) ) {
+ if ( !(_la==T__31 || _la==T__32) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2429,7 +2835,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(314);
+ setState(372);
expr(17);
}
break;
@@ -2437,11 +2843,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(315);
+ setState(373);
if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)");
- setState(316);
+ setState(374);
_la = _input.LA(1);
- if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41))) != 0)) ) {
+ if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2449,7 +2855,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(317);
+ setState(375);
expr(15);
}
break;
@@ -2457,13 +2863,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(318);
+ setState(376);
if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)");
{
- setState(319);
- match(T__30);
+ setState(377);
+ match(T__34);
}
- setState(320);
+ setState(378);
expr(14);
}
break;
@@ -2471,13 +2877,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(321);
+ setState(379);
if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)");
{
- setState(322);
- match(T__42);
+ setState(380);
+ match(T__46);
}
- setState(323);
+ setState(381);
expr(13);
}
break;
@@ -2485,13 +2891,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(324);
+ setState(382);
if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)");
{
- setState(325);
- match(T__43);
+ setState(383);
+ match(T__47);
}
- setState(326);
+ setState(384);
expr(12);
}
break;
@@ -2499,13 +2905,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(327);
+ setState(385);
if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)");
{
- setState(328);
- match(T__44);
+ setState(386);
+ match(T__48);
}
- setState(329);
+ setState(387);
expr(11);
}
break;
@@ -2513,13 +2919,13 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(330);
+ setState(388);
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
{
- setState(331);
- match(T__45);
+ setState(389);
+ match(T__49);
}
- setState(332);
+ setState(390);
expr(10);
}
break;
@@ -2527,11 +2933,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(333);
+ setState(391);
if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
- setState(334);
+ setState(392);
match(T__1);
- setState(335);
+ setState(393);
expr(8);
}
break;
@@ -2539,11 +2945,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(336);
+ setState(394);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
- setState(337);
+ setState(395);
_la = _input.LA(1);
- if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55))) != 0)) ) {
+ if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2551,7 +2957,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(338);
+ setState(396);
expr(7);
}
break;
@@ -2559,25 +2965,25 @@ public class KickCParser extends Parser {
{
_localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(339);
+ setState(397);
if (!(precpred(_ctx, 24))) throw new FailedPredicateException(this, "precpred(_ctx, 24)");
- setState(340);
- match(T__23);
- setState(341);
+ setState(398);
+ match(T__27);
+ setState(399);
expr(0);
- setState(342);
- match(T__24);
+ setState(400);
+ match(T__28);
}
break;
case 13:
{
_localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(344);
+ setState(402);
if (!(precpred(_ctx, 21))) throw new FailedPredicateException(this, "precpred(_ctx, 21)");
- setState(345);
+ setState(403);
_la = _input.LA(1);
- if ( !(_la==T__25 || _la==T__26) ) {
+ if ( !(_la==T__29 || _la==T__30) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2590,9 +2996,9 @@ public class KickCParser extends Parser {
}
}
}
- setState(350);
+ setState(408);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,38,_ctx);
}
}
}
@@ -2635,26 +3041,26 @@ public class KickCParser extends Parser {
public final ParameterListContext parameterList() throws RecognitionException {
ParameterListContext _localctx = new ParameterListContext(_ctx, getState());
- enterRule(_localctx, 34, RULE_parameterList);
+ enterRule(_localctx, 44, RULE_parameterList);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(351);
+ setState(409);
expr(0);
- setState(356);
+ setState(414);
_errHandler.sync(this);
_la = _input.LA(1);
- while (_la==T__7) {
+ while (_la==T__10) {
{
{
- setState(352);
- match(T__7);
- setState(353);
+ setState(410);
+ match(T__10);
+ setState(411);
expr(0);
}
}
- setState(358);
+ setState(416);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -2699,22 +3105,22 @@ public class KickCParser extends Parser {
public final AsmLinesContext asmLines() throws RecognitionException {
AsmLinesContext _localctx = new AsmLinesContext(_ctx, getState());
- enterRule(_localctx, 36, RULE_asmLines);
+ enterRule(_localctx, 46, RULE_asmLines);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(362);
+ setState(420);
_errHandler.sync(this);
_la = _input.LA(1);
- while (((((_la - 30)) & ~0x3f) == 0 && ((1L << (_la - 30)) & ((1L << (T__29 - 30)) | (1L << (T__56 - 30)) | (1L << (MNEMONIC - 30)) | (1L << (NAME - 30)))) != 0)) {
+ while (((((_la - 34)) & ~0x3f) == 0 && ((1L << (_la - 34)) & ((1L << (T__33 - 34)) | (1L << (T__60 - 34)) | (1L << (MNEMONIC - 34)) | (1L << (NAME - 34)))) != 0)) {
{
{
- setState(359);
+ setState(417);
asmLine();
}
}
- setState(364);
+ setState(422);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -2762,30 +3168,30 @@ public class KickCParser extends Parser {
public final AsmLineContext asmLine() throws RecognitionException {
AsmLineContext _localctx = new AsmLineContext(_ctx, getState());
- enterRule(_localctx, 38, RULE_asmLine);
+ enterRule(_localctx, 48, RULE_asmLine);
try {
- setState(368);
+ setState(426);
_errHandler.sync(this);
switch (_input.LA(1)) {
- case T__29:
+ case T__33:
case NAME:
enterOuterAlt(_localctx, 1);
{
- setState(365);
+ setState(423);
asmLabel();
}
break;
case MNEMONIC:
enterOuterAlt(_localctx, 2);
{
- setState(366);
+ setState(424);
asmInstruction();
}
break;
- case T__56:
+ case T__60:
enterOuterAlt(_localctx, 3);
{
- setState(367);
+ setState(425);
asmBytes();
}
break;
@@ -2852,40 +3258,40 @@ public class KickCParser extends Parser {
public final AsmLabelContext asmLabel() throws RecognitionException {
AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState());
- enterRule(_localctx, 40, RULE_asmLabel);
+ enterRule(_localctx, 50, RULE_asmLabel);
int _la;
try {
- setState(377);
+ setState(435);
_errHandler.sync(this);
switch (_input.LA(1)) {
case NAME:
_localctx = new AsmLabelNameContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(370);
+ setState(428);
match(NAME);
- setState(371);
- match(T__19);
+ setState(429);
+ match(T__11);
}
break;
- case T__29:
+ case T__33:
_localctx = new AsmLabelMultiContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(372);
- match(T__29);
- setState(374);
+ setState(430);
+ match(T__33);
+ setState(432);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NAME) {
{
- setState(373);
+ setState(431);
match(NAME);
}
}
- setState(376);
- match(T__19);
+ setState(434);
+ match(T__11);
}
break;
default:
@@ -2929,18 +3335,18 @@ public class KickCParser extends Parser {
public final AsmInstructionContext asmInstruction() throws RecognitionException {
AsmInstructionContext _localctx = new AsmInstructionContext(_ctx, getState());
- enterRule(_localctx, 42, RULE_asmInstruction);
+ enterRule(_localctx, 52, RULE_asmInstruction);
try {
enterOuterAlt(_localctx, 1);
{
- setState(379);
+ setState(437);
match(MNEMONIC);
- setState(381);
+ setState(439);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) {
case 1:
{
- setState(380);
+ setState(438);
asmParamMode();
}
break;
@@ -2986,28 +3392,28 @@ public class KickCParser extends Parser {
public final AsmBytesContext asmBytes() throws RecognitionException {
AsmBytesContext _localctx = new AsmBytesContext(_ctx, getState());
- enterRule(_localctx, 44, RULE_asmBytes);
+ enterRule(_localctx, 54, RULE_asmBytes);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(383);
- match(T__56);
- setState(384);
+ setState(441);
+ match(T__60);
+ setState(442);
asmExpr(0);
- setState(389);
+ setState(447);
_errHandler.sync(this);
_la = _input.LA(1);
- while (_la==T__7) {
+ while (_la==T__10) {
{
{
- setState(385);
- match(T__7);
- setState(386);
+ setState(443);
+ match(T__10);
+ setState(444);
asmExpr(0);
}
}
- setState(391);
+ setState(449);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -3155,16 +3561,16 @@ public class KickCParser extends Parser {
public final AsmParamModeContext asmParamMode() throws RecognitionException {
AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState());
- enterRule(_localctx, 46, RULE_asmParamMode);
+ enterRule(_localctx, 56, RULE_asmParamMode);
try {
- setState(415);
+ setState(473);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) {
case 1:
_localctx = new AsmModeAbsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(392);
+ setState(450);
asmExpr(0);
}
break;
@@ -3172,9 +3578,9 @@ public class KickCParser extends Parser {
_localctx = new AsmModeImmContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(393);
- match(T__57);
- setState(394);
+ setState(451);
+ match(T__61);
+ setState(452);
asmExpr(0);
}
break;
@@ -3182,11 +3588,11 @@ public class KickCParser extends Parser {
_localctx = new AsmModeAbsXYContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(395);
+ setState(453);
asmExpr(0);
- setState(396);
- match(T__7);
- setState(397);
+ setState(454);
+ match(T__10);
+ setState(455);
match(NAME);
}
break;
@@ -3194,15 +3600,15 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIndIdxXYContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(399);
+ setState(457);
match(T__3);
- setState(400);
+ setState(458);
asmExpr(0);
- setState(401);
+ setState(459);
match(T__4);
- setState(402);
- match(T__7);
- setState(403);
+ setState(460);
+ match(T__10);
+ setState(461);
match(NAME);
}
break;
@@ -3210,15 +3616,15 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIdxIndXYContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(405);
+ setState(463);
match(T__3);
- setState(406);
+ setState(464);
asmExpr(0);
- setState(407);
- match(T__7);
- setState(408);
+ setState(465);
+ match(T__10);
+ setState(466);
match(NAME);
- setState(409);
+ setState(467);
match(T__4);
}
break;
@@ -3226,11 +3632,11 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIndContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(411);
+ setState(469);
match(T__3);
- setState(412);
+ setState(470);
asmExpr(0);
- setState(413);
+ setState(471);
match(T__4);
}
break;
@@ -3413,41 +3819,41 @@ public class KickCParser extends Parser {
int _parentState = getState();
AsmExprContext _localctx = new AsmExprContext(_ctx, _parentState);
AsmExprContext _prevctx = _localctx;
- int _startState = 48;
- enterRecursionRule(_localctx, 48, RULE_asmExpr, _p);
+ int _startState = 58;
+ enterRecursionRule(_localctx, 58, RULE_asmExpr, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(431);
+ setState(489);
_errHandler.sync(this);
switch (_input.LA(1)) {
- case T__23:
+ case T__27:
{
_localctx = new AsmExprParContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(418);
- match(T__23);
- setState(419);
+ setState(476);
+ match(T__27);
+ setState(477);
asmExpr(0);
- setState(420);
- match(T__24);
+ setState(478);
+ match(T__28);
}
break;
- case T__27:
- case T__28:
- case T__36:
- case T__37:
+ case T__31:
+ case T__32:
+ case T__40:
+ case T__41:
{
_localctx = new AsmExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(422);
+ setState(480);
_la = _input.LA(1);
- if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__27) | (1L << T__28) | (1L << T__36) | (1L << T__37))) != 0)) ) {
+ if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__31) | (1L << T__32) | (1L << T__40) | (1L << T__41))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -3455,7 +3861,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(423);
+ setState(481);
asmExpr(8);
}
break;
@@ -3464,7 +3870,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprLabelContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(424);
+ setState(482);
match(NAME);
}
break;
@@ -3473,7 +3879,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprLabelRelContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(425);
+ setState(483);
match(ASMREL);
}
break;
@@ -3482,11 +3888,11 @@ public class KickCParser extends Parser {
_localctx = new AsmExprReplaceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(426);
+ setState(484);
match(T__5);
- setState(427);
+ setState(485);
match(NAME);
- setState(428);
+ setState(486);
match(T__6);
}
break;
@@ -3495,7 +3901,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprIntContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(429);
+ setState(487);
match(NUMBER);
}
break;
@@ -3504,7 +3910,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprCharContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(430);
+ setState(488);
match(CHAR);
}
break;
@@ -3512,26 +3918,26 @@ public class KickCParser extends Parser {
throw new NoViableAltException(this);
}
_ctx.stop = _input.LT(-1);
- setState(444);
+ setState(502);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,44,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,49,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(442);
+ setState(500);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
case 1:
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(433);
+ setState(491);
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
- setState(434);
+ setState(492);
_la = _input.LA(1);
- if ( !(_la==T__32 || _la==T__33) ) {
+ if ( !(_la==T__36 || _la==T__37) ) {
_errHandler.recoverInline(this);
}
else {
@@ -3539,7 +3945,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(435);
+ setState(493);
asmExpr(10);
}
break;
@@ -3547,11 +3953,11 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(436);
+ setState(494);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
- setState(437);
+ setState(495);
_la = _input.LA(1);
- if ( !(_la==T__22 || _la==T__34) ) {
+ if ( !(_la==T__26 || _la==T__38) ) {
_errHandler.recoverInline(this);
}
else {
@@ -3559,7 +3965,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(438);
+ setState(496);
asmExpr(8);
}
break;
@@ -3567,11 +3973,11 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(439);
+ setState(497);
if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
- setState(440);
+ setState(498);
_la = _input.LA(1);
- if ( !(_la==T__27 || _la==T__28) ) {
+ if ( !(_la==T__31 || _la==T__32) ) {
_errHandler.recoverInline(this);
}
else {
@@ -3579,16 +3985,16 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(441);
+ setState(499);
asmExpr(7);
}
break;
}
}
}
- setState(446);
+ setState(504);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,44,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,49,_ctx);
}
}
}
@@ -3605,11 +4011,11 @@ public class KickCParser extends Parser {
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
switch (ruleIndex) {
- case 15:
+ case 20:
return typeDecl_sempred((TypeDeclContext)_localctx, predIndex);
- case 16:
+ case 21:
return expr_sempred((ExprContext)_localctx, predIndex);
- case 24:
+ case 29:
return asmExpr_sempred((AsmExprContext)_localctx, predIndex);
}
return true;
@@ -3667,179 +4073,201 @@ public class KickCParser extends Parser {
}
public static final String _serializedATN =
- "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3O\u01c2\4\2\t\2\4"+
+ "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3T\u01fc\4\2\t\2\4"+
"\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t"+
"\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
- "\4\32\t\32\3\2\3\2\3\2\3\2\3\3\3\3\3\3\3\4\7\4=\n\4\f\4\16\4@\13\4\3\5"+
- "\3\5\3\5\3\6\6\6F\n\6\r\6\16\6G\3\7\3\7\5\7L\n\7\3\b\7\bO\n\b\f\b\16\b"+
- "R\13\b\3\b\3\b\7\bV\n\b\f\b\16\bY\13\b\3\b\3\b\3\b\5\b^\n\b\3\b\3\b\3"+
- "\t\7\tc\n\t\f\t\16\tf\13\t\3\t\3\t\7\tj\n\t\f\t\16\tm\13\t\3\t\3\t\3\t"+
- "\5\tr\n\t\3\t\3\t\3\t\5\tw\n\t\3\t\3\t\3\n\3\n\3\n\7\n~\n\n\f\n\16\n\u0081"+
- "\13\n\3\13\7\13\u0084\n\13\f\13\16\13\u0087\13\13\3\13\3\13\7\13\u008b"+
- "\n\13\f\13\16\13\u008e\13\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f"+
- "\3\f\3\f\5\f\u009c\n\f\3\r\6\r\u009f\n\r\r\r\16\r\u00a0\3\16\3\16\3\16"+
- "\5\16\u00a6\n\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16"+
- "\5\16\u00b3\n\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16"+
- "\3\16\3\16\3\16\3\16\3\16\3\16\5\16\u00c6\n\16\3\16\3\16\3\16\3\16\3\16"+
- "\3\16\5\16\u00ce\n\16\3\16\3\16\3\16\3\16\3\16\3\16\5\16\u00d6\n\16\3"+
- "\17\7\17\u00d9\n\17\f\17\16\17\u00dc\13\17\3\17\5\17\u00df\n\17\3\17\7"+
- "\17\u00e2\n\17\f\17\16\17\u00e5\13\17\3\17\3\17\3\17\5\17\u00ea\n\17\3"+
- "\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\5\20\u00f6\n\20\3\21"+
- "\3\21\3\21\3\21\5\21\u00fc\n\21\3\21\3\21\3\21\3\21\3\21\5\21\u0103\n"+
- "\21\3\21\7\21\u0106\n\21\f\21\16\21\u0109\13\21\3\22\3\22\3\22\3\22\3"+
- "\22\3\22\3\22\3\22\5\22\u0113\n\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22"+
- "\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\7\22\u0127\n\22"+
- "\f\22\16\22\u012a\13\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\5\22\u0133"+
- "\n\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22"+
- "\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22"+
- "\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\7\22"+
- "\u015d\n\22\f\22\16\22\u0160\13\22\3\23\3\23\3\23\7\23\u0165\n\23\f\23"+
- "\16\23\u0168\13\23\3\24\7\24\u016b\n\24\f\24\16\24\u016e\13\24\3\25\3"+
- "\25\3\25\5\25\u0173\n\25\3\26\3\26\3\26\3\26\5\26\u0179\n\26\3\26\5\26"+
- "\u017c\n\26\3\27\3\27\5\27\u0180\n\27\3\30\3\30\3\30\3\30\7\30\u0186\n"+
- "\30\f\30\16\30\u0189\13\30\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31"+
- "\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31"+
- "\5\31\u01a2\n\31\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32"+
- "\3\32\3\32\3\32\5\32\u01b2\n\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32"+
- "\3\32\7\32\u01bd\n\32\f\32\16\32\u01c0\13\32\3\32\2\5 \"\62\33\2\4\6\b"+
- "\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\2\f\3\2\34\35\3\2\36\""+
- "\3\2\'(\3\2#$\4\2\31\31%&\3\2\36\37\3\2\',\3\2\61:\4\2\36\37\'(\4\2\31"+
- "\31%%\2\u01ff\2\64\3\2\2\2\48\3\2\2\2\6>\3\2\2\2\bA\3\2\2\2\nE\3\2\2\2"+
- "\fK\3\2\2\2\16P\3\2\2\2\20d\3\2\2\2\22z\3\2\2\2\24\u0085\3\2\2\2\26\u009b"+
- "\3\2\2\2\30\u009e\3\2\2\2\32\u00d5\3\2\2\2\34\u00da\3\2\2\2\36\u00f5\3"+
- "\2\2\2 \u00fb\3\2\2\2\"\u0132\3\2\2\2$\u0161\3\2\2\2&\u016c\3\2\2\2(\u0172"+
- "\3\2\2\2*\u017b\3\2\2\2,\u017d\3\2\2\2.\u0181\3\2\2\2\60\u01a1\3\2\2\2"+
- "\62\u01b1\3\2\2\2\64\65\5\6\4\2\65\66\5\n\6\2\66\67\7\2\2\3\67\3\3\2\2"+
- "\289\5&\24\29:\7\2\2\3:\5\3\2\2\2;=\5\b\5\2<;\3\2\2\2=@\3\2\2\2><\3\2"+
- "\2\2>?\3\2\2\2?\7\3\2\2\2@>\3\2\2\2AB\7\3\2\2BC\7?\2\2C\t\3\2\2\2DF\5"+
- "\f\7\2ED\3\2\2\2FG\3\2\2\2GE\3\2\2\2GH\3\2\2\2H\13\3\2\2\2IL\5\16\b\2"+
- "JL\5\20\t\2KI\3\2\2\2KJ\3\2\2\2L\r\3\2\2\2MO\5\26\f\2NM\3\2\2\2OR\3\2"+
- "\2\2PN\3\2\2\2PQ\3\2\2\2QS\3\2\2\2RP\3\2\2\2SW\5 \21\2TV\5\26\f\2UT\3"+
- "\2\2\2VY\3\2\2\2WU\3\2\2\2WX\3\2\2\2XZ\3\2\2\2YW\3\2\2\2Z]\7K\2\2[\\\7"+
- "\4\2\2\\^\5\"\22\2][\3\2\2\2]^\3\2\2\2^_\3\2\2\2_`\7\5\2\2`\17\3\2\2\2"+
- "ac\5\26\f\2ba\3\2\2\2cf\3\2\2\2db\3\2\2\2de\3\2\2\2eg\3\2\2\2fd\3\2\2"+
- "\2gk\5 \21\2hj\5\26\f\2ih\3\2\2\2jm\3\2\2\2ki\3\2\2\2kl\3\2\2\2ln\3\2"+
- "\2\2mk\3\2\2\2no\7K\2\2oq\7\6\2\2pr\5\22\n\2qp\3\2\2\2qr\3\2\2\2rs\3\2"+
- "\2\2st\7\7\2\2tv\7\b\2\2uw\5\30\r\2vu\3\2\2\2vw\3\2\2\2wx\3\2\2\2xy\7"+
- "\t\2\2y\21\3\2\2\2z\177\5\24\13\2{|\7\n\2\2|~\5\24\13\2}{\3\2\2\2~\u0081"+
- "\3\2\2\2\177}\3\2\2\2\177\u0080\3\2\2\2\u0080\23\3\2\2\2\u0081\177\3\2"+
- "\2\2\u0082\u0084\5\26\f\2\u0083\u0082\3\2\2\2\u0084\u0087\3\2\2\2\u0085"+
- "\u0083\3\2\2\2\u0085\u0086\3\2\2\2\u0086\u0088\3\2\2\2\u0087\u0085\3\2"+
- "\2\2\u0088\u008c\5 \21\2\u0089\u008b\5\26\f\2\u008a\u0089\3\2\2\2\u008b"+
- "\u008e\3\2\2\2\u008c\u008a\3\2\2\2\u008c\u008d\3\2\2\2\u008d\u008f\3\2"+
- "\2\2\u008e\u008c\3\2\2\2\u008f\u0090\7K\2\2\u0090\25\3\2\2\2\u0091\u009c"+
- "\7\13\2\2\u0092\u0093\7\f\2\2\u0093\u0094\7\6\2\2\u0094\u0095\7B\2\2\u0095"+
- "\u009c\7\7\2\2\u0096\u0097\7\r\2\2\u0097\u0098\7\6\2\2\u0098\u0099\7K"+
- "\2\2\u0099\u009c\7\7\2\2\u009a\u009c\7\16\2\2\u009b\u0091\3\2\2\2\u009b"+
- "\u0092\3\2\2\2\u009b\u0096\3\2\2\2\u009b\u009a\3\2\2\2\u009c\27\3\2\2"+
- "\2\u009d\u009f\5\32\16\2\u009e\u009d\3\2\2\2\u009f\u00a0\3\2\2\2\u00a0"+
- "\u009e\3\2\2\2\u00a0\u00a1\3\2\2\2\u00a1\31\3\2\2\2\u00a2\u00d6\5\16\b"+
- "\2\u00a3\u00a5\7\b\2\2\u00a4\u00a6\5\30\r\2\u00a5\u00a4\3\2\2\2\u00a5"+
- "\u00a6\3\2\2\2\u00a6\u00a7\3\2\2\2\u00a7\u00d6\7\t\2\2\u00a8\u00a9\5\""+
- "\22\2\u00a9\u00aa\7\5\2\2\u00aa\u00d6\3\2\2\2\u00ab\u00ac\7\17\2\2\u00ac"+
- "\u00ad\7\6\2\2\u00ad\u00ae\5\"\22\2\u00ae\u00af\7\7\2\2\u00af\u00b2\5"+
- "\32\16\2\u00b0\u00b1\7\20\2\2\u00b1\u00b3\5\32\16\2\u00b2\u00b0\3\2\2"+
- "\2\u00b2\u00b3\3\2\2\2\u00b3\u00d6\3\2\2\2\u00b4\u00b5\7\21\2\2\u00b5"+
- "\u00b6\7\6\2\2\u00b6\u00b7\5\"\22\2\u00b7\u00b8\7\7\2\2\u00b8\u00b9\5"+
- "\32\16\2\u00b9\u00d6\3\2\2\2\u00ba\u00bb\7\22\2\2\u00bb\u00bc\5\32\16"+
- "\2\u00bc\u00bd\7\21\2\2\u00bd\u00be\7\6\2\2\u00be\u00bf\5\"\22\2\u00bf"+
- "\u00c0\7\7\2\2\u00c0\u00c1\7\5\2\2\u00c1\u00d6\3\2\2\2\u00c2\u00c3\7\23"+
- "\2\2\u00c3\u00c5\7\6\2\2\u00c4\u00c6\5\34\17\2\u00c5\u00c4\3\2\2\2\u00c5"+
- "\u00c6\3\2\2\2\u00c6\u00c7\3\2\2\2\u00c7\u00c8\5\36\20\2\u00c8\u00c9\7"+
- "\7\2\2\u00c9\u00ca\5\32\16\2\u00ca\u00d6\3\2\2\2\u00cb\u00cd\7\24\2\2"+
- "\u00cc\u00ce\5\"\22\2\u00cd\u00cc\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\u00cf"+
- "\3\2\2\2\u00cf\u00d6\7\5\2\2\u00d0\u00d1\7\25\2\2\u00d1\u00d2\7\b\2\2"+
- "\u00d2\u00d3\5&\24\2\u00d3\u00d4\7\t\2\2\u00d4\u00d6\3\2\2\2\u00d5\u00a2"+
- "\3\2\2\2\u00d5\u00a3\3\2\2\2\u00d5\u00a8\3\2\2\2\u00d5\u00ab\3\2\2\2\u00d5"+
- "\u00b4\3\2\2\2\u00d5\u00ba\3\2\2\2\u00d5\u00c2\3\2\2\2\u00d5\u00cb\3\2"+
- "\2\2\u00d5\u00d0\3\2\2\2\u00d6\33\3\2\2\2\u00d7\u00d9\5\26\f\2\u00d8\u00d7"+
- "\3\2\2\2\u00d9\u00dc\3\2\2\2\u00da\u00d8\3\2\2\2\u00da\u00db\3\2\2\2\u00db"+
- "\u00de\3\2\2\2\u00dc\u00da\3\2\2\2\u00dd\u00df\5 \21\2\u00de\u00dd\3\2"+
- "\2\2\u00de\u00df\3\2\2\2\u00df\u00e3\3\2\2\2\u00e0\u00e2\5\26\f\2\u00e1"+
- "\u00e0\3\2\2\2\u00e2\u00e5\3\2\2\2\u00e3\u00e1\3\2\2\2\u00e3\u00e4\3\2"+
- "\2\2\u00e4\u00e6\3\2\2\2\u00e5\u00e3\3\2\2\2\u00e6\u00e9\7K\2\2\u00e7"+
- "\u00e8\7\4\2\2\u00e8\u00ea\5\"\22\2\u00e9\u00e7\3\2\2\2\u00e9\u00ea\3"+
- "\2\2\2\u00ea\35\3\2\2\2\u00eb\u00ec\7\5\2\2\u00ec\u00ed\5\"\22\2\u00ed"+
- "\u00ee\7\5\2\2\u00ee\u00ef\5\"\22\2\u00ef\u00f6\3\2\2\2\u00f0\u00f1\7"+
- "\26\2\2\u00f1\u00f2\5\"\22\2\u00f2\u00f3\7\27\2\2\u00f3\u00f4\5\"\22\2"+
- "\u00f4\u00f6\3\2\2\2\u00f5\u00eb\3\2\2\2\u00f5\u00f0\3\2\2\2\u00f6\37"+
- "\3\2\2\2\u00f7\u00f8\b\21\1\2\u00f8\u00fc\7>\2\2\u00f9\u00fa\7\30\2\2"+
- "\u00fa\u00fc\7>\2\2\u00fb\u00f7\3\2\2\2\u00fb\u00f9\3\2\2\2\u00fc\u0107"+
- "\3\2\2\2\u00fd\u00fe\f\4\2\2\u00fe\u0106\7\31\2\2\u00ff\u0100\f\3\2\2"+
- "\u0100\u0102\7\32\2\2\u0101\u0103\5\"\22\2\u0102\u0101\3\2\2\2\u0102\u0103"+
- "\3\2\2\2\u0103\u0104\3\2\2\2\u0104\u0106\7\33\2\2\u0105\u00fd\3\2\2\2"+
- "\u0105\u00ff\3\2\2\2\u0106\u0109\3\2\2\2\u0107\u0105\3\2\2\2\u0107\u0108"+
- "\3\2\2\2\u0108!\3\2\2\2\u0109\u0107\3\2\2\2\u010a\u010b\b\22\1\2\u010b"+
- "\u010c\7\6\2\2\u010c\u010d\5\"\22\2\u010d\u010e\7\7\2\2\u010e\u0133\3"+
- "\2\2\2\u010f\u0110\7K\2\2\u0110\u0112\7\6\2\2\u0111\u0113\5$\23\2\u0112"+
- "\u0111\3\2\2\2\u0112\u0113\3\2\2\2\u0113\u0114\3\2\2\2\u0114\u0133\7\7"+
- "\2\2\u0115\u0116\7\6\2\2\u0116\u0117\5 \21\2\u0117\u0118\7\7\2\2\u0118"+
- "\u0119\5\"\22\31\u0119\u0133\3\2\2\2\u011a\u011b\t\2\2\2\u011b\u0133\5"+
- "\"\22\30\u011c\u011d\7\31\2\2\u011d\u0133\5\"\22\26\u011e\u011f\t\3\2"+
- "\2\u011f\u0133\5\"\22\25\u0120\u0121\t\4\2\2\u0121\u0133\5\"\22\21\u0122"+
- "\u0123\7\b\2\2\u0123\u0128\5\"\22\2\u0124\u0125\7\n\2\2\u0125\u0127\5"+
- "\"\22\2\u0126\u0124\3\2\2\2\u0127\u012a\3\2\2\2\u0128\u0126\3\2\2\2\u0128"+
- "\u0129\3\2\2\2\u0129\u012b\3\2\2\2\u012a\u0128\3\2\2\2\u012b\u012c\7\t"+
- "\2\2\u012c\u0133\3\2\2\2\u012d\u0133\7K\2\2\u012e\u0133\7B\2\2\u012f\u0133"+
- "\7?\2\2\u0130\u0133\7@\2\2\u0131\u0133\7A\2\2\u0132\u010a\3\2\2\2\u0132"+
- "\u010f\3\2\2\2\u0132\u0115\3\2\2\2\u0132\u011a\3\2\2\2\u0132\u011c\3\2"+
- "\2\2\u0132\u011e\3\2\2\2\u0132\u0120\3\2\2\2\u0132\u0122\3\2\2\2\u0132"+
- "\u012d\3\2\2\2\u0132\u012e\3\2\2\2\u0132\u012f\3\2\2\2\u0132\u0130\3\2"+
- "\2\2\u0132\u0131\3\2\2\2\u0133\u015e\3\2\2\2\u0134\u0135\f\24\2\2\u0135"+
- "\u0136\t\5\2\2\u0136\u015d\5\"\22\25\u0137\u0138\f\23\2\2\u0138\u0139"+
- "\t\6\2\2\u0139\u015d\5\"\22\24\u013a\u013b\f\22\2\2\u013b\u013c\t\7\2"+
- "\2\u013c\u015d\5\"\22\23\u013d\u013e\f\20\2\2\u013e\u013f\t\b\2\2\u013f"+
- "\u015d\5\"\22\21\u0140\u0141\f\17\2\2\u0141\u0142\7!\2\2\u0142\u015d\5"+
- "\"\22\20\u0143\u0144\f\16\2\2\u0144\u0145\7-\2\2\u0145\u015d\5\"\22\17"+
- "\u0146\u0147\f\r\2\2\u0147\u0148\7.\2\2\u0148\u015d\5\"\22\16\u0149\u014a"+
- "\f\f\2\2\u014a\u014b\7/\2\2\u014b\u015d\5\"\22\r\u014c\u014d\f\13\2\2"+
- "\u014d\u014e\7\60\2\2\u014e\u015d\5\"\22\f\u014f\u0150\f\n\2\2\u0150\u0151"+
- "\7\4\2\2\u0151\u015d\5\"\22\n\u0152\u0153\f\t\2\2\u0153\u0154\t\t\2\2"+
- "\u0154\u015d\5\"\22\t\u0155\u0156\f\32\2\2\u0156\u0157\7\32\2\2\u0157"+
- "\u0158\5\"\22\2\u0158\u0159\7\33\2\2\u0159\u015d\3\2\2\2\u015a\u015b\f"+
- "\27\2\2\u015b\u015d\t\2\2\2\u015c\u0134\3\2\2\2\u015c\u0137\3\2\2\2\u015c"+
- "\u013a\3\2\2\2\u015c\u013d\3\2\2\2\u015c\u0140\3\2\2\2\u015c\u0143\3\2"+
- "\2\2\u015c\u0146\3\2\2\2\u015c\u0149\3\2\2\2\u015c\u014c\3\2\2\2\u015c"+
- "\u014f\3\2\2\2\u015c\u0152\3\2\2\2\u015c\u0155\3\2\2\2\u015c\u015a\3\2"+
- "\2\2\u015d\u0160\3\2\2\2\u015e\u015c\3\2\2\2\u015e\u015f\3\2\2\2\u015f"+
- "#\3\2\2\2\u0160\u015e\3\2\2\2\u0161\u0166\5\"\22\2\u0162\u0163\7\n\2\2"+
- "\u0163\u0165\5\"\22\2\u0164\u0162\3\2\2\2\u0165\u0168\3\2\2\2\u0166\u0164"+
- "\3\2\2\2\u0166\u0167\3\2\2\2\u0167%\3\2\2\2\u0168\u0166\3\2\2\2\u0169"+
- "\u016b\5(\25\2\u016a\u0169\3\2\2\2\u016b\u016e\3\2\2\2\u016c\u016a\3\2"+
- "\2\2\u016c\u016d\3\2\2\2\u016d\'\3\2\2\2\u016e\u016c\3\2\2\2\u016f\u0173"+
- "\5*\26\2\u0170\u0173\5,\27\2\u0171\u0173\5.\30\2\u0172\u016f\3\2\2\2\u0172"+
- "\u0170\3\2\2\2\u0172\u0171\3\2\2\2\u0173)\3\2\2\2\u0174\u0175\7K\2\2\u0175"+
- "\u017c\7\26\2\2\u0176\u0178\7 \2\2\u0177\u0179\7K\2\2\u0178\u0177\3\2"+
- "\2\2\u0178\u0179\3\2\2\2\u0179\u017a\3\2\2\2\u017a\u017c\7\26\2\2\u017b"+
- "\u0174\3\2\2\2\u017b\u0176\3\2\2\2\u017c+\3\2\2\2\u017d\u017f\7=\2\2\u017e"+
- "\u0180\5\60\31\2\u017f\u017e\3\2\2\2\u017f\u0180\3\2\2\2\u0180-\3\2\2"+
- "\2\u0181\u0182\7;\2\2\u0182\u0187\5\62\32\2\u0183\u0184\7\n\2\2\u0184"+
- "\u0186\5\62\32\2\u0185\u0183\3\2\2\2\u0186\u0189\3\2\2\2\u0187\u0185\3"+
- "\2\2\2\u0187\u0188\3\2\2\2\u0188/\3\2\2\2\u0189\u0187\3\2\2\2\u018a\u01a2"+
- "\5\62\32\2\u018b\u018c\7<\2\2\u018c\u01a2\5\62\32\2\u018d\u018e\5\62\32"+
- "\2\u018e\u018f\7\n\2\2\u018f\u0190\7K\2\2\u0190\u01a2\3\2\2\2\u0191\u0192"+
- "\7\6\2\2\u0192\u0193\5\62\32\2\u0193\u0194\7\7\2\2\u0194\u0195\7\n\2\2"+
- "\u0195\u0196\7K\2\2\u0196\u01a2\3\2\2\2\u0197\u0198\7\6\2\2\u0198\u0199"+
- "\5\62\32\2\u0199\u019a\7\n\2\2\u019a\u019b\7K\2\2\u019b\u019c\7\7\2\2"+
- "\u019c\u01a2\3\2\2\2\u019d\u019e\7\6\2\2\u019e\u019f\5\62\32\2\u019f\u01a0"+
- "\7\7\2\2\u01a0\u01a2\3\2\2\2\u01a1\u018a\3\2\2\2\u01a1\u018b\3\2\2\2\u01a1"+
- "\u018d\3\2\2\2\u01a1\u0191\3\2\2\2\u01a1\u0197\3\2\2\2\u01a1\u019d\3\2"+
- "\2\2\u01a2\61\3\2\2\2\u01a3\u01a4\b\32\1\2\u01a4\u01a5\7\32\2\2\u01a5"+
- "\u01a6\5\62\32\2\u01a6\u01a7\7\33\2\2\u01a7\u01b2\3\2\2\2\u01a8\u01a9"+
- "\t\n\2\2\u01a9\u01b2\5\62\32\n\u01aa\u01b2\7K\2\2\u01ab\u01b2\7L\2\2\u01ac"+
- "\u01ad\7\b\2\2\u01ad\u01ae\7K\2\2\u01ae\u01b2\7\t\2\2\u01af\u01b2\7B\2"+
- "\2\u01b0\u01b2\7@\2\2\u01b1\u01a3\3\2\2\2\u01b1\u01a8\3\2\2\2\u01b1\u01aa"+
- "\3\2\2\2\u01b1\u01ab\3\2\2\2\u01b1\u01ac\3\2\2\2\u01b1\u01af\3\2\2\2\u01b1"+
- "\u01b0\3\2\2\2\u01b2\u01be\3\2\2\2\u01b3\u01b4\f\13\2\2\u01b4\u01b5\t"+
- "\5\2\2\u01b5\u01bd\5\62\32\f\u01b6\u01b7\f\t\2\2\u01b7\u01b8\t\13\2\2"+
- "\u01b8\u01bd\5\62\32\n\u01b9\u01ba\f\b\2\2\u01ba\u01bb\t\7\2\2\u01bb\u01bd"+
- "\5\62\32\t\u01bc\u01b3\3\2\2\2\u01bc\u01b6\3\2\2\2\u01bc\u01b9\3\2\2\2"+
- "\u01bd\u01c0\3\2\2\2\u01be\u01bc\3\2\2\2\u01be\u01bf\3\2\2\2\u01bf\63"+
- "\3\2\2\2\u01c0\u01be\3\2\2\2/>GKPW]dkqv\177\u0085\u008c\u009b\u00a0\u00a5"+
- "\u00b2\u00c5\u00cd\u00d5\u00da\u00de\u00e3\u00e9\u00f5\u00fb\u0102\u0105"+
- "\u0107\u0112\u0128\u0132\u015c\u015e\u0166\u016c\u0172\u0178\u017b\u017f"+
- "\u0187\u01a1\u01b1\u01bc\u01be";
+ "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\3\2\3\2\3"+
+ "\2\3\2\3\3\3\3\3\3\3\4\7\4G\n\4\f\4\16\4J\13\4\3\5\3\5\3\5\3\6\6\6P\n"+
+ "\6\r\6\16\6Q\3\7\3\7\3\7\5\7W\n\7\3\b\7\bZ\n\b\f\b\16\b]\13\b\3\b\3\b"+
+ "\7\ba\n\b\f\b\16\bd\13\b\3\b\3\b\3\b\5\bi\n\b\3\b\3\b\3\t\7\tn\n\t\f\t"+
+ "\16\tq\13\t\3\t\3\t\7\tu\n\t\f\t\16\tx\13\t\3\t\3\t\3\t\5\t}\n\t\3\t\3"+
+ "\t\3\t\5\t\u0082\n\t\3\t\3\t\3\n\3\n\5\n\u0088\n\n\3\n\3\n\3\13\3\13\3"+
+ "\13\3\13\7\13\u0090\n\13\f\13\16\13\u0093\13\13\3\13\3\13\3\f\3\f\3\f"+
+ "\3\f\3\f\3\f\5\f\u009d\n\f\3\r\3\r\3\r\7\r\u00a2\n\r\f\r\16\r\u00a5\13"+
+ "\r\3\16\3\16\3\16\3\16\3\16\3\16\3\16\7\16\u00ae\n\16\f\16\16\16\u00b1"+
+ "\13\16\3\17\3\17\3\17\7\17\u00b6\n\17\f\17\16\17\u00b9\13\17\3\20\7\20"+
+ "\u00bc\n\20\f\20\16\20\u00bf\13\20\3\20\3\20\7\20\u00c3\n\20\f\20\16\20"+
+ "\u00c6\13\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3"+
+ "\21\3\21\5\21\u00d5\n\21\3\22\6\22\u00d8\n\22\r\22\16\22\u00d9\3\23\3"+
+ "\23\3\23\5\23\u00df\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+
+ "\3\23\3\23\5\23\u00ec\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+
+ "\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u00ff\n\23\3\23\3\23\3\23"+
+ "\3\23\3\23\3\23\5\23\u0107\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23"+
+ "\u0110\n\23\3\24\7\24\u0113\n\24\f\24\16\24\u0116\13\24\3\24\5\24\u0119"+
+ "\n\24\3\24\7\24\u011c\n\24\f\24\16\24\u011f\13\24\3\24\3\24\3\24\5\24"+
+ "\u0124\n\24\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\5\25\u0130"+
+ "\n\25\3\26\3\26\3\26\3\26\5\26\u0136\n\26\3\26\3\26\3\26\3\26\3\26\5\26"+
+ "\u013d\n\26\3\26\7\26\u0140\n\26\f\26\16\26\u0143\13\26\3\27\3\27\3\27"+
+ "\3\27\3\27\3\27\3\27\3\27\5\27\u014d\n\27\3\27\3\27\3\27\3\27\3\27\3\27"+
+ "\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\7\27\u0161"+
+ "\n\27\f\27\16\27\u0164\13\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\5\27\u016d"+
+ "\n\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27"+
+ "\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27"+
+ "\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\7\27"+
+ "\u0197\n\27\f\27\16\27\u019a\13\27\3\30\3\30\3\30\7\30\u019f\n\30\f\30"+
+ "\16\30\u01a2\13\30\3\31\7\31\u01a5\n\31\f\31\16\31\u01a8\13\31\3\32\3"+
+ "\32\3\32\5\32\u01ad\n\32\3\33\3\33\3\33\3\33\5\33\u01b3\n\33\3\33\5\33"+
+ "\u01b6\n\33\3\34\3\34\5\34\u01ba\n\34\3\35\3\35\3\35\3\35\7\35\u01c0\n"+
+ "\35\f\35\16\35\u01c3\13\35\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36"+
+ "\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36"+
+ "\5\36\u01dc\n\36\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+
+ "\3\37\3\37\3\37\5\37\u01ec\n\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+
+ "\3\37\7\37\u01f7\n\37\f\37\16\37\u01fa\13\37\3\37\2\5*,< \2\4\6\b\n\f"+
+ "\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<\2\f\3\2 !\3\2\"&\3"+
+ "\2+,\3\2\'(\4\2\35\35)*\3\2\"#\3\2+\60\3\2\65>\4\2\"#+,\4\2\35\35))\2"+
+ "\u023d\2>\3\2\2\2\4B\3\2\2\2\6H\3\2\2\2\bK\3\2\2\2\nO\3\2\2\2\fV\3\2\2"+
+ "\2\16[\3\2\2\2\20o\3\2\2\2\22\u0085\3\2\2\2\24\u008b\3\2\2\2\26\u009c"+
+ "\3\2\2\2\30\u009e\3\2\2\2\32\u00a6\3\2\2\2\34\u00b2\3\2\2\2\36\u00bd\3"+
+ "\2\2\2 \u00d4\3\2\2\2\"\u00d7\3\2\2\2$\u010f\3\2\2\2&\u0114\3\2\2\2(\u012f"+
+ "\3\2\2\2*\u0135\3\2\2\2,\u016c\3\2\2\2.\u019b\3\2\2\2\60\u01a6\3\2\2\2"+
+ "\62\u01ac\3\2\2\2\64\u01b5\3\2\2\2\66\u01b7\3\2\2\28\u01bb\3\2\2\2:\u01db"+
+ "\3\2\2\2<\u01eb\3\2\2\2>?\5\6\4\2?@\5\n\6\2@A\7\2\2\3A\3\3\2\2\2BC\5\60"+
+ "\31\2CD\7\2\2\3D\5\3\2\2\2EG\5\b\5\2FE\3\2\2\2GJ\3\2\2\2HF\3\2\2\2HI\3"+
+ "\2\2\2I\7\3\2\2\2JH\3\2\2\2KL\7\3\2\2LM\7D\2\2M\t\3\2\2\2NP\5\f\7\2ON"+
+ "\3\2\2\2PQ\3\2\2\2QO\3\2\2\2QR\3\2\2\2R\13\3\2\2\2SW\5\16\b\2TW\5\20\t"+
+ "\2UW\5\22\n\2VS\3\2\2\2VT\3\2\2\2VU\3\2\2\2W\r\3\2\2\2XZ\5 \21\2YX\3\2"+
+ "\2\2Z]\3\2\2\2[Y\3\2\2\2[\\\3\2\2\2\\^\3\2\2\2][\3\2\2\2^b\5*\26\2_a\5"+
+ " \21\2`_\3\2\2\2ad\3\2\2\2b`\3\2\2\2bc\3\2\2\2ce\3\2\2\2db\3\2\2\2eh\7"+
+ "P\2\2fg\7\4\2\2gi\5,\27\2hf\3\2\2\2hi\3\2\2\2ij\3\2\2\2jk\7\5\2\2k\17"+
+ "\3\2\2\2ln\5 \21\2ml\3\2\2\2nq\3\2\2\2om\3\2\2\2op\3\2\2\2pr\3\2\2\2q"+
+ "o\3\2\2\2rv\5*\26\2su\5 \21\2ts\3\2\2\2ux\3\2\2\2vt\3\2\2\2vw\3\2\2\2"+
+ "wy\3\2\2\2xv\3\2\2\2yz\7P\2\2z|\7\6\2\2{}\5\34\17\2|{\3\2\2\2|}\3\2\2"+
+ "\2}~\3\2\2\2~\177\7\7\2\2\177\u0081\7\b\2\2\u0080\u0082\5\"\22\2\u0081"+
+ "\u0080\3\2\2\2\u0081\u0082\3\2\2\2\u0082\u0083\3\2\2\2\u0083\u0084\7\t"+
+ "\2\2\u0084\21\3\2\2\2\u0085\u0087\7\n\2\2\u0086\u0088\5\24\13\2\u0087"+
+ "\u0086\3\2\2\2\u0087\u0088\3\2\2\2\u0088\u0089\3\2\2\2\u0089\u008a\7B"+
+ "\2\2\u008a\23\3\2\2\2\u008b\u008c\7\6\2\2\u008c\u0091\5\26\f\2\u008d\u008e"+
+ "\7\5\2\2\u008e\u0090\5\26\f\2\u008f\u008d\3\2\2\2\u0090\u0093\3\2\2\2"+
+ "\u0091\u008f\3\2\2\2\u0091\u0092\3\2\2\2\u0092\u0094\3\2\2\2\u0093\u0091"+
+ "\3\2\2\2\u0094\u0095\7\7\2\2\u0095\25\3\2\2\2\u0096\u0097\7\3\2\2\u0097"+
+ "\u009d\5\30\r\2\u0098\u0099\7\13\2\2\u0099\u009d\7D\2\2\u009a\u009b\7"+
+ "\f\2\2\u009b\u009d\5\32\16\2\u009c\u0096\3\2\2\2\u009c\u0098\3\2\2\2\u009c"+
+ "\u009a\3\2\2\2\u009d\27\3\2\2\2\u009e\u00a3\7D\2\2\u009f\u00a0\7\r\2\2"+
+ "\u00a0\u00a2\7D\2\2\u00a1\u009f\3\2\2\2\u00a2\u00a5\3\2\2\2\u00a3\u00a1"+
+ "\3\2\2\2\u00a3\u00a4\3\2\2\2\u00a4\31\3\2\2\2\u00a5\u00a3\3\2\2\2\u00a6"+
+ "\u00a7\7P\2\2\u00a7\u00a8\7\16\2\2\u00a8\u00af\5,\27\2\u00a9\u00aa\7\r"+
+ "\2\2\u00aa\u00ab\7P\2\2\u00ab\u00ac\7\16\2\2\u00ac\u00ae\5,\27\2\u00ad"+
+ "\u00a9\3\2\2\2\u00ae\u00b1\3\2\2\2\u00af\u00ad\3\2\2\2\u00af\u00b0\3\2"+
+ "\2\2\u00b0\33\3\2\2\2\u00b1\u00af\3\2\2\2\u00b2\u00b7\5\36\20\2\u00b3"+
+ "\u00b4\7\r\2\2\u00b4\u00b6\5\36\20\2\u00b5\u00b3\3\2\2\2\u00b6\u00b9\3"+
+ "\2\2\2\u00b7\u00b5\3\2\2\2\u00b7\u00b8\3\2\2\2\u00b8\35\3\2\2\2\u00b9"+
+ "\u00b7\3\2\2\2\u00ba\u00bc\5 \21\2\u00bb\u00ba\3\2\2\2\u00bc\u00bf\3\2"+
+ "\2\2\u00bd\u00bb\3\2\2\2\u00bd\u00be\3\2\2\2\u00be\u00c0\3\2\2\2\u00bf"+
+ "\u00bd\3\2\2\2\u00c0\u00c4\5*\26\2\u00c1\u00c3\5 \21\2\u00c2\u00c1\3\2"+
+ "\2\2\u00c3\u00c6\3\2\2\2\u00c4\u00c2\3\2\2\2\u00c4\u00c5\3\2\2\2\u00c5"+
+ "\u00c7\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c7\u00c8\7P\2\2\u00c8\37\3\2\2\2"+
+ "\u00c9\u00d5\7\17\2\2\u00ca\u00d5\7\20\2\2\u00cb\u00cc\7\21\2\2\u00cc"+
+ "\u00cd\7\6\2\2\u00cd\u00ce\7G\2\2\u00ce\u00d5\7\7\2\2\u00cf\u00d0\7\22"+
+ "\2\2\u00d0\u00d1\7\6\2\2\u00d1\u00d2\7P\2\2\u00d2\u00d5\7\7\2\2\u00d3"+
+ "\u00d5\7\23\2\2\u00d4\u00c9\3\2\2\2\u00d4\u00ca\3\2\2\2\u00d4\u00cb\3"+
+ "\2\2\2\u00d4\u00cf\3\2\2\2\u00d4\u00d3\3\2\2\2\u00d5!\3\2\2\2\u00d6\u00d8"+
+ "\5$\23\2\u00d7\u00d6\3\2\2\2\u00d8\u00d9\3\2\2\2\u00d9\u00d7\3\2\2\2\u00d9"+
+ "\u00da\3\2\2\2\u00da#\3\2\2\2\u00db\u0110\5\16\b\2\u00dc\u00de\7\b\2\2"+
+ "\u00dd\u00df\5\"\22\2\u00de\u00dd\3\2\2\2\u00de\u00df\3\2\2\2\u00df\u00e0"+
+ "\3\2\2\2\u00e0\u0110\7\t\2\2\u00e1\u00e2\5,\27\2\u00e2\u00e3\7\5\2\2\u00e3"+
+ "\u0110\3\2\2\2\u00e4\u00e5\7\24\2\2\u00e5\u00e6\7\6\2\2\u00e6\u00e7\5"+
+ ",\27\2\u00e7\u00e8\7\7\2\2\u00e8\u00eb\5$\23\2\u00e9\u00ea\7\25\2\2\u00ea"+
+ "\u00ec\5$\23\2\u00eb\u00e9\3\2\2\2\u00eb\u00ec\3\2\2\2\u00ec\u0110\3\2"+
+ "\2\2\u00ed\u00ee\7\26\2\2\u00ee\u00ef\7\6\2\2\u00ef\u00f0\5,\27\2\u00f0"+
+ "\u00f1\7\7\2\2\u00f1\u00f2\5$\23\2\u00f2\u0110\3\2\2\2\u00f3\u00f4\7\27"+
+ "\2\2\u00f4\u00f5\5$\23\2\u00f5\u00f6\7\26\2\2\u00f6\u00f7\7\6\2\2\u00f7"+
+ "\u00f8\5,\27\2\u00f8\u00f9\7\7\2\2\u00f9\u00fa\7\5\2\2\u00fa\u0110\3\2"+
+ "\2\2\u00fb\u00fc\7\30\2\2\u00fc\u00fe\7\6\2\2\u00fd\u00ff\5&\24\2\u00fe"+
+ "\u00fd\3\2\2\2\u00fe\u00ff\3\2\2\2\u00ff\u0100\3\2\2\2\u0100\u0101\5("+
+ "\25\2\u0101\u0102\7\7\2\2\u0102\u0103\5$\23\2\u0103\u0110\3\2\2\2\u0104"+
+ "\u0106\7\31\2\2\u0105\u0107\5,\27\2\u0106\u0105\3\2\2\2\u0106\u0107\3"+
+ "\2\2\2\u0107\u0108\3\2\2\2\u0108\u0110\7\5\2\2\u0109\u010a\7\32\2\2\u010a"+
+ "\u010b\7\b\2\2\u010b\u010c\5\60\31\2\u010c\u010d\7\t\2\2\u010d\u0110\3"+
+ "\2\2\2\u010e\u0110\5\22\n\2\u010f\u00db\3\2\2\2\u010f\u00dc\3\2\2\2\u010f"+
+ "\u00e1\3\2\2\2\u010f\u00e4\3\2\2\2\u010f\u00ed\3\2\2\2\u010f\u00f3\3\2"+
+ "\2\2\u010f\u00fb\3\2\2\2\u010f\u0104\3\2\2\2\u010f\u0109\3\2\2\2\u010f"+
+ "\u010e\3\2\2\2\u0110%\3\2\2\2\u0111\u0113\5 \21\2\u0112\u0111\3\2\2\2"+
+ "\u0113\u0116\3\2\2\2\u0114\u0112\3\2\2\2\u0114\u0115\3\2\2\2\u0115\u0118"+
+ "\3\2\2\2\u0116\u0114\3\2\2\2\u0117\u0119\5*\26\2\u0118\u0117\3\2\2\2\u0118"+
+ "\u0119\3\2\2\2\u0119\u011d\3\2\2\2\u011a\u011c\5 \21\2\u011b\u011a\3\2"+
+ "\2\2\u011c\u011f\3\2\2\2\u011d\u011b\3\2\2\2\u011d\u011e\3\2\2\2\u011e"+
+ "\u0120\3\2\2\2\u011f\u011d\3\2\2\2\u0120\u0123\7P\2\2\u0121\u0122\7\4"+
+ "\2\2\u0122\u0124\5,\27\2\u0123\u0121\3\2\2\2\u0123\u0124\3\2\2\2\u0124"+
+ "\'\3\2\2\2\u0125\u0126\7\5\2\2\u0126\u0127\5,\27\2\u0127\u0128\7\5\2\2"+
+ "\u0128\u0129\5,\27\2\u0129\u0130\3\2\2\2\u012a\u012b\7\16\2\2\u012b\u012c"+
+ "\5,\27\2\u012c\u012d\7\33\2\2\u012d\u012e\5,\27\2\u012e\u0130\3\2\2\2"+
+ "\u012f\u0125\3\2\2\2\u012f\u012a\3\2\2\2\u0130)\3\2\2\2\u0131\u0132\b"+
+ "\26\1\2\u0132\u0136\7C\2\2\u0133\u0134\7\34\2\2\u0134\u0136\7C\2\2\u0135"+
+ "\u0131\3\2\2\2\u0135\u0133\3\2\2\2\u0136\u0141\3\2\2\2\u0137\u0138\f\4"+
+ "\2\2\u0138\u0140\7\35\2\2\u0139\u013a\f\3\2\2\u013a\u013c\7\36\2\2\u013b"+
+ "\u013d\5,\27\2\u013c\u013b\3\2\2\2\u013c\u013d\3\2\2\2\u013d\u013e\3\2"+
+ "\2\2\u013e\u0140\7\37\2\2\u013f\u0137\3\2\2\2\u013f\u0139\3\2\2\2\u0140"+
+ "\u0143\3\2\2\2\u0141\u013f\3\2\2\2\u0141\u0142\3\2\2\2\u0142+\3\2\2\2"+
+ "\u0143\u0141\3\2\2\2\u0144\u0145\b\27\1\2\u0145\u0146\7\6\2\2\u0146\u0147"+
+ "\5,\27\2\u0147\u0148\7\7\2\2\u0148\u016d\3\2\2\2\u0149\u014a\7P\2\2\u014a"+
+ "\u014c\7\6\2\2\u014b\u014d\5.\30\2\u014c\u014b\3\2\2\2\u014c\u014d\3\2"+
+ "\2\2\u014d\u014e\3\2\2\2\u014e\u016d\7\7\2\2\u014f\u0150\7\6\2\2\u0150"+
+ "\u0151\5*\26\2\u0151\u0152\7\7\2\2\u0152\u0153\5,\27\31\u0153\u016d\3"+
+ "\2\2\2\u0154\u0155\t\2\2\2\u0155\u016d\5,\27\30\u0156\u0157\7\35\2\2\u0157"+
+ "\u016d\5,\27\26\u0158\u0159\t\3\2\2\u0159\u016d\5,\27\25\u015a\u015b\t"+
+ "\4\2\2\u015b\u016d\5,\27\21\u015c\u015d\7\b\2\2\u015d\u0162\5,\27\2\u015e"+
+ "\u015f\7\r\2\2\u015f\u0161\5,\27\2\u0160\u015e\3\2\2\2\u0161\u0164\3\2"+
+ "\2\2\u0162\u0160\3\2\2\2\u0162\u0163\3\2\2\2\u0163\u0165\3\2\2\2\u0164"+
+ "\u0162\3\2\2\2\u0165\u0166\7\t\2\2\u0166\u016d\3\2\2\2\u0167\u016d\7P"+
+ "\2\2\u0168\u016d\7G\2\2\u0169\u016d\7D\2\2\u016a\u016d\7E\2\2\u016b\u016d"+
+ "\7F\2\2\u016c\u0144\3\2\2\2\u016c\u0149\3\2\2\2\u016c\u014f\3\2\2\2\u016c"+
+ "\u0154\3\2\2\2\u016c\u0156\3\2\2\2\u016c\u0158\3\2\2\2\u016c\u015a\3\2"+
+ "\2\2\u016c\u015c\3\2\2\2\u016c\u0167\3\2\2\2\u016c\u0168\3\2\2\2\u016c"+
+ "\u0169\3\2\2\2\u016c\u016a\3\2\2\2\u016c\u016b\3\2\2\2\u016d\u0198\3\2"+
+ "\2\2\u016e\u016f\f\24\2\2\u016f\u0170\t\5\2\2\u0170\u0197\5,\27\25\u0171"+
+ "\u0172\f\23\2\2\u0172\u0173\t\6\2\2\u0173\u0197\5,\27\24\u0174\u0175\f"+
+ "\22\2\2\u0175\u0176\t\7\2\2\u0176\u0197\5,\27\23\u0177\u0178\f\20\2\2"+
+ "\u0178\u0179\t\b\2\2\u0179\u0197\5,\27\21\u017a\u017b\f\17\2\2\u017b\u017c"+
+ "\7%\2\2\u017c\u0197\5,\27\20\u017d\u017e\f\16\2\2\u017e\u017f\7\61\2\2"+
+ "\u017f\u0197\5,\27\17\u0180\u0181\f\r\2\2\u0181\u0182\7\62\2\2\u0182\u0197"+
+ "\5,\27\16\u0183\u0184\f\f\2\2\u0184\u0185\7\63\2\2\u0185\u0197\5,\27\r"+
+ "\u0186\u0187\f\13\2\2\u0187\u0188\7\64\2\2\u0188\u0197\5,\27\f\u0189\u018a"+
+ "\f\n\2\2\u018a\u018b\7\4\2\2\u018b\u0197\5,\27\n\u018c\u018d\f\t\2\2\u018d"+
+ "\u018e\t\t\2\2\u018e\u0197\5,\27\t\u018f\u0190\f\32\2\2\u0190\u0191\7"+
+ "\36\2\2\u0191\u0192\5,\27\2\u0192\u0193\7\37\2\2\u0193\u0197\3\2\2\2\u0194"+
+ "\u0195\f\27\2\2\u0195\u0197\t\2\2\2\u0196\u016e\3\2\2\2\u0196\u0171\3"+
+ "\2\2\2\u0196\u0174\3\2\2\2\u0196\u0177\3\2\2\2\u0196\u017a\3\2\2\2\u0196"+
+ "\u017d\3\2\2\2\u0196\u0180\3\2\2\2\u0196\u0183\3\2\2\2\u0196\u0186\3\2"+
+ "\2\2\u0196\u0189\3\2\2\2\u0196\u018c\3\2\2\2\u0196\u018f\3\2\2\2\u0196"+
+ "\u0194\3\2\2\2\u0197\u019a\3\2\2\2\u0198\u0196\3\2\2\2\u0198\u0199\3\2"+
+ "\2\2\u0199-\3\2\2\2\u019a\u0198\3\2\2\2\u019b\u01a0\5,\27\2\u019c\u019d"+
+ "\7\r\2\2\u019d\u019f\5,\27\2\u019e\u019c\3\2\2\2\u019f\u01a2\3\2\2\2\u01a0"+
+ "\u019e\3\2\2\2\u01a0\u01a1\3\2\2\2\u01a1/\3\2\2\2\u01a2\u01a0\3\2\2\2"+
+ "\u01a3\u01a5\5\62\32\2\u01a4\u01a3\3\2\2\2\u01a5\u01a8\3\2\2\2\u01a6\u01a4"+
+ "\3\2\2\2\u01a6\u01a7\3\2\2\2\u01a7\61\3\2\2\2\u01a8\u01a6\3\2\2\2\u01a9"+
+ "\u01ad\5\64\33\2\u01aa\u01ad\5\66\34\2\u01ab\u01ad\58\35\2\u01ac\u01a9"+
+ "\3\2\2\2\u01ac\u01aa\3\2\2\2\u01ac\u01ab\3\2\2\2\u01ad\63\3\2\2\2\u01ae"+
+ "\u01af\7P\2\2\u01af\u01b6\7\16\2\2\u01b0\u01b2\7$\2\2\u01b1\u01b3\7P\2"+
+ "\2\u01b2\u01b1\3\2\2\2\u01b2\u01b3\3\2\2\2\u01b3\u01b4\3\2\2\2\u01b4\u01b6"+
+ "\7\16\2\2\u01b5\u01ae\3\2\2\2\u01b5\u01b0\3\2\2\2\u01b6\65\3\2\2\2\u01b7"+
+ "\u01b9\7A\2\2\u01b8\u01ba\5:\36\2\u01b9\u01b8\3\2\2\2\u01b9\u01ba\3\2"+
+ "\2\2\u01ba\67\3\2\2\2\u01bb\u01bc\7?\2\2\u01bc\u01c1\5<\37\2\u01bd\u01be"+
+ "\7\r\2\2\u01be\u01c0\5<\37\2\u01bf\u01bd\3\2\2\2\u01c0\u01c3\3\2\2\2\u01c1"+
+ "\u01bf\3\2\2\2\u01c1\u01c2\3\2\2\2\u01c29\3\2\2\2\u01c3\u01c1\3\2\2\2"+
+ "\u01c4\u01dc\5<\37\2\u01c5\u01c6\7@\2\2\u01c6\u01dc\5<\37\2\u01c7\u01c8"+
+ "\5<\37\2\u01c8\u01c9\7\r\2\2\u01c9\u01ca\7P\2\2\u01ca\u01dc\3\2\2\2\u01cb"+
+ "\u01cc\7\6\2\2\u01cc\u01cd\5<\37\2\u01cd\u01ce\7\7\2\2\u01ce\u01cf\7\r"+
+ "\2\2\u01cf\u01d0\7P\2\2\u01d0\u01dc\3\2\2\2\u01d1\u01d2\7\6\2\2\u01d2"+
+ "\u01d3\5<\37\2\u01d3\u01d4\7\r\2\2\u01d4\u01d5\7P\2\2\u01d5\u01d6\7\7"+
+ "\2\2\u01d6\u01dc\3\2\2\2\u01d7\u01d8\7\6\2\2\u01d8\u01d9\5<\37\2\u01d9"+
+ "\u01da\7\7\2\2\u01da\u01dc\3\2\2\2\u01db\u01c4\3\2\2\2\u01db\u01c5\3\2"+
+ "\2\2\u01db\u01c7\3\2\2\2\u01db\u01cb\3\2\2\2\u01db\u01d1\3\2\2\2\u01db"+
+ "\u01d7\3\2\2\2\u01dc;\3\2\2\2\u01dd\u01de\b\37\1\2\u01de\u01df\7\36\2"+
+ "\2\u01df\u01e0\5<\37\2\u01e0\u01e1\7\37\2\2\u01e1\u01ec\3\2\2\2\u01e2"+
+ "\u01e3\t\n\2\2\u01e3\u01ec\5<\37\n\u01e4\u01ec\7P\2\2\u01e5\u01ec\7Q\2"+
+ "\2\u01e6\u01e7\7\b\2\2\u01e7\u01e8\7P\2\2\u01e8\u01ec\7\t\2\2\u01e9\u01ec"+
+ "\7G\2\2\u01ea\u01ec\7E\2\2\u01eb\u01dd\3\2\2\2\u01eb\u01e2\3\2\2\2\u01eb"+
+ "\u01e4\3\2\2\2\u01eb\u01e5\3\2\2\2\u01eb\u01e6\3\2\2\2\u01eb\u01e9\3\2"+
+ "\2\2\u01eb\u01ea\3\2\2\2\u01ec\u01f8\3\2\2\2\u01ed\u01ee\f\13\2\2\u01ee"+
+ "\u01ef\t\5\2\2\u01ef\u01f7\5<\37\f\u01f0\u01f1\f\t\2\2\u01f1\u01f2\t\13"+
+ "\2\2\u01f2\u01f7\5<\37\n\u01f3\u01f4\f\b\2\2\u01f4\u01f5\t\7\2\2\u01f5"+
+ "\u01f7\5<\37\t\u01f6\u01ed\3\2\2\2\u01f6\u01f0\3\2\2\2\u01f6\u01f3\3\2"+
+ "\2\2\u01f7\u01fa\3\2\2\2\u01f8\u01f6\3\2\2\2\u01f8\u01f9\3\2\2\2\u01f9"+
+ "=\3\2\2\2\u01fa\u01f8\3\2\2\2\64HQV[bhov|\u0081\u0087\u0091\u009c\u00a3"+
+ "\u00af\u00b7\u00bd\u00c4\u00d4\u00d9\u00de\u00eb\u00fe\u0106\u010f\u0114"+
+ "\u0118\u011d\u0123\u012f\u0135\u013c\u013f\u0141\u014c\u0162\u016c\u0196"+
+ "\u0198\u01a0\u01a6\u01ac\u01b2\u01b5\u01b9\u01c1\u01db\u01eb\u01f6\u01f8";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java
index cbec5ddc5..8217f18ff 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java
@@ -58,6 +58,36 @@ public interface KickCVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitDeclFunction(KickCParser.DeclFunctionContext ctx);
+ /**
+ * Visit a parse tree produced by {@link KickCParser#declKasm}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitDeclKasm(KickCParser.DeclKasmContext ctx);
+ /**
+ * Visit a parse tree produced by {@link KickCParser#kasmParams}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitKasmParams(KickCParser.KasmParamsContext ctx);
+ /**
+ * Visit a parse tree produced by {@link KickCParser#kasmParam}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitKasmParam(KickCParser.KasmParamContext ctx);
+ /**
+ * Visit a parse tree produced by {@link KickCParser#kasmImportList}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitKasmImportList(KickCParser.KasmImportListContext ctx);
+ /**
+ * Visit a parse tree produced by {@link KickCParser#kasmParamList}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitKasmParamList(KickCParser.KasmParamListContext ctx);
/**
* Visit a parse tree produced by {@link KickCParser#parameterListDecl}.
* @param ctx the parse tree
@@ -77,6 +107,13 @@ public interface KickCVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitDirectiveConst(KickCParser.DirectiveConstContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code directiveExtern}
+ * labeled alternative in {@link KickCParser#directive}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitDirectiveExtern(KickCParser.DirectiveExternContext ctx);
/**
* Visit a parse tree produced by the {@code directiveAlign}
* labeled alternative in {@link KickCParser#directive}.
@@ -167,6 +204,13 @@ public interface KickCVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitStmtAsm(KickCParser.StmtAsmContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code stmtDeclKasm}
+ * labeled alternative in {@link KickCParser#stmt}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx);
/**
* Visit a parse tree produced by the {@code forDecl}
* labeled alternative in {@link KickCParser#forDeclaration}.
diff --git a/src/test/java/dk/camelot64/kickc/test/kc/line-anim.kc b/src/test/java/dk/camelot64/kickc/test/kc/line-anim.kc
index d553931c6..52e481ea2 100644
--- a/src/test/java/dk/camelot64/kickc/test/kc/line-anim.kc
+++ b/src/test/java/dk/camelot64/kickc/test/kc/line-anim.kc
@@ -93,7 +93,7 @@ void screen_fill(byte* screen, byte ch) {
}
}
-// Tables for the plotter - initialized by calling bitmap_draw_init();
+// Tables for the plotter - initialized by calling bitmap_init();
const byte[256] bitmap_plot_ylo;
const byte[256] bitmap_plot_yhi;
const byte[256] bitmap_plot_bit;
diff --git a/src/test/java/dk/camelot64/kickc/test/ref/line-anim.log b/src/test/java/dk/camelot64/kickc/test/ref/line-anim.log
index 2b5a5fee8..2b3bac49f 100644
--- a/src/test/java/dk/camelot64/kickc/test/ref/line-anim.log
+++ b/src/test/java/dk/camelot64/kickc/test/ref/line-anim.log
@@ -94,7 +94,7 @@ void screen_fill(byte* screen, byte ch) {
}
}
-// Tables for the plotter - initialized by calling bitmap_draw_init();
+// Tables for the plotter - initialized by calling bitmap_init();
const byte[256] bitmap_plot_ylo;
const byte[256] bitmap_plot_yhi;
const byte[256] bitmap_plot_bit;