From b755cd42978f79b2ebfb66723c8c4506e8f75cb6 Mon Sep 17 00:00:00 2001 From: jespergravgaard Date: Sun, 5 Aug 2018 17:28:02 +0200 Subject: [PATCH] Added interrupt types (kernel, hardware). --- .../kickc/model/symbols/Procedure.java | 41 +- .../java/dk/camelot64/kickc/parser/KickC.g4 | 2 +- .../dk/camelot64/kickc/parser/KickC.tokens | 134 +- .../kickc/parser/KickCBaseListener.java | 2 +- .../kickc/parser/KickCBaseVisitor.java | 2 +- .../dk/camelot64/kickc/parser/KickCLexer.java | 660 +++++----- .../camelot64/kickc/parser/KickCLexer.tokens | 134 +- .../camelot64/kickc/parser/KickCListener.java | 2 +- .../camelot64/kickc/parser/KickCParser.java | 1076 +++++++++-------- .../camelot64/kickc/parser/KickCVisitor.java | 2 +- .../Pass0GenerateStatementSequence.java | 46 +- .../kickc/passes/Pass1AssertInterrupts.java | 4 +- .../kickc/passes/Pass1ProcedureInline.java | 2 +- .../kickc/passes/Pass4CodeGeneration.java | 13 +- .../camelot64/kickc/test/kc/test-interrupt.kc | 12 +- .../kickc/test/ref/test-interrupt.asm | 14 +- .../kickc/test/ref/test-interrupt.cfg | 7 +- .../kickc/test/ref/test-interrupt.log | 161 ++- .../kickc/test/ref/test-interrupt.sym | 6 +- 19 files changed, 1189 insertions(+), 1131 deletions(-) diff --git a/src/main/java/dk/camelot64/kickc/model/symbols/Procedure.java b/src/main/java/dk/camelot64/kickc/model/symbols/Procedure.java index 7acf16c25..8cee43c96 100644 --- a/src/main/java/dk/camelot64/kickc/model/symbols/Procedure.java +++ b/src/main/java/dk/camelot64/kickc/model/symbols/Procedure.java @@ -1,12 +1,11 @@ package dk.camelot64.kickc.model.symbols; -import dk.camelot64.kickc.model.*; +import dk.camelot64.kickc.model.Program; import dk.camelot64.kickc.model.types.SymbolType; import dk.camelot64.kickc.model.types.SymbolTypeProcedure; import dk.camelot64.kickc.model.values.ProcedureRef; import java.util.ArrayList; -import java.util.HashMap; import java.util.List; /** Symbol describing a procedure/function */ @@ -16,13 +15,15 @@ public class Procedure extends Scope { private final SymbolType returnType; private List parameterNames; private boolean declaredInline; - private boolean declaredInterrupt; + + /** The type of interrupt that the procedure serves. Null for all procedures not serving an interrupt. */ + private InterruptType interruptType; public Procedure(String name, SymbolType returnType, Scope parentScope) { super(name, parentScope); this.returnType = returnType; this.declaredInline = false; - this.declaredInterrupt = false; + this.interruptType = null; } public List getParameterNames() { @@ -79,12 +80,32 @@ public class Procedure extends Scope { this.declaredInline = declaredInline; } - public boolean isDeclaredInterrupt() { - return declaredInterrupt; + public InterruptType getInterruptType() { + return interruptType; } - public void setDeclaredInterrupt(boolean declaredInterrupt) { - this.declaredInterrupt = declaredInterrupt; + public void setInterruptType(InterruptType interruptType) { + this.interruptType = interruptType; + } + + /** The different types of supported interrupts. */ + public enum InterruptType { + /** Interrupt served by the kernel called through $0314-5. Will exit through the kernel as well through $ea81. */ + KERNEL, + /** Interrupt served directly from hardware through $fffe-f. Will exit through RTI and will save necessary registers based on clobber. */ + HARDWARE; + + public static InterruptType getType(String name) { + switch(name) { + case "kernel": + return KERNEL; + case "hardware": + return HARDWARE; + default: + return null; + } + + } } @Override @@ -98,8 +119,8 @@ public class Procedure extends Scope { if(declaredInline) { res.append("inline "); } - if(declaredInterrupt) { - res.append("interrupt "); + if(interruptType !=null) { + res.append("interrupt("+ interruptType +")"); } res.append("(" + getType().getTypeName() + ") "); res.append(getFullName()); diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 b/src/main/java/dk/camelot64/kickc/parser/KickC.g4 index 5469b91a5..2108d8855 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickC.g4 @@ -64,7 +64,7 @@ directive | 'align' '(' NUMBER ')' #directiveAlign | 'register' '(' NAME ')' #directiveRegister | 'inline' #directiveInline - | 'interrupt' #directiveInterrupt + | 'interrupt' ( '(' ('hardware' | 'kernel' ) ')' )? #directiveInterrupt ; stmtSeq diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens index 43553c992..8004aeb3a 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens @@ -65,26 +65,28 @@ T__63=64 T__64=65 T__65=66 T__66=67 -MNEMONIC=68 -KICKASM=69 -SIMPLETYPE=70 -STRING=71 -CHAR=72 -BOOLEAN=73 -NUMBER=74 -NUMFLOAT=75 -BINFLOAT=76 -DECFLOAT=77 -HEXFLOAT=78 -NUMINT=79 -BININTEGER=80 -DECINTEGER=81 -HEXINTEGER=82 -NAME=83 -ASMREL=84 -WS=85 -COMMENT_LINE=86 -COMMENT_BLOCK=87 +T__67=68 +T__68=69 +MNEMONIC=70 +KICKASM=71 +SIMPLETYPE=72 +STRING=73 +CHAR=74 +BOOLEAN=75 +NUMBER=76 +NUMFLOAT=77 +BINFLOAT=78 +DECFLOAT=79 +HEXFLOAT=80 +NUMINT=81 +BININTEGER=82 +DECINTEGER=83 +HEXINTEGER=84 +NAME=85 +ASMREL=86 +WS=87 +COMMENT_LINE=88 +COMMENT_BLOCK=89 'import'=1 '='=2 ';'=3 @@ -107,48 +109,50 @@ COMMENT_BLOCK=87 'align'=20 'register'=21 'interrupt'=22 -'if'=23 -'else'=24 -'while'=25 -'do'=26 -'for'=27 -'return'=28 -'asm'=29 -'..'=30 -'signed'=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 -'<<='=61 -'>>='=62 -'&='=63 -'|='=64 -'^='=65 -'.byte'=66 -'#'=67 +'hardware'=23 +'kernel'=24 +'if'=25 +'else'=26 +'while'=27 +'do'=28 +'for'=29 +'return'=30 +'asm'=31 +'..'=32 +'signed'=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 +'/='=61 +'%='=62 +'<<='=63 +'>>='=64 +'&='=65 +'|='=66 +'^='=67 +'.byte'=68 +'#'=69 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java index 16be58509..f2198b8ca 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.ParserRuleContext; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java index cc6e343f2..1ac5f51a1 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index 5bdd4575b..d1cfc0ec6 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; @@ -26,10 +26,10 @@ public class KickCLexer extends Lexer { 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, T__58=59, T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, T__64=65, T__65=66, - T__66=67, MNEMONIC=68, KICKASM=69, SIMPLETYPE=70, STRING=71, CHAR=72, - BOOLEAN=73, NUMBER=74, NUMFLOAT=75, BINFLOAT=76, DECFLOAT=77, HEXFLOAT=78, - NUMINT=79, BININTEGER=80, DECINTEGER=81, HEXINTEGER=82, NAME=83, ASMREL=84, - WS=85, COMMENT_LINE=86, COMMENT_BLOCK=87; + T__66=67, T__67=68, T__68=69, MNEMONIC=70, KICKASM=71, SIMPLETYPE=72, + STRING=73, CHAR=74, BOOLEAN=75, NUMBER=76, NUMFLOAT=77, BINFLOAT=78, DECFLOAT=79, + HEXFLOAT=80, NUMINT=81, BININTEGER=82, DECINTEGER=83, HEXINTEGER=84, NAME=85, + ASMREL=86, WS=87, COMMENT_LINE=88, COMMENT_BLOCK=89; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -47,21 +47,23 @@ public class KickCLexer extends Lexer { "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", "T__58", "T__59", "T__60", "T__61", "T__62", "T__63", "T__64", - "T__65", "T__66", "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" + "T__65", "T__66", "T__67", "T__68", "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'", "'='", "';'", "'('", "')'", "'{'", "'}'", "'kickasm'", "','", "'resource'", "'clobber'", "'param'", "':'", "'bytes'", "'cycles'", "'pc'", "'inline'", "'const'", "'extern'", "'align'", "'register'", "'interrupt'", - "'if'", "'else'", "'while'", "'do'", "'for'", "'return'", "'asm'", "'..'", - "'signed'", "'*'", "'['", "']'", "'--'", "'++'", "'+'", "'-'", "'!'", - "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", "'=='", "'!='", - "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'+='", "'-='", "'*='", - "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='", "'^='", "'.byte'", "'#'" + "'hardware'", "'kernel'", "'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, @@ -69,10 +71,10 @@ public class KickCLexer extends Lexer { 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", "KICKASM", - "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, "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); @@ -132,7 +134,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\2Y\u0378\b\1\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2[\u038c\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"+ @@ -142,317 +144,323 @@ public class KickCLexer extends Lexer { "\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\4T\tT"+ - "\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\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\13\3\13\3\13\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\r\3\r\3\r\3\r\3\r\3\r\3\16"+ - "\3\16\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\20"+ - "\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\23"+ - "\3\23\3\23\3\24\3\24\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\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27"+ - "\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\31"+ - "\3\32\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\34\3\35"+ - "\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\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/\3/\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\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@\3A\3A\3A\3B\3B\3B\3C\3C\3C\3C\3C"+ - "\3C\3D\3D\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+ - "\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+ - "\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+ - "\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+ - "\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+ - "\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+ - "\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+ - "\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+ - "\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+ - "\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\5E\u0299\nE\3F"+ - "\3F\3F\3F\7F\u029f\nF\fF\16F\u02a2\13F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3"+ - "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\5G\u02bc\nG\3H\3H\3H\3H\7H\u02c2"+ - "\nH\fH\16H\u02c5\13H\3H\3H\3I\3I\3I\3I\5I\u02cd\nI\3I\3I\3J\3J\3J\3J\3"+ - "J\3J\3J\3J\3J\5J\u02da\nJ\3K\3K\5K\u02de\nK\3L\3L\3L\5L\u02e3\nL\3M\3"+ - "M\3M\3M\3M\5M\u02ea\nM\3M\7M\u02ed\nM\fM\16M\u02f0\13M\3M\3M\6M\u02f4"+ - "\nM\rM\16M\u02f5\3N\7N\u02f9\nN\fN\16N\u02fc\13N\3N\3N\6N\u0300\nN\rN"+ - "\16N\u0301\3O\3O\3O\3O\3O\5O\u0309\nO\3O\7O\u030c\nO\fO\16O\u030f\13O"+ - "\3O\3O\6O\u0313\nO\rO\16O\u0314\3P\3P\3P\5P\u031a\nP\3Q\3Q\3Q\6Q\u031f"+ - "\nQ\rQ\16Q\u0320\3Q\3Q\6Q\u0325\nQ\rQ\16Q\u0326\5Q\u0329\nQ\3R\6R\u032c"+ - "\nR\rR\16R\u032d\3S\3S\3S\3S\3S\5S\u0335\nS\3S\6S\u0338\nS\rS\16S\u0339"+ - "\3T\3T\3U\3U\3V\3V\3W\3W\7W\u0344\nW\fW\16W\u0347\13W\3X\3X\3Y\3Y\3Z\3"+ - "Z\7Z\u034f\nZ\fZ\16Z\u0352\13Z\3Z\6Z\u0355\nZ\rZ\16Z\u0356\3[\6[\u035a"+ - "\n[\r[\16[\u035b\3[\3[\3\\\3\\\3\\\3\\\7\\\u0364\n\\\f\\\16\\\u0367\13"+ - "\\\3\\\3\\\3]\3]\3]\3]\7]\u036f\n]\f]\16]\u0372\13]\3]\3]\3]\3]\3]\4\u02a0"+ - "\u0370\2^\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"+ + "\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_\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\13\3\13\3\13\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\r\3\r\3\r\3\r\3"+ + "\r\3\r\3\16\3\16\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\20\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\23\3\23\3\23\3\24\3\24\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\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27"+ + "\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30"+ + "\3\30\3\30\3\30\3\31\3\31\3\31\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\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\36"+ + "\3\36\3\36\3\36\3\37\3\37\3\37\3\37\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.\3.\3.\3/\3/\3\60\3\60\3\61\3"+ + "\61\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\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@\3A\3A\3A\3A\3B\3B\3B\3C\3C\3C\3D\3D\3D\3E\3"+ + "E\3E\3E\3E\3E\3F\3F\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\5G\u02ad"+ + "\nG\3H\3H\3H\3H\7H\u02b3\nH\fH\16H\u02b6\13H\3H\3H\3H\3I\3I\3I\3I\3I\3"+ + "I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\5I\u02d0\nI\3J\3J\3J\3"+ + "J\7J\u02d6\nJ\fJ\16J\u02d9\13J\3J\3J\3K\3K\3K\3K\5K\u02e1\nK\3K\3K\3L"+ + "\3L\3L\3L\3L\3L\3L\3L\3L\5L\u02ee\nL\3M\3M\5M\u02f2\nM\3N\3N\3N\5N\u02f7"+ + "\nN\3O\3O\3O\3O\3O\5O\u02fe\nO\3O\7O\u0301\nO\fO\16O\u0304\13O\3O\3O\6"+ + "O\u0308\nO\rO\16O\u0309\3P\7P\u030d\nP\fP\16P\u0310\13P\3P\3P\6P\u0314"+ + "\nP\rP\16P\u0315\3Q\3Q\3Q\3Q\3Q\5Q\u031d\nQ\3Q\7Q\u0320\nQ\fQ\16Q\u0323"+ + "\13Q\3Q\3Q\6Q\u0327\nQ\rQ\16Q\u0328\3R\3R\3R\5R\u032e\nR\3S\3S\3S\6S\u0333"+ + "\nS\rS\16S\u0334\3S\3S\6S\u0339\nS\rS\16S\u033a\5S\u033d\nS\3T\6T\u0340"+ + "\nT\rT\16T\u0341\3U\3U\3U\3U\3U\5U\u0349\nU\3U\6U\u034c\nU\rU\16U\u034d"+ + "\3V\3V\3W\3W\3X\3X\3Y\3Y\7Y\u0358\nY\fY\16Y\u035b\13Y\3Z\3Z\3[\3[\3\\"+ + "\3\\\7\\\u0363\n\\\f\\\16\\\u0366\13\\\3\\\6\\\u0369\n\\\r\\\16\\\u036a"+ + "\3]\6]\u036e\n]\r]\16]\u036f\3]\3]\3^\3^\3^\3^\7^\u0378\n^\f^\16^\u037b"+ + "\13^\3^\3^\3_\3_\3_\3_\7_\u0383\n_\f_\16_\u0386\13_\3_\3_\3_\3_\3_\4\u02b4"+ + "\u0384\2`\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\65"+ "i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008b"+ "G\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009f"+ - "Q\u00a1R\u00a3S\u00a5T\u00a7\2\u00a9\2\u00ab\2\u00adU\u00af\2\u00b1\2"+ - "\u00b3V\u00b5W\u00b7X\u00b9Y\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\u03e0\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\u009d"+ - "\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\2\u00ad\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9"+ - "\3\2\2\2\3\u00bb\3\2\2\2\5\u00c2\3\2\2\2\7\u00c4\3\2\2\2\t\u00c6\3\2\2"+ - "\2\13\u00c8\3\2\2\2\r\u00ca\3\2\2\2\17\u00cc\3\2\2\2\21\u00ce\3\2\2\2"+ - "\23\u00d6\3\2\2\2\25\u00d8\3\2\2\2\27\u00e1\3\2\2\2\31\u00e9\3\2\2\2\33"+ - "\u00ef\3\2\2\2\35\u00f1\3\2\2\2\37\u00f7\3\2\2\2!\u00fe\3\2\2\2#\u0101"+ - "\3\2\2\2%\u0108\3\2\2\2\'\u010e\3\2\2\2)\u0115\3\2\2\2+\u011b\3\2\2\2"+ - "-\u0124\3\2\2\2/\u012e\3\2\2\2\61\u0131\3\2\2\2\63\u0136\3\2\2\2\65\u013c"+ - "\3\2\2\2\67\u013f\3\2\2\29\u0143\3\2\2\2;\u014a\3\2\2\2=\u014e\3\2\2\2"+ - "?\u0151\3\2\2\2A\u0158\3\2\2\2C\u015a\3\2\2\2E\u015c\3\2\2\2G\u015e\3"+ - "\2\2\2I\u0161\3\2\2\2K\u0164\3\2\2\2M\u0166\3\2\2\2O\u0168\3\2\2\2Q\u016a"+ - "\3\2\2\2S\u016c\3\2\2\2U\u016e\3\2\2\2W\u0171\3\2\2\2Y\u0174\3\2\2\2["+ - "\u0176\3\2\2\2]\u0178\3\2\2\2_\u017a\3\2\2\2a\u017c\3\2\2\2c\u017f\3\2"+ - "\2\2e\u0182\3\2\2\2g\u0185\3\2\2\2i\u0188\3\2\2\2k\u018a\3\2\2\2m\u018c"+ - "\3\2\2\2o\u018f\3\2\2\2q\u0192\3\2\2\2s\u0195\3\2\2\2u\u0198\3\2\2\2w"+ - "\u019b\3\2\2\2y\u019e\3\2\2\2{\u01a1\3\2\2\2}\u01a5\3\2\2\2\177\u01a9"+ - "\3\2\2\2\u0081\u01ac\3\2\2\2\u0083\u01af\3\2\2\2\u0085\u01b2\3\2\2\2\u0087"+ - "\u01b8\3\2\2\2\u0089\u0298\3\2\2\2\u008b\u029a\3\2\2\2\u008d\u02bb\3\2"+ - "\2\2\u008f\u02bd\3\2\2\2\u0091\u02c8\3\2\2\2\u0093\u02d9\3\2\2\2\u0095"+ - "\u02dd\3\2\2\2\u0097\u02e2\3\2\2\2\u0099\u02e9\3\2\2\2\u009b\u02fa\3\2"+ - "\2\2\u009d\u0308\3\2\2\2\u009f\u0319\3\2\2\2\u00a1\u0328\3\2\2\2\u00a3"+ - "\u032b\3\2\2\2\u00a5\u0334\3\2\2\2\u00a7\u033b\3\2\2\2\u00a9\u033d\3\2"+ - "\2\2\u00ab\u033f\3\2\2\2\u00ad\u0341\3\2\2\2\u00af\u0348\3\2\2\2\u00b1"+ - "\u034a\3\2\2\2\u00b3\u034c\3\2\2\2\u00b5\u0359\3\2\2\2\u00b7\u035f\3\2"+ - "\2\2\u00b9\u036a\3\2\2\2\u00bb\u00bc\7k\2\2\u00bc\u00bd\7o\2\2\u00bd\u00be"+ - "\7r\2\2\u00be\u00bf\7q\2\2\u00bf\u00c0\7t\2\2\u00c0\u00c1\7v\2\2\u00c1"+ - "\4\3\2\2\2\u00c2\u00c3\7?\2\2\u00c3\6\3\2\2\2\u00c4\u00c5\7=\2\2\u00c5"+ - "\b\3\2\2\2\u00c6\u00c7\7*\2\2\u00c7\n\3\2\2\2\u00c8\u00c9\7+\2\2\u00c9"+ - "\f\3\2\2\2\u00ca\u00cb\7}\2\2\u00cb\16\3\2\2\2\u00cc\u00cd\7\177\2\2\u00cd"+ - "\20\3\2\2\2\u00ce\u00cf\7m\2\2\u00cf\u00d0\7k\2\2\u00d0\u00d1\7e\2\2\u00d1"+ - "\u00d2\7m\2\2\u00d2\u00d3\7c\2\2\u00d3\u00d4\7u\2\2\u00d4\u00d5\7o\2\2"+ - "\u00d5\22\3\2\2\2\u00d6\u00d7\7.\2\2\u00d7\24\3\2\2\2\u00d8\u00d9\7t\2"+ - "\2\u00d9\u00da\7g\2\2\u00da\u00db\7u\2\2\u00db\u00dc\7q\2\2\u00dc\u00dd"+ - "\7w\2\2\u00dd\u00de\7t\2\2\u00de\u00df\7e\2\2\u00df\u00e0\7g\2\2\u00e0"+ - "\26\3\2\2\2\u00e1\u00e2\7e\2\2\u00e2\u00e3\7n\2\2\u00e3\u00e4\7q\2\2\u00e4"+ - "\u00e5\7d\2\2\u00e5\u00e6\7d\2\2\u00e6\u00e7\7g\2\2\u00e7\u00e8\7t\2\2"+ - "\u00e8\30\3\2\2\2\u00e9\u00ea\7r\2\2\u00ea\u00eb\7c\2\2\u00eb\u00ec\7"+ - "t\2\2\u00ec\u00ed\7c\2\2\u00ed\u00ee\7o\2\2\u00ee\32\3\2\2\2\u00ef\u00f0"+ - "\7<\2\2\u00f0\34\3\2\2\2\u00f1\u00f2\7d\2\2\u00f2\u00f3\7{\2\2\u00f3\u00f4"+ - "\7v\2\2\u00f4\u00f5\7g\2\2\u00f5\u00f6\7u\2\2\u00f6\36\3\2\2\2\u00f7\u00f8"+ - "\7e\2\2\u00f8\u00f9\7{\2\2\u00f9\u00fa\7e\2\2\u00fa\u00fb\7n\2\2\u00fb"+ - "\u00fc\7g\2\2\u00fc\u00fd\7u\2\2\u00fd \3\2\2\2\u00fe\u00ff\7r\2\2\u00ff"+ - "\u0100\7e\2\2\u0100\"\3\2\2\2\u0101\u0102\7k\2\2\u0102\u0103\7p\2\2\u0103"+ - "\u0104\7n\2\2\u0104\u0105\7k\2\2\u0105\u0106\7p\2\2\u0106\u0107\7g\2\2"+ - "\u0107$\3\2\2\2\u0108\u0109\7e\2\2\u0109\u010a\7q\2\2\u010a\u010b\7p\2"+ - "\2\u010b\u010c\7u\2\2\u010c\u010d\7v\2\2\u010d&\3\2\2\2\u010e\u010f\7"+ - "g\2\2\u010f\u0110\7z\2\2\u0110\u0111\7v\2\2\u0111\u0112\7g\2\2\u0112\u0113"+ - "\7t\2\2\u0113\u0114\7p\2\2\u0114(\3\2\2\2\u0115\u0116\7c\2\2\u0116\u0117"+ - "\7n\2\2\u0117\u0118\7k\2\2\u0118\u0119\7i\2\2\u0119\u011a\7p\2\2\u011a"+ - "*\3\2\2\2\u011b\u011c\7t\2\2\u011c\u011d\7g\2\2\u011d\u011e\7i\2\2\u011e"+ - "\u011f\7k\2\2\u011f\u0120\7u\2\2\u0120\u0121\7v\2\2\u0121\u0122\7g\2\2"+ - "\u0122\u0123\7t\2\2\u0123,\3\2\2\2\u0124\u0125\7k\2\2\u0125\u0126\7p\2"+ - "\2\u0126\u0127\7v\2\2\u0127\u0128\7g\2\2\u0128\u0129\7t\2\2\u0129\u012a"+ - "\7t\2\2\u012a\u012b\7w\2\2\u012b\u012c\7r\2\2\u012c\u012d\7v\2\2\u012d"+ - ".\3\2\2\2\u012e\u012f\7k\2\2\u012f\u0130\7h\2\2\u0130\60\3\2\2\2\u0131"+ - "\u0132\7g\2\2\u0132\u0133\7n\2\2\u0133\u0134\7u\2\2\u0134\u0135\7g\2\2"+ - "\u0135\62\3\2\2\2\u0136\u0137\7y\2\2\u0137\u0138\7j\2\2\u0138\u0139\7"+ - "k\2\2\u0139\u013a\7n\2\2\u013a\u013b\7g\2\2\u013b\64\3\2\2\2\u013c\u013d"+ - "\7f\2\2\u013d\u013e\7q\2\2\u013e\66\3\2\2\2\u013f\u0140\7h\2\2\u0140\u0141"+ - "\7q\2\2\u0141\u0142\7t\2\2\u01428\3\2\2\2\u0143\u0144\7t\2\2\u0144\u0145"+ - "\7g\2\2\u0145\u0146\7v\2\2\u0146\u0147\7w\2\2\u0147\u0148\7t\2\2\u0148"+ - "\u0149\7p\2\2\u0149:\3\2\2\2\u014a\u014b\7c\2\2\u014b\u014c\7u\2\2\u014c"+ - "\u014d\7o\2\2\u014d<\3\2\2\2\u014e\u014f\7\60\2\2\u014f\u0150\7\60\2\2"+ - "\u0150>\3\2\2\2\u0151\u0152\7u\2\2\u0152\u0153\7k\2\2\u0153\u0154\7i\2"+ - "\2\u0154\u0155\7p\2\2\u0155\u0156\7g\2\2\u0156\u0157\7f\2\2\u0157@\3\2"+ - "\2\2\u0158\u0159\7,\2\2\u0159B\3\2\2\2\u015a\u015b\7]\2\2\u015bD\3\2\2"+ - "\2\u015c\u015d\7_\2\2\u015dF\3\2\2\2\u015e\u015f\7/\2\2\u015f\u0160\7"+ - "/\2\2\u0160H\3\2\2\2\u0161\u0162\7-\2\2\u0162\u0163\7-\2\2\u0163J\3\2"+ - "\2\2\u0164\u0165\7-\2\2\u0165L\3\2\2\2\u0166\u0167\7/\2\2\u0167N\3\2\2"+ - "\2\u0168\u0169\7#\2\2\u0169P\3\2\2\2\u016a\u016b\7(\2\2\u016bR\3\2\2\2"+ - "\u016c\u016d\7\u0080\2\2\u016dT\3\2\2\2\u016e\u016f\7@\2\2\u016f\u0170"+ - "\7@\2\2\u0170V\3\2\2\2\u0171\u0172\7>\2\2\u0172\u0173\7>\2\2\u0173X\3"+ - "\2\2\2\u0174\u0175\7\61\2\2\u0175Z\3\2\2\2\u0176\u0177\7\'\2\2\u0177\\"+ - "\3\2\2\2\u0178\u0179\7>\2\2\u0179^\3\2\2\2\u017a\u017b\7@\2\2\u017b`\3"+ - "\2\2\2\u017c\u017d\7?\2\2\u017d\u017e\7?\2\2\u017eb\3\2\2\2\u017f\u0180"+ - "\7#\2\2\u0180\u0181\7?\2\2\u0181d\3\2\2\2\u0182\u0183\7>\2\2\u0183\u0184"+ - "\7?\2\2\u0184f\3\2\2\2\u0185\u0186\7@\2\2\u0186\u0187\7?\2\2\u0187h\3"+ - "\2\2\2\u0188\u0189\7`\2\2\u0189j\3\2\2\2\u018a\u018b\7~\2\2\u018bl\3\2"+ - "\2\2\u018c\u018d\7(\2\2\u018d\u018e\7(\2\2\u018en\3\2\2\2\u018f\u0190"+ - "\7~\2\2\u0190\u0191\7~\2\2\u0191p\3\2\2\2\u0192\u0193\7-\2\2\u0193\u0194"+ - "\7?\2\2\u0194r\3\2\2\2\u0195\u0196\7/\2\2\u0196\u0197\7?\2\2\u0197t\3"+ - "\2\2\2\u0198\u0199\7,\2\2\u0199\u019a\7?\2\2\u019av\3\2\2\2\u019b\u019c"+ - "\7\61\2\2\u019c\u019d\7?\2\2\u019dx\3\2\2\2\u019e\u019f\7\'\2\2\u019f"+ - "\u01a0\7?\2\2\u01a0z\3\2\2\2\u01a1\u01a2\7>\2\2\u01a2\u01a3\7>\2\2\u01a3"+ - "\u01a4\7?\2\2\u01a4|\3\2\2\2\u01a5\u01a6\7@\2\2\u01a6\u01a7\7@\2\2\u01a7"+ - "\u01a8\7?\2\2\u01a8~\3\2\2\2\u01a9\u01aa\7(\2\2\u01aa\u01ab\7?\2\2\u01ab"+ - "\u0080\3\2\2\2\u01ac\u01ad\7~\2\2\u01ad\u01ae\7?\2\2\u01ae\u0082\3\2\2"+ - "\2\u01af\u01b0\7`\2\2\u01b0\u01b1\7?\2\2\u01b1\u0084\3\2\2\2\u01b2\u01b3"+ - "\7\60\2\2\u01b3\u01b4\7d\2\2\u01b4\u01b5\7{\2\2\u01b5\u01b6\7v\2\2\u01b6"+ - "\u01b7\7g\2\2\u01b7\u0086\3\2\2\2\u01b8\u01b9\7%\2\2\u01b9\u0088\3\2\2"+ - "\2\u01ba\u01bb\7d\2\2\u01bb\u01bc\7t\2\2\u01bc\u0299\7m\2\2\u01bd\u01be"+ - "\7q\2\2\u01be\u01bf\7t\2\2\u01bf\u0299\7c\2\2\u01c0\u01c1\7m\2\2\u01c1"+ - "\u01c2\7k\2\2\u01c2\u0299\7n\2\2\u01c3\u01c4\7u\2\2\u01c4\u01c5\7n\2\2"+ - "\u01c5\u0299\7q\2\2\u01c6\u01c7\7p\2\2\u01c7\u01c8\7q\2\2\u01c8\u0299"+ - "\7r\2\2\u01c9\u01ca\7c\2\2\u01ca\u01cb\7u\2\2\u01cb\u0299\7n\2\2\u01cc"+ - "\u01cd\7r\2\2\u01cd\u01ce\7j\2\2\u01ce\u0299\7r\2\2\u01cf\u01d0\7c\2\2"+ - "\u01d0\u01d1\7p\2\2\u01d1\u0299\7e\2\2\u01d2\u01d3\7d\2\2\u01d3\u01d4"+ - "\7r\2\2\u01d4\u0299\7n\2\2\u01d5\u01d6\7e\2\2\u01d6\u01d7\7n\2\2\u01d7"+ - "\u0299\7e\2\2\u01d8\u01d9\7l\2\2\u01d9\u01da\7u\2\2\u01da\u0299\7t\2\2"+ - "\u01db\u01dc\7c\2\2\u01dc\u01dd\7p\2\2\u01dd\u0299\7f\2\2\u01de\u01df"+ - "\7t\2\2\u01df\u01e0\7n\2\2\u01e0\u0299\7c\2\2\u01e1\u01e2\7d\2\2\u01e2"+ - "\u01e3\7k\2\2\u01e3\u0299\7v\2\2\u01e4\u01e5\7t\2\2\u01e5\u01e6\7q\2\2"+ - "\u01e6\u0299\7n\2\2\u01e7\u01e8\7r\2\2\u01e8\u01e9\7n\2\2\u01e9\u0299"+ - "\7c\2\2\u01ea\u01eb\7r\2\2\u01eb\u01ec\7n\2\2\u01ec\u0299\7r\2\2\u01ed"+ - "\u01ee\7d\2\2\u01ee\u01ef\7o\2\2\u01ef\u0299\7k\2\2\u01f0\u01f1\7u\2\2"+ - "\u01f1\u01f2\7g\2\2\u01f2\u0299\7e\2\2\u01f3\u01f4\7t\2\2\u01f4\u01f5"+ - "\7v\2\2\u01f5\u0299\7k\2\2\u01f6\u01f7\7g\2\2\u01f7\u01f8\7q\2\2\u01f8"+ - "\u0299\7t\2\2\u01f9\u01fa\7u\2\2\u01fa\u01fb\7t\2\2\u01fb\u0299\7g\2\2"+ - "\u01fc\u01fd\7n\2\2\u01fd\u01fe\7u\2\2\u01fe\u0299\7t\2\2\u01ff\u0200"+ - "\7r\2\2\u0200\u0201\7j\2\2\u0201\u0299\7c\2\2\u0202\u0203\7c\2\2\u0203"+ - "\u0204\7n\2\2\u0204\u0299\7t\2\2\u0205\u0206\7l\2\2\u0206\u0207\7o\2\2"+ - "\u0207\u0299\7r\2\2\u0208\u0209\7d\2\2\u0209\u020a\7x\2\2\u020a\u0299"+ - "\7e\2\2\u020b\u020c\7e\2\2\u020c\u020d\7n\2\2\u020d\u0299\7k\2\2\u020e"+ - "\u020f\7t\2\2\u020f\u0210\7v\2\2\u0210\u0299\7u\2\2\u0211\u0212\7c\2\2"+ - "\u0212\u0213\7f\2\2\u0213\u0299\7e\2\2\u0214\u0215\7t\2\2\u0215\u0216"+ - "\7t\2\2\u0216\u0299\7c\2\2\u0217\u0218\7d\2\2\u0218\u0219\7x\2\2\u0219"+ - "\u0299\7u\2\2\u021a\u021b\7u\2\2\u021b\u021c\7g\2\2\u021c\u0299\7k\2\2"+ - "\u021d\u021e\7u\2\2\u021e\u021f\7c\2\2\u021f\u0299\7z\2\2\u0220\u0221"+ - "\7u\2\2\u0221\u0222\7v\2\2\u0222\u0299\7{\2\2\u0223\u0224\7u\2\2\u0224"+ - "\u0225\7v\2\2\u0225\u0299\7c\2\2\u0226\u0227\7u\2\2\u0227\u0228\7v\2\2"+ - "\u0228\u0299\7z\2\2\u0229\u022a\7f\2\2\u022a\u022b\7g\2\2\u022b\u0299"+ - "\7{\2\2\u022c\u022d\7v\2\2\u022d\u022e\7z\2\2\u022e\u0299\7c\2\2\u022f"+ - "\u0230\7z\2\2\u0230\u0231\7c\2\2\u0231\u0299\7c\2\2\u0232\u0233\7d\2\2"+ - "\u0233\u0234\7e\2\2\u0234\u0299\7e\2\2\u0235\u0236\7c\2\2\u0236\u0237"+ - "\7j\2\2\u0237\u0299\7z\2\2\u0238\u0239\7v\2\2\u0239\u023a\7{\2\2\u023a"+ - "\u0299\7c\2\2\u023b\u023c\7v\2\2\u023c\u023d\7z\2\2\u023d\u0299\7u\2\2"+ - "\u023e\u023f\7v\2\2\u023f\u0240\7c\2\2\u0240\u0299\7u\2\2\u0241\u0242"+ - "\7u\2\2\u0242\u0243\7j\2\2\u0243\u0299\7{\2\2\u0244\u0245\7u\2\2\u0245"+ - "\u0246\7j\2\2\u0246\u0299\7z\2\2\u0247\u0248\7n\2\2\u0248\u0249\7f\2\2"+ - "\u0249\u0299\7{\2\2\u024a\u024b\7n\2\2\u024b\u024c\7f\2\2\u024c\u0299"+ - "\7c\2\2\u024d\u024e\7n\2\2\u024e\u024f\7f\2\2\u024f\u0299\7z\2\2\u0250"+ - "\u0251\7n\2\2\u0251\u0252\7c\2\2\u0252\u0299\7z\2\2\u0253\u0254\7v\2\2"+ - "\u0254\u0255\7c\2\2\u0255\u0299\7{\2\2\u0256\u0257\7v\2\2\u0257\u0258"+ - "\7c\2\2\u0258\u0299\7z\2\2\u0259\u025a\7d\2\2\u025a\u025b\7e\2\2\u025b"+ - "\u0299\7u\2\2\u025c\u025d\7e\2\2\u025d\u025e\7n\2\2\u025e\u0299\7x\2\2"+ - "\u025f\u0260\7v\2\2\u0260\u0261\7u\2\2\u0261\u0299\7z\2\2\u0262\u0263"+ - "\7n\2\2\u0263\u0264\7c\2\2\u0264\u0299\7u\2\2\u0265\u0266\7e\2\2\u0266"+ - "\u0267\7r\2\2\u0267\u0299\7{\2\2\u0268\u0269\7e\2\2\u0269\u026a\7o\2\2"+ - "\u026a\u0299\7r\2\2\u026b\u026c\7e\2\2\u026c\u026d\7r\2\2\u026d\u0299"+ - "\7z\2\2\u026e\u026f\7f\2\2\u026f\u0270\7e\2\2\u0270\u0299\7r\2\2\u0271"+ - "\u0272\7f\2\2\u0272\u0273\7g\2\2\u0273\u0299\7e\2\2\u0274\u0275\7k\2\2"+ - "\u0275\u0276\7p\2\2\u0276\u0299\7e\2\2\u0277\u0278\7c\2\2\u0278\u0279"+ - "\7z\2\2\u0279\u0299\7u\2\2\u027a\u027b\7d\2\2\u027b\u027c\7p\2\2\u027c"+ - "\u0299\7g\2\2\u027d\u027e\7e\2\2\u027e\u027f\7n\2\2\u027f\u0299\7f\2\2"+ - "\u0280\u0281\7u\2\2\u0281\u0282\7d\2\2\u0282\u0299\7e\2\2\u0283\u0284"+ - "\7k\2\2\u0284\u0285\7u\2\2\u0285\u0299\7e\2\2\u0286\u0287\7k\2\2\u0287"+ - "\u0288\7p\2\2\u0288\u0299\7z\2\2\u0289\u028a\7d\2\2\u028a\u028b\7g\2\2"+ - "\u028b\u0299\7s\2\2\u028c\u028d\7u\2\2\u028d\u028e\7g\2\2\u028e\u0299"+ - "\7f\2\2\u028f\u0290\7f\2\2\u0290\u0291\7g\2\2\u0291\u0299\7z\2\2\u0292"+ - "\u0293\7k\2\2\u0293\u0294\7p\2\2\u0294\u0299\7{\2\2\u0295\u0296\7t\2\2"+ - "\u0296\u0297\7q\2\2\u0297\u0299\7t\2\2\u0298\u01ba\3\2\2\2\u0298\u01bd"+ - "\3\2\2\2\u0298\u01c0\3\2\2\2\u0298\u01c3\3\2\2\2\u0298\u01c6\3\2\2\2\u0298"+ - "\u01c9\3\2\2\2\u0298\u01cc\3\2\2\2\u0298\u01cf\3\2\2\2\u0298\u01d2\3\2"+ - "\2\2\u0298\u01d5\3\2\2\2\u0298\u01d8\3\2\2\2\u0298\u01db\3\2\2\2\u0298"+ - "\u01de\3\2\2\2\u0298\u01e1\3\2\2\2\u0298\u01e4\3\2\2\2\u0298\u01e7\3\2"+ - "\2\2\u0298\u01ea\3\2\2\2\u0298\u01ed\3\2\2\2\u0298\u01f0\3\2\2\2\u0298"+ - "\u01f3\3\2\2\2\u0298\u01f6\3\2\2\2\u0298\u01f9\3\2\2\2\u0298\u01fc\3\2"+ - "\2\2\u0298\u01ff\3\2\2\2\u0298\u0202\3\2\2\2\u0298\u0205\3\2\2\2\u0298"+ - "\u0208\3\2\2\2\u0298\u020b\3\2\2\2\u0298\u020e\3\2\2\2\u0298\u0211\3\2"+ - "\2\2\u0298\u0214\3\2\2\2\u0298\u0217\3\2\2\2\u0298\u021a\3\2\2\2\u0298"+ - "\u021d\3\2\2\2\u0298\u0220\3\2\2\2\u0298\u0223\3\2\2\2\u0298\u0226\3\2"+ - "\2\2\u0298\u0229\3\2\2\2\u0298\u022c\3\2\2\2\u0298\u022f\3\2\2\2\u0298"+ - "\u0232\3\2\2\2\u0298\u0235\3\2\2\2\u0298\u0238\3\2\2\2\u0298\u023b\3\2"+ - "\2\2\u0298\u023e\3\2\2\2\u0298\u0241\3\2\2\2\u0298\u0244\3\2\2\2\u0298"+ - "\u0247\3\2\2\2\u0298\u024a\3\2\2\2\u0298\u024d\3\2\2\2\u0298\u0250\3\2"+ - "\2\2\u0298\u0253\3\2\2\2\u0298\u0256\3\2\2\2\u0298\u0259\3\2\2\2\u0298"+ - "\u025c\3\2\2\2\u0298\u025f\3\2\2\2\u0298\u0262\3\2\2\2\u0298\u0265\3\2"+ - "\2\2\u0298\u0268\3\2\2\2\u0298\u026b\3\2\2\2\u0298\u026e\3\2\2\2\u0298"+ - "\u0271\3\2\2\2\u0298\u0274\3\2\2\2\u0298\u0277\3\2\2\2\u0298\u027a\3\2"+ - "\2\2\u0298\u027d\3\2\2\2\u0298\u0280\3\2\2\2\u0298\u0283\3\2\2\2\u0298"+ - "\u0286\3\2\2\2\u0298\u0289\3\2\2\2\u0298\u028c\3\2\2\2\u0298\u028f\3\2"+ - "\2\2\u0298\u0292\3\2\2\2\u0298\u0295\3\2\2\2\u0299\u008a\3\2\2\2\u029a"+ - "\u029b\7}\2\2\u029b\u029c\7}\2\2\u029c\u02a0\3\2\2\2\u029d\u029f\13\2"+ - "\2\2\u029e\u029d\3\2\2\2\u029f\u02a2\3\2\2\2\u02a0\u02a1\3\2\2\2\u02a0"+ - "\u029e\3\2\2\2\u02a1\u02a3\3\2\2\2\u02a2\u02a0\3\2\2\2\u02a3\u02a4\7\177"+ - "\2\2\u02a4\u02a5\7\177\2\2\u02a5\u008c\3\2\2\2\u02a6\u02a7\7d\2\2\u02a7"+ - "\u02a8\7{\2\2\u02a8\u02a9\7v\2\2\u02a9\u02bc\7g\2\2\u02aa\u02ab\7y\2\2"+ - "\u02ab\u02ac\7q\2\2\u02ac\u02ad\7t\2\2\u02ad\u02bc\7f\2\2\u02ae\u02af"+ - "\7f\2\2\u02af\u02b0\7y\2\2\u02b0\u02b1\7q\2\2\u02b1\u02b2\7t\2\2\u02b2"+ - "\u02bc\7f\2\2\u02b3\u02b4\7d\2\2\u02b4\u02b5\7q\2\2\u02b5\u02b6\7q\2\2"+ - "\u02b6\u02bc\7n\2\2\u02b7\u02b8\7x\2\2\u02b8\u02b9\7q\2\2\u02b9\u02ba"+ - "\7k\2\2\u02ba\u02bc\7f\2\2\u02bb\u02a6\3\2\2\2\u02bb\u02aa\3\2\2\2\u02bb"+ - "\u02ae\3\2\2\2\u02bb\u02b3\3\2\2\2\u02bb\u02b7\3\2\2\2\u02bc\u008e\3\2"+ - "\2\2\u02bd\u02c3\7$\2\2\u02be\u02bf\7^\2\2\u02bf\u02c2\7$\2\2\u02c0\u02c2"+ - "\n\2\2\2\u02c1\u02be\3\2\2\2\u02c1\u02c0\3\2\2\2\u02c2\u02c5\3\2\2\2\u02c3"+ - "\u02c1\3\2\2\2\u02c3\u02c4\3\2\2\2\u02c4\u02c6\3\2\2\2\u02c5\u02c3\3\2"+ - "\2\2\u02c6\u02c7\7$\2\2\u02c7\u0090\3\2\2\2\u02c8\u02cc\7)\2\2\u02c9\u02ca"+ - "\7^\2\2\u02ca\u02cd\7)\2\2\u02cb\u02cd\n\3\2\2\u02cc\u02c9\3\2\2\2\u02cc"+ - "\u02cb\3\2\2\2\u02cd\u02ce\3\2\2\2\u02ce\u02cf\7)\2\2\u02cf\u0092\3\2"+ - "\2\2\u02d0\u02d1\7v\2\2\u02d1\u02d2\7t\2\2\u02d2\u02d3\7w\2\2\u02d3\u02da"+ - "\7g\2\2\u02d4\u02d5\7h\2\2\u02d5\u02d6\7c\2\2\u02d6\u02d7\7n\2\2\u02d7"+ - "\u02d8\7u\2\2\u02d8\u02da\7g\2\2\u02d9\u02d0\3\2\2\2\u02d9\u02d4\3\2\2"+ - "\2\u02da\u0094\3\2\2\2\u02db\u02de\5\u0097L\2\u02dc\u02de\5\u009fP\2\u02dd"+ - "\u02db\3\2\2\2\u02dd\u02dc\3\2\2\2\u02de\u0096\3\2\2\2\u02df\u02e3\5\u0099"+ - "M\2\u02e0\u02e3\5\u009bN\2\u02e1\u02e3\5\u009dO\2\u02e2\u02df\3\2\2\2"+ - "\u02e2\u02e0\3\2\2\2\u02e2\u02e1\3\2\2\2\u02e3\u0098\3\2\2\2\u02e4\u02ea"+ - "\7\'\2\2\u02e5\u02e6\7\62\2\2\u02e6\u02ea\7d\2\2\u02e7\u02e8\7\62\2\2"+ - "\u02e8\u02ea\7D\2\2\u02e9\u02e4\3\2\2\2\u02e9\u02e5\3\2\2\2\u02e9\u02e7"+ - "\3\2\2\2\u02ea\u02ee\3\2\2\2\u02eb\u02ed\5\u00a7T\2\u02ec\u02eb\3\2\2"+ - "\2\u02ed\u02f0\3\2\2\2\u02ee\u02ec\3\2\2\2\u02ee\u02ef\3\2\2\2\u02ef\u02f1"+ - "\3\2\2\2\u02f0\u02ee\3\2\2\2\u02f1\u02f3\7\60\2\2\u02f2\u02f4\5\u00a7"+ - "T\2\u02f3\u02f2\3\2\2\2\u02f4\u02f5\3\2\2\2\u02f5\u02f3\3\2\2\2\u02f5"+ - "\u02f6\3\2\2\2\u02f6\u009a\3\2\2\2\u02f7\u02f9\5\u00a9U\2\u02f8\u02f7"+ - "\3\2\2\2\u02f9\u02fc\3\2\2\2\u02fa\u02f8\3\2\2\2\u02fa\u02fb\3\2\2\2\u02fb"+ - "\u02fd\3\2\2\2\u02fc\u02fa\3\2\2\2\u02fd\u02ff\7\60\2\2\u02fe\u0300\5"+ - "\u00a9U\2\u02ff\u02fe\3\2\2\2\u0300\u0301\3\2\2\2\u0301\u02ff\3\2\2\2"+ - "\u0301\u0302\3\2\2\2\u0302\u009c\3\2\2\2\u0303\u0309\7&\2\2\u0304\u0305"+ - "\7\62\2\2\u0305\u0309\7z\2\2\u0306\u0307\7\62\2\2\u0307\u0309\7Z\2\2\u0308"+ - "\u0303\3\2\2\2\u0308\u0304\3\2\2\2\u0308\u0306\3\2\2\2\u0309\u030d\3\2"+ - "\2\2\u030a\u030c\5\u00abV\2\u030b\u030a\3\2\2\2\u030c\u030f\3\2\2\2\u030d"+ - "\u030b\3\2\2\2\u030d\u030e\3\2\2\2\u030e\u0310\3\2\2\2\u030f\u030d\3\2"+ - "\2\2\u0310\u0312\7\60\2\2\u0311\u0313\5\u00abV\2\u0312\u0311\3\2\2\2\u0313"+ - "\u0314\3\2\2\2\u0314\u0312\3\2\2\2\u0314\u0315\3\2\2\2\u0315\u009e\3\2"+ - "\2\2\u0316\u031a\5\u00a3R\2\u0317\u031a\5\u00a5S\2\u0318\u031a\5\u00a1"+ - "Q\2\u0319\u0316\3\2\2\2\u0319\u0317\3\2\2\2\u0319\u0318\3\2\2\2\u031a"+ - "\u00a0\3\2\2\2\u031b\u031c\7\62\2\2\u031c\u031e\t\4\2\2\u031d\u031f\5"+ - "\u00a7T\2\u031e\u031d\3\2\2\2\u031f\u0320\3\2\2\2\u0320\u031e\3\2\2\2"+ - "\u0320\u0321\3\2\2\2\u0321\u0329\3\2\2\2\u0322\u0324\7\'\2\2\u0323\u0325"+ - "\5\u00a7T\2\u0324\u0323\3\2\2\2\u0325\u0326\3\2\2\2\u0326\u0324\3\2\2"+ - "\2\u0326\u0327\3\2\2\2\u0327\u0329\3\2\2\2\u0328\u031b\3\2\2\2\u0328\u0322"+ - "\3\2\2\2\u0329\u00a2\3\2\2\2\u032a\u032c\5\u00a9U\2\u032b\u032a\3\2\2"+ - "\2\u032c\u032d\3\2\2\2\u032d\u032b\3\2\2\2\u032d\u032e\3\2\2\2\u032e\u00a4"+ - "\3\2\2\2\u032f\u0335\7&\2\2\u0330\u0331\7\62\2\2\u0331\u0335\7z\2\2\u0332"+ - "\u0333\7\62\2\2\u0333\u0335\7Z\2\2\u0334\u032f\3\2\2\2\u0334\u0330\3\2"+ - "\2\2\u0334\u0332\3\2\2\2\u0335\u0337\3\2\2\2\u0336\u0338\5\u00abV\2\u0337"+ - "\u0336\3\2\2\2\u0338\u0339\3\2\2\2\u0339\u0337\3\2\2\2\u0339\u033a\3\2"+ - "\2\2\u033a\u00a6\3\2\2\2\u033b\u033c\t\5\2\2\u033c\u00a8\3\2\2\2\u033d"+ - "\u033e\t\6\2\2\u033e\u00aa\3\2\2\2\u033f\u0340\t\7\2\2\u0340\u00ac\3\2"+ - "\2\2\u0341\u0345\5\u00afX\2\u0342\u0344\5\u00b1Y\2\u0343\u0342\3\2\2\2"+ - "\u0344\u0347\3\2\2\2\u0345\u0343\3\2\2\2\u0345\u0346\3\2\2\2\u0346\u00ae"+ - "\3\2\2\2\u0347\u0345\3\2\2\2\u0348\u0349\t\b\2\2\u0349\u00b0\3\2\2\2\u034a"+ - "\u034b\t\t\2\2\u034b\u00b2\3\2\2\2\u034c\u0350\7#\2\2\u034d\u034f\5\u00b1"+ - "Y\2\u034e\u034d\3\2\2\2\u034f\u0352\3\2\2\2\u0350\u034e\3\2\2\2\u0350"+ - "\u0351\3\2\2\2\u0351\u0354\3\2\2\2\u0352\u0350\3\2\2\2\u0353\u0355\t\n"+ - "\2\2\u0354\u0353\3\2\2\2\u0355\u0356\3\2\2\2\u0356\u0354\3\2\2\2\u0356"+ - "\u0357\3\2\2\2\u0357\u00b4\3\2\2\2\u0358\u035a\t\13\2\2\u0359\u0358\3"+ - "\2\2\2\u035a\u035b\3\2\2\2\u035b\u0359\3\2\2\2\u035b\u035c\3\2\2\2\u035c"+ - "\u035d\3\2\2\2\u035d\u035e\b[\2\2\u035e\u00b6\3\2\2\2\u035f\u0360\7\61"+ - "\2\2\u0360\u0361\7\61\2\2\u0361\u0365\3\2\2\2\u0362\u0364\n\f\2\2\u0363"+ - "\u0362\3\2\2\2\u0364\u0367\3\2\2\2\u0365\u0363\3\2\2\2\u0365\u0366\3\2"+ - "\2\2\u0366\u0368\3\2\2\2\u0367\u0365\3\2\2\2\u0368\u0369\b\\\2\2\u0369"+ - "\u00b8\3\2\2\2\u036a\u036b\7\61\2\2\u036b\u036c\7,\2\2\u036c\u0370\3\2"+ - "\2\2\u036d\u036f\13\2\2\2\u036e\u036d\3\2\2\2\u036f\u0372\3\2\2\2\u0370"+ - "\u0371\3\2\2\2\u0370\u036e\3\2\2\2\u0371\u0373\3\2\2\2\u0372\u0370\3\2"+ - "\2\2\u0373\u0374\7,\2\2\u0374\u0375\7\61\2\2\u0375\u0376\3\2\2\2\u0376"+ - "\u0377\b]\2\2\u0377\u00ba\3\2\2\2!\2\u0298\u02a0\u02bb\u02c1\u02c3\u02cc"+ - "\u02d9\u02dd\u02e2\u02e9\u02ee\u02f5\u02fa\u0301\u0308\u030d\u0314\u0319"+ - "\u0320\u0326\u0328\u032d\u0334\u0339\u0345\u0350\u0356\u035b\u0365\u0370"+ - "\3\b\2\2"; + "Q\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00ab\2\u00ad\2\u00af\2\u00b1W\u00b3"+ + "\2\u00b5\2\u00b7X\u00b9Y\u00bbZ\u00bd[\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\u03f4\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\2"+ + "C\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\2"+ + "i\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\u009d\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\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00b1\3\2\2\2\2\u00b7\3\2\2"+ + "\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\3\u00bf\3\2\2\2\5\u00c6"+ + "\3\2\2\2\7\u00c8\3\2\2\2\t\u00ca\3\2\2\2\13\u00cc\3\2\2\2\r\u00ce\3\2"+ + "\2\2\17\u00d0\3\2\2\2\21\u00d2\3\2\2\2\23\u00da\3\2\2\2\25\u00dc\3\2\2"+ + "\2\27\u00e5\3\2\2\2\31\u00ed\3\2\2\2\33\u00f3\3\2\2\2\35\u00f5\3\2\2\2"+ + "\37\u00fb\3\2\2\2!\u0102\3\2\2\2#\u0105\3\2\2\2%\u010c\3\2\2\2\'\u0112"+ + "\3\2\2\2)\u0119\3\2\2\2+\u011f\3\2\2\2-\u0128\3\2\2\2/\u0132\3\2\2\2\61"+ + "\u013b\3\2\2\2\63\u0142\3\2\2\2\65\u0145\3\2\2\2\67\u014a\3\2\2\29\u0150"+ + "\3\2\2\2;\u0153\3\2\2\2=\u0157\3\2\2\2?\u015e\3\2\2\2A\u0162\3\2\2\2C"+ + "\u0165\3\2\2\2E\u016c\3\2\2\2G\u016e\3\2\2\2I\u0170\3\2\2\2K\u0172\3\2"+ + "\2\2M\u0175\3\2\2\2O\u0178\3\2\2\2Q\u017a\3\2\2\2S\u017c\3\2\2\2U\u017e"+ + "\3\2\2\2W\u0180\3\2\2\2Y\u0182\3\2\2\2[\u0185\3\2\2\2]\u0188\3\2\2\2_"+ + "\u018a\3\2\2\2a\u018c\3\2\2\2c\u018e\3\2\2\2e\u0190\3\2\2\2g\u0193\3\2"+ + "\2\2i\u0196\3\2\2\2k\u0199\3\2\2\2m\u019c\3\2\2\2o\u019e\3\2\2\2q\u01a0"+ + "\3\2\2\2s\u01a3\3\2\2\2u\u01a6\3\2\2\2w\u01a9\3\2\2\2y\u01ac\3\2\2\2{"+ + "\u01af\3\2\2\2}\u01b2\3\2\2\2\177\u01b5\3\2\2\2\u0081\u01b9\3\2\2\2\u0083"+ + "\u01bd\3\2\2\2\u0085\u01c0\3\2\2\2\u0087\u01c3\3\2\2\2\u0089\u01c6\3\2"+ + "\2\2\u008b\u01cc\3\2\2\2\u008d\u02ac\3\2\2\2\u008f\u02ae\3\2\2\2\u0091"+ + "\u02cf\3\2\2\2\u0093\u02d1\3\2\2\2\u0095\u02dc\3\2\2\2\u0097\u02ed\3\2"+ + "\2\2\u0099\u02f1\3\2\2\2\u009b\u02f6\3\2\2\2\u009d\u02fd\3\2\2\2\u009f"+ + "\u030e\3\2\2\2\u00a1\u031c\3\2\2\2\u00a3\u032d\3\2\2\2\u00a5\u033c\3\2"+ + "\2\2\u00a7\u033f\3\2\2\2\u00a9\u0348\3\2\2\2\u00ab\u034f\3\2\2\2\u00ad"+ + "\u0351\3\2\2\2\u00af\u0353\3\2\2\2\u00b1\u0355\3\2\2\2\u00b3\u035c\3\2"+ + "\2\2\u00b5\u035e\3\2\2\2\u00b7\u0360\3\2\2\2\u00b9\u036d\3\2\2\2\u00bb"+ + "\u0373\3\2\2\2\u00bd\u037e\3\2\2\2\u00bf\u00c0\7k\2\2\u00c0\u00c1\7o\2"+ + "\2\u00c1\u00c2\7r\2\2\u00c2\u00c3\7q\2\2\u00c3\u00c4\7t\2\2\u00c4\u00c5"+ + "\7v\2\2\u00c5\4\3\2\2\2\u00c6\u00c7\7?\2\2\u00c7\6\3\2\2\2\u00c8\u00c9"+ + "\7=\2\2\u00c9\b\3\2\2\2\u00ca\u00cb\7*\2\2\u00cb\n\3\2\2\2\u00cc\u00cd"+ + "\7+\2\2\u00cd\f\3\2\2\2\u00ce\u00cf\7}\2\2\u00cf\16\3\2\2\2\u00d0\u00d1"+ + "\7\177\2\2\u00d1\20\3\2\2\2\u00d2\u00d3\7m\2\2\u00d3\u00d4\7k\2\2\u00d4"+ + "\u00d5\7e\2\2\u00d5\u00d6\7m\2\2\u00d6\u00d7\7c\2\2\u00d7\u00d8\7u\2\2"+ + "\u00d8\u00d9\7o\2\2\u00d9\22\3\2\2\2\u00da\u00db\7.\2\2\u00db\24\3\2\2"+ + "\2\u00dc\u00dd\7t\2\2\u00dd\u00de\7g\2\2\u00de\u00df\7u\2\2\u00df\u00e0"+ + "\7q\2\2\u00e0\u00e1\7w\2\2\u00e1\u00e2\7t\2\2\u00e2\u00e3\7e\2\2\u00e3"+ + "\u00e4\7g\2\2\u00e4\26\3\2\2\2\u00e5\u00e6\7e\2\2\u00e6\u00e7\7n\2\2\u00e7"+ + "\u00e8\7q\2\2\u00e8\u00e9\7d\2\2\u00e9\u00ea\7d\2\2\u00ea\u00eb\7g\2\2"+ + "\u00eb\u00ec\7t\2\2\u00ec\30\3\2\2\2\u00ed\u00ee\7r\2\2\u00ee\u00ef\7"+ + "c\2\2\u00ef\u00f0\7t\2\2\u00f0\u00f1\7c\2\2\u00f1\u00f2\7o\2\2\u00f2\32"+ + "\3\2\2\2\u00f3\u00f4\7<\2\2\u00f4\34\3\2\2\2\u00f5\u00f6\7d\2\2\u00f6"+ + "\u00f7\7{\2\2\u00f7\u00f8\7v\2\2\u00f8\u00f9\7g\2\2\u00f9\u00fa\7u\2\2"+ + "\u00fa\36\3\2\2\2\u00fb\u00fc\7e\2\2\u00fc\u00fd\7{\2\2\u00fd\u00fe\7"+ + "e\2\2\u00fe\u00ff\7n\2\2\u00ff\u0100\7g\2\2\u0100\u0101\7u\2\2\u0101 "+ + "\3\2\2\2\u0102\u0103\7r\2\2\u0103\u0104\7e\2\2\u0104\"\3\2\2\2\u0105\u0106"+ + "\7k\2\2\u0106\u0107\7p\2\2\u0107\u0108\7n\2\2\u0108\u0109\7k\2\2\u0109"+ + "\u010a\7p\2\2\u010a\u010b\7g\2\2\u010b$\3\2\2\2\u010c\u010d\7e\2\2\u010d"+ + "\u010e\7q\2\2\u010e\u010f\7p\2\2\u010f\u0110\7u\2\2\u0110\u0111\7v\2\2"+ + "\u0111&\3\2\2\2\u0112\u0113\7g\2\2\u0113\u0114\7z\2\2\u0114\u0115\7v\2"+ + "\2\u0115\u0116\7g\2\2\u0116\u0117\7t\2\2\u0117\u0118\7p\2\2\u0118(\3\2"+ + "\2\2\u0119\u011a\7c\2\2\u011a\u011b\7n\2\2\u011b\u011c\7k\2\2\u011c\u011d"+ + "\7i\2\2\u011d\u011e\7p\2\2\u011e*\3\2\2\2\u011f\u0120\7t\2\2\u0120\u0121"+ + "\7g\2\2\u0121\u0122\7i\2\2\u0122\u0123\7k\2\2\u0123\u0124\7u\2\2\u0124"+ + "\u0125\7v\2\2\u0125\u0126\7g\2\2\u0126\u0127\7t\2\2\u0127,\3\2\2\2\u0128"+ + "\u0129\7k\2\2\u0129\u012a\7p\2\2\u012a\u012b\7v\2\2\u012b\u012c\7g\2\2"+ + "\u012c\u012d\7t\2\2\u012d\u012e\7t\2\2\u012e\u012f\7w\2\2\u012f\u0130"+ + "\7r\2\2\u0130\u0131\7v\2\2\u0131.\3\2\2\2\u0132\u0133\7j\2\2\u0133\u0134"+ + "\7c\2\2\u0134\u0135\7t\2\2\u0135\u0136\7f\2\2\u0136\u0137\7y\2\2\u0137"+ + "\u0138\7c\2\2\u0138\u0139\7t\2\2\u0139\u013a\7g\2\2\u013a\60\3\2\2\2\u013b"+ + "\u013c\7m\2\2\u013c\u013d\7g\2\2\u013d\u013e\7t\2\2\u013e\u013f\7p\2\2"+ + "\u013f\u0140\7g\2\2\u0140\u0141\7n\2\2\u0141\62\3\2\2\2\u0142\u0143\7"+ + "k\2\2\u0143\u0144\7h\2\2\u0144\64\3\2\2\2\u0145\u0146\7g\2\2\u0146\u0147"+ + "\7n\2\2\u0147\u0148\7u\2\2\u0148\u0149\7g\2\2\u0149\66\3\2\2\2\u014a\u014b"+ + "\7y\2\2\u014b\u014c\7j\2\2\u014c\u014d\7k\2\2\u014d\u014e\7n\2\2\u014e"+ + "\u014f\7g\2\2\u014f8\3\2\2\2\u0150\u0151\7f\2\2\u0151\u0152\7q\2\2\u0152"+ + ":\3\2\2\2\u0153\u0154\7h\2\2\u0154\u0155\7q\2\2\u0155\u0156\7t\2\2\u0156"+ + "<\3\2\2\2\u0157\u0158\7t\2\2\u0158\u0159\7g\2\2\u0159\u015a\7v\2\2\u015a"+ + "\u015b\7w\2\2\u015b\u015c\7t\2\2\u015c\u015d\7p\2\2\u015d>\3\2\2\2\u015e"+ + "\u015f\7c\2\2\u015f\u0160\7u\2\2\u0160\u0161\7o\2\2\u0161@\3\2\2\2\u0162"+ + "\u0163\7\60\2\2\u0163\u0164\7\60\2\2\u0164B\3\2\2\2\u0165\u0166\7u\2\2"+ + "\u0166\u0167\7k\2\2\u0167\u0168\7i\2\2\u0168\u0169\7p\2\2\u0169\u016a"+ + "\7g\2\2\u016a\u016b\7f\2\2\u016bD\3\2\2\2\u016c\u016d\7,\2\2\u016dF\3"+ + "\2\2\2\u016e\u016f\7]\2\2\u016fH\3\2\2\2\u0170\u0171\7_\2\2\u0171J\3\2"+ + "\2\2\u0172\u0173\7/\2\2\u0173\u0174\7/\2\2\u0174L\3\2\2\2\u0175\u0176"+ + "\7-\2\2\u0176\u0177\7-\2\2\u0177N\3\2\2\2\u0178\u0179\7-\2\2\u0179P\3"+ + "\2\2\2\u017a\u017b\7/\2\2\u017bR\3\2\2\2\u017c\u017d\7#\2\2\u017dT\3\2"+ + "\2\2\u017e\u017f\7(\2\2\u017fV\3\2\2\2\u0180\u0181\7\u0080\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>\2\2\u0186\u0187\7>\2\2\u0187\\\3\2\2\2\u0188\u0189\7\61\2\2\u0189"+ + "^\3\2\2\2\u018a\u018b\7\'\2\2\u018b`\3\2\2\2\u018c\u018d\7>\2\2\u018d"+ + "b\3\2\2\2\u018e\u018f\7@\2\2\u018fd\3\2\2\2\u0190\u0191\7?\2\2\u0191\u0192"+ + "\7?\2\2\u0192f\3\2\2\2\u0193\u0194\7#\2\2\u0194\u0195\7?\2\2\u0195h\3"+ + "\2\2\2\u0196\u0197\7>\2\2\u0197\u0198\7?\2\2\u0198j\3\2\2\2\u0199\u019a"+ + "\7@\2\2\u019a\u019b\7?\2\2\u019bl\3\2\2\2\u019c\u019d\7`\2\2\u019dn\3"+ + "\2\2\2\u019e\u019f\7~\2\2\u019fp\3\2\2\2\u01a0\u01a1\7(\2\2\u01a1\u01a2"+ + "\7(\2\2\u01a2r\3\2\2\2\u01a3\u01a4\7~\2\2\u01a4\u01a5\7~\2\2\u01a5t\3"+ + "\2\2\2\u01a6\u01a7\7-\2\2\u01a7\u01a8\7?\2\2\u01a8v\3\2\2\2\u01a9\u01aa"+ + "\7/\2\2\u01aa\u01ab\7?\2\2\u01abx\3\2\2\2\u01ac\u01ad\7,\2\2\u01ad\u01ae"+ + "\7?\2\2\u01aez\3\2\2\2\u01af\u01b0\7\61\2\2\u01b0\u01b1\7?\2\2\u01b1|"+ + "\3\2\2\2\u01b2\u01b3\7\'\2\2\u01b3\u01b4\7?\2\2\u01b4~\3\2\2\2\u01b5\u01b6"+ + "\7>\2\2\u01b6\u01b7\7>\2\2\u01b7\u01b8\7?\2\2\u01b8\u0080\3\2\2\2\u01b9"+ + "\u01ba\7@\2\2\u01ba\u01bb\7@\2\2\u01bb\u01bc\7?\2\2\u01bc\u0082\3\2\2"+ + "\2\u01bd\u01be\7(\2\2\u01be\u01bf\7?\2\2\u01bf\u0084\3\2\2\2\u01c0\u01c1"+ + "\7~\2\2\u01c1\u01c2\7?\2\2\u01c2\u0086\3\2\2\2\u01c3\u01c4\7`\2\2\u01c4"+ + "\u01c5\7?\2\2\u01c5\u0088\3\2\2\2\u01c6\u01c7\7\60\2\2\u01c7\u01c8\7d"+ + "\2\2\u01c8\u01c9\7{\2\2\u01c9\u01ca\7v\2\2\u01ca\u01cb\7g\2\2\u01cb\u008a"+ + "\3\2\2\2\u01cc\u01cd\7%\2\2\u01cd\u008c\3\2\2\2\u01ce\u01cf\7d\2\2\u01cf"+ + "\u01d0\7t\2\2\u01d0\u02ad\7m\2\2\u01d1\u01d2\7q\2\2\u01d2\u01d3\7t\2\2"+ + "\u01d3\u02ad\7c\2\2\u01d4\u01d5\7m\2\2\u01d5\u01d6\7k\2\2\u01d6\u02ad"+ + "\7n\2\2\u01d7\u01d8\7u\2\2\u01d8\u01d9\7n\2\2\u01d9\u02ad\7q\2\2\u01da"+ + "\u01db\7p\2\2\u01db\u01dc\7q\2\2\u01dc\u02ad\7r\2\2\u01dd\u01de\7c\2\2"+ + "\u01de\u01df\7u\2\2\u01df\u02ad\7n\2\2\u01e0\u01e1\7r\2\2\u01e1\u01e2"+ + "\7j\2\2\u01e2\u02ad\7r\2\2\u01e3\u01e4\7c\2\2\u01e4\u01e5\7p\2\2\u01e5"+ + "\u02ad\7e\2\2\u01e6\u01e7\7d\2\2\u01e7\u01e8\7r\2\2\u01e8\u02ad\7n\2\2"+ + "\u01e9\u01ea\7e\2\2\u01ea\u01eb\7n\2\2\u01eb\u02ad\7e\2\2\u01ec\u01ed"+ + "\7l\2\2\u01ed\u01ee\7u\2\2\u01ee\u02ad\7t\2\2\u01ef\u01f0\7c\2\2\u01f0"+ + "\u01f1\7p\2\2\u01f1\u02ad\7f\2\2\u01f2\u01f3\7t\2\2\u01f3\u01f4\7n\2\2"+ + "\u01f4\u02ad\7c\2\2\u01f5\u01f6\7d\2\2\u01f6\u01f7\7k\2\2\u01f7\u02ad"+ + "\7v\2\2\u01f8\u01f9\7t\2\2\u01f9\u01fa\7q\2\2\u01fa\u02ad\7n\2\2\u01fb"+ + "\u01fc\7r\2\2\u01fc\u01fd\7n\2\2\u01fd\u02ad\7c\2\2\u01fe\u01ff\7r\2\2"+ + "\u01ff\u0200\7n\2\2\u0200\u02ad\7r\2\2\u0201\u0202\7d\2\2\u0202\u0203"+ + "\7o\2\2\u0203\u02ad\7k\2\2\u0204\u0205\7u\2\2\u0205\u0206\7g\2\2\u0206"+ + "\u02ad\7e\2\2\u0207\u0208\7t\2\2\u0208\u0209\7v\2\2\u0209\u02ad\7k\2\2"+ + "\u020a\u020b\7g\2\2\u020b\u020c\7q\2\2\u020c\u02ad\7t\2\2\u020d\u020e"+ + "\7u\2\2\u020e\u020f\7t\2\2\u020f\u02ad\7g\2\2\u0210\u0211\7n\2\2\u0211"+ + "\u0212\7u\2\2\u0212\u02ad\7t\2\2\u0213\u0214\7r\2\2\u0214\u0215\7j\2\2"+ + "\u0215\u02ad\7c\2\2\u0216\u0217\7c\2\2\u0217\u0218\7n\2\2\u0218\u02ad"+ + "\7t\2\2\u0219\u021a\7l\2\2\u021a\u021b\7o\2\2\u021b\u02ad\7r\2\2\u021c"+ + "\u021d\7d\2\2\u021d\u021e\7x\2\2\u021e\u02ad\7e\2\2\u021f\u0220\7e\2\2"+ + "\u0220\u0221\7n\2\2\u0221\u02ad\7k\2\2\u0222\u0223\7t\2\2\u0223\u0224"+ + "\7v\2\2\u0224\u02ad\7u\2\2\u0225\u0226\7c\2\2\u0226\u0227\7f\2\2\u0227"+ + "\u02ad\7e\2\2\u0228\u0229\7t\2\2\u0229\u022a\7t\2\2\u022a\u02ad\7c\2\2"+ + "\u022b\u022c\7d\2\2\u022c\u022d\7x\2\2\u022d\u02ad\7u\2\2\u022e\u022f"+ + "\7u\2\2\u022f\u0230\7g\2\2\u0230\u02ad\7k\2\2\u0231\u0232\7u\2\2\u0232"+ + "\u0233\7c\2\2\u0233\u02ad\7z\2\2\u0234\u0235\7u\2\2\u0235\u0236\7v\2\2"+ + "\u0236\u02ad\7{\2\2\u0237\u0238\7u\2\2\u0238\u0239\7v\2\2\u0239\u02ad"+ + "\7c\2\2\u023a\u023b\7u\2\2\u023b\u023c\7v\2\2\u023c\u02ad\7z\2\2\u023d"+ + "\u023e\7f\2\2\u023e\u023f\7g\2\2\u023f\u02ad\7{\2\2\u0240\u0241\7v\2\2"+ + "\u0241\u0242\7z\2\2\u0242\u02ad\7c\2\2\u0243\u0244\7z\2\2\u0244\u0245"+ + "\7c\2\2\u0245\u02ad\7c\2\2\u0246\u0247\7d\2\2\u0247\u0248\7e\2\2\u0248"+ + "\u02ad\7e\2\2\u0249\u024a\7c\2\2\u024a\u024b\7j\2\2\u024b\u02ad\7z\2\2"+ + "\u024c\u024d\7v\2\2\u024d\u024e\7{\2\2\u024e\u02ad\7c\2\2\u024f\u0250"+ + "\7v\2\2\u0250\u0251\7z\2\2\u0251\u02ad\7u\2\2\u0252\u0253\7v\2\2\u0253"+ + "\u0254\7c\2\2\u0254\u02ad\7u\2\2\u0255\u0256\7u\2\2\u0256\u0257\7j\2\2"+ + "\u0257\u02ad\7{\2\2\u0258\u0259\7u\2\2\u0259\u025a\7j\2\2\u025a\u02ad"+ + "\7z\2\2\u025b\u025c\7n\2\2\u025c\u025d\7f\2\2\u025d\u02ad\7{\2\2\u025e"+ + "\u025f\7n\2\2\u025f\u0260\7f\2\2\u0260\u02ad\7c\2\2\u0261\u0262\7n\2\2"+ + "\u0262\u0263\7f\2\2\u0263\u02ad\7z\2\2\u0264\u0265\7n\2\2\u0265\u0266"+ + "\7c\2\2\u0266\u02ad\7z\2\2\u0267\u0268\7v\2\2\u0268\u0269\7c\2\2\u0269"+ + "\u02ad\7{\2\2\u026a\u026b\7v\2\2\u026b\u026c\7c\2\2\u026c\u02ad\7z\2\2"+ + "\u026d\u026e\7d\2\2\u026e\u026f\7e\2\2\u026f\u02ad\7u\2\2\u0270\u0271"+ + "\7e\2\2\u0271\u0272\7n\2\2\u0272\u02ad\7x\2\2\u0273\u0274\7v\2\2\u0274"+ + "\u0275\7u\2\2\u0275\u02ad\7z\2\2\u0276\u0277\7n\2\2\u0277\u0278\7c\2\2"+ + "\u0278\u02ad\7u\2\2\u0279\u027a\7e\2\2\u027a\u027b\7r\2\2\u027b\u02ad"+ + "\7{\2\2\u027c\u027d\7e\2\2\u027d\u027e\7o\2\2\u027e\u02ad\7r\2\2\u027f"+ + "\u0280\7e\2\2\u0280\u0281\7r\2\2\u0281\u02ad\7z\2\2\u0282\u0283\7f\2\2"+ + "\u0283\u0284\7e\2\2\u0284\u02ad\7r\2\2\u0285\u0286\7f\2\2\u0286\u0287"+ + "\7g\2\2\u0287\u02ad\7e\2\2\u0288\u0289\7k\2\2\u0289\u028a\7p\2\2\u028a"+ + "\u02ad\7e\2\2\u028b\u028c\7c\2\2\u028c\u028d\7z\2\2\u028d\u02ad\7u\2\2"+ + "\u028e\u028f\7d\2\2\u028f\u0290\7p\2\2\u0290\u02ad\7g\2\2\u0291\u0292"+ + "\7e\2\2\u0292\u0293\7n\2\2\u0293\u02ad\7f\2\2\u0294\u0295\7u\2\2\u0295"+ + "\u0296\7d\2\2\u0296\u02ad\7e\2\2\u0297\u0298\7k\2\2\u0298\u0299\7u\2\2"+ + "\u0299\u02ad\7e\2\2\u029a\u029b\7k\2\2\u029b\u029c\7p\2\2\u029c\u02ad"+ + "\7z\2\2\u029d\u029e\7d\2\2\u029e\u029f\7g\2\2\u029f\u02ad\7s\2\2\u02a0"+ + "\u02a1\7u\2\2\u02a1\u02a2\7g\2\2\u02a2\u02ad\7f\2\2\u02a3\u02a4\7f\2\2"+ + "\u02a4\u02a5\7g\2\2\u02a5\u02ad\7z\2\2\u02a6\u02a7\7k\2\2\u02a7\u02a8"+ + "\7p\2\2\u02a8\u02ad\7{\2\2\u02a9\u02aa\7t\2\2\u02aa\u02ab\7q\2\2\u02ab"+ + "\u02ad\7t\2\2\u02ac\u01ce\3\2\2\2\u02ac\u01d1\3\2\2\2\u02ac\u01d4\3\2"+ + "\2\2\u02ac\u01d7\3\2\2\2\u02ac\u01da\3\2\2\2\u02ac\u01dd\3\2\2\2\u02ac"+ + "\u01e0\3\2\2\2\u02ac\u01e3\3\2\2\2\u02ac\u01e6\3\2\2\2\u02ac\u01e9\3\2"+ + "\2\2\u02ac\u01ec\3\2\2\2\u02ac\u01ef\3\2\2\2\u02ac\u01f2\3\2\2\2\u02ac"+ + "\u01f5\3\2\2\2\u02ac\u01f8\3\2\2\2\u02ac\u01fb\3\2\2\2\u02ac\u01fe\3\2"+ + "\2\2\u02ac\u0201\3\2\2\2\u02ac\u0204\3\2\2\2\u02ac\u0207\3\2\2\2\u02ac"+ + "\u020a\3\2\2\2\u02ac\u020d\3\2\2\2\u02ac\u0210\3\2\2\2\u02ac\u0213\3\2"+ + "\2\2\u02ac\u0216\3\2\2\2\u02ac\u0219\3\2\2\2\u02ac\u021c\3\2\2\2\u02ac"+ + "\u021f\3\2\2\2\u02ac\u0222\3\2\2\2\u02ac\u0225\3\2\2\2\u02ac\u0228\3\2"+ + "\2\2\u02ac\u022b\3\2\2\2\u02ac\u022e\3\2\2\2\u02ac\u0231\3\2\2\2\u02ac"+ + "\u0234\3\2\2\2\u02ac\u0237\3\2\2\2\u02ac\u023a\3\2\2\2\u02ac\u023d\3\2"+ + "\2\2\u02ac\u0240\3\2\2\2\u02ac\u0243\3\2\2\2\u02ac\u0246\3\2\2\2\u02ac"+ + "\u0249\3\2\2\2\u02ac\u024c\3\2\2\2\u02ac\u024f\3\2\2\2\u02ac\u0252\3\2"+ + "\2\2\u02ac\u0255\3\2\2\2\u02ac\u0258\3\2\2\2\u02ac\u025b\3\2\2\2\u02ac"+ + "\u025e\3\2\2\2\u02ac\u0261\3\2\2\2\u02ac\u0264\3\2\2\2\u02ac\u0267\3\2"+ + "\2\2\u02ac\u026a\3\2\2\2\u02ac\u026d\3\2\2\2\u02ac\u0270\3\2\2\2\u02ac"+ + "\u0273\3\2\2\2\u02ac\u0276\3\2\2\2\u02ac\u0279\3\2\2\2\u02ac\u027c\3\2"+ + "\2\2\u02ac\u027f\3\2\2\2\u02ac\u0282\3\2\2\2\u02ac\u0285\3\2\2\2\u02ac"+ + "\u0288\3\2\2\2\u02ac\u028b\3\2\2\2\u02ac\u028e\3\2\2\2\u02ac\u0291\3\2"+ + "\2\2\u02ac\u0294\3\2\2\2\u02ac\u0297\3\2\2\2\u02ac\u029a\3\2\2\2\u02ac"+ + "\u029d\3\2\2\2\u02ac\u02a0\3\2\2\2\u02ac\u02a3\3\2\2\2\u02ac\u02a6\3\2"+ + "\2\2\u02ac\u02a9\3\2\2\2\u02ad\u008e\3\2\2\2\u02ae\u02af\7}\2\2\u02af"+ + "\u02b0\7}\2\2\u02b0\u02b4\3\2\2\2\u02b1\u02b3\13\2\2\2\u02b2\u02b1\3\2"+ + "\2\2\u02b3\u02b6\3\2\2\2\u02b4\u02b5\3\2\2\2\u02b4\u02b2\3\2\2\2\u02b5"+ + "\u02b7\3\2\2\2\u02b6\u02b4\3\2\2\2\u02b7\u02b8\7\177\2\2\u02b8\u02b9\7"+ + "\177\2\2\u02b9\u0090\3\2\2\2\u02ba\u02bb\7d\2\2\u02bb\u02bc\7{\2\2\u02bc"+ + "\u02bd\7v\2\2\u02bd\u02d0\7g\2\2\u02be\u02bf\7y\2\2\u02bf\u02c0\7q\2\2"+ + "\u02c0\u02c1\7t\2\2\u02c1\u02d0\7f\2\2\u02c2\u02c3\7f\2\2\u02c3\u02c4"+ + "\7y\2\2\u02c4\u02c5\7q\2\2\u02c5\u02c6\7t\2\2\u02c6\u02d0\7f\2\2\u02c7"+ + "\u02c8\7d\2\2\u02c8\u02c9\7q\2\2\u02c9\u02ca\7q\2\2\u02ca\u02d0\7n\2\2"+ + "\u02cb\u02cc\7x\2\2\u02cc\u02cd\7q\2\2\u02cd\u02ce\7k\2\2\u02ce\u02d0"+ + "\7f\2\2\u02cf\u02ba\3\2\2\2\u02cf\u02be\3\2\2\2\u02cf\u02c2\3\2\2\2\u02cf"+ + "\u02c7\3\2\2\2\u02cf\u02cb\3\2\2\2\u02d0\u0092\3\2\2\2\u02d1\u02d7\7$"+ + "\2\2\u02d2\u02d3\7^\2\2\u02d3\u02d6\7$\2\2\u02d4\u02d6\n\2\2\2\u02d5\u02d2"+ + "\3\2\2\2\u02d5\u02d4\3\2\2\2\u02d6\u02d9\3\2\2\2\u02d7\u02d5\3\2\2\2\u02d7"+ + "\u02d8\3\2\2\2\u02d8\u02da\3\2\2\2\u02d9\u02d7\3\2\2\2\u02da\u02db\7$"+ + "\2\2\u02db\u0094\3\2\2\2\u02dc\u02e0\7)\2\2\u02dd\u02de\7^\2\2\u02de\u02e1"+ + "\7)\2\2\u02df\u02e1\n\3\2\2\u02e0\u02dd\3\2\2\2\u02e0\u02df\3\2\2\2\u02e1"+ + "\u02e2\3\2\2\2\u02e2\u02e3\7)\2\2\u02e3\u0096\3\2\2\2\u02e4\u02e5\7v\2"+ + "\2\u02e5\u02e6\7t\2\2\u02e6\u02e7\7w\2\2\u02e7\u02ee\7g\2\2\u02e8\u02e9"+ + "\7h\2\2\u02e9\u02ea\7c\2\2\u02ea\u02eb\7n\2\2\u02eb\u02ec\7u\2\2\u02ec"+ + "\u02ee\7g\2\2\u02ed\u02e4\3\2\2\2\u02ed\u02e8\3\2\2\2\u02ee\u0098\3\2"+ + "\2\2\u02ef\u02f2\5\u009bN\2\u02f0\u02f2\5\u00a3R\2\u02f1\u02ef\3\2\2\2"+ + "\u02f1\u02f0\3\2\2\2\u02f2\u009a\3\2\2\2\u02f3\u02f7\5\u009dO\2\u02f4"+ + "\u02f7\5\u009fP\2\u02f5\u02f7\5\u00a1Q\2\u02f6\u02f3\3\2\2\2\u02f6\u02f4"+ + "\3\2\2\2\u02f6\u02f5\3\2\2\2\u02f7\u009c\3\2\2\2\u02f8\u02fe\7\'\2\2\u02f9"+ + "\u02fa\7\62\2\2\u02fa\u02fe\7d\2\2\u02fb\u02fc\7\62\2\2\u02fc\u02fe\7"+ + "D\2\2\u02fd\u02f8\3\2\2\2\u02fd\u02f9\3\2\2\2\u02fd\u02fb\3\2\2\2\u02fe"+ + "\u0302\3\2\2\2\u02ff\u0301\5\u00abV\2\u0300\u02ff\3\2\2\2\u0301\u0304"+ + "\3\2\2\2\u0302\u0300\3\2\2\2\u0302\u0303\3\2\2\2\u0303\u0305\3\2\2\2\u0304"+ + "\u0302\3\2\2\2\u0305\u0307\7\60\2\2\u0306\u0308\5\u00abV\2\u0307\u0306"+ + "\3\2\2\2\u0308\u0309\3\2\2\2\u0309\u0307\3\2\2\2\u0309\u030a\3\2\2\2\u030a"+ + "\u009e\3\2\2\2\u030b\u030d\5\u00adW\2\u030c\u030b\3\2\2\2\u030d\u0310"+ + "\3\2\2\2\u030e\u030c\3\2\2\2\u030e\u030f\3\2\2\2\u030f\u0311\3\2\2\2\u0310"+ + "\u030e\3\2\2\2\u0311\u0313\7\60\2\2\u0312\u0314\5\u00adW\2\u0313\u0312"+ + "\3\2\2\2\u0314\u0315\3\2\2\2\u0315\u0313\3\2\2\2\u0315\u0316\3\2\2\2\u0316"+ + "\u00a0\3\2\2\2\u0317\u031d\7&\2\2\u0318\u0319\7\62\2\2\u0319\u031d\7z"+ + "\2\2\u031a\u031b\7\62\2\2\u031b\u031d\7Z\2\2\u031c\u0317\3\2\2\2\u031c"+ + "\u0318\3\2\2\2\u031c\u031a\3\2\2\2\u031d\u0321\3\2\2\2\u031e\u0320\5\u00af"+ + "X\2\u031f\u031e\3\2\2\2\u0320\u0323\3\2\2\2\u0321\u031f\3\2\2\2\u0321"+ + "\u0322\3\2\2\2\u0322\u0324\3\2\2\2\u0323\u0321\3\2\2\2\u0324\u0326\7\60"+ + "\2\2\u0325\u0327\5\u00afX\2\u0326\u0325\3\2\2\2\u0327\u0328\3\2\2\2\u0328"+ + "\u0326\3\2\2\2\u0328\u0329\3\2\2\2\u0329\u00a2\3\2\2\2\u032a\u032e\5\u00a7"+ + "T\2\u032b\u032e\5\u00a9U\2\u032c\u032e\5\u00a5S\2\u032d\u032a\3\2\2\2"+ + "\u032d\u032b\3\2\2\2\u032d\u032c\3\2\2\2\u032e\u00a4\3\2\2\2\u032f\u0330"+ + "\7\62\2\2\u0330\u0332\t\4\2\2\u0331\u0333\5\u00abV\2\u0332\u0331\3\2\2"+ + "\2\u0333\u0334\3\2\2\2\u0334\u0332\3\2\2\2\u0334\u0335\3\2\2\2\u0335\u033d"+ + "\3\2\2\2\u0336\u0338\7\'\2\2\u0337\u0339\5\u00abV\2\u0338\u0337\3\2\2"+ + "\2\u0339\u033a\3\2\2\2\u033a\u0338\3\2\2\2\u033a\u033b\3\2\2\2\u033b\u033d"+ + "\3\2\2\2\u033c\u032f\3\2\2\2\u033c\u0336\3\2\2\2\u033d\u00a6\3\2\2\2\u033e"+ + "\u0340\5\u00adW\2\u033f\u033e\3\2\2\2\u0340\u0341\3\2\2\2\u0341\u033f"+ + "\3\2\2\2\u0341\u0342\3\2\2\2\u0342\u00a8\3\2\2\2\u0343\u0349\7&\2\2\u0344"+ + "\u0345\7\62\2\2\u0345\u0349\7z\2\2\u0346\u0347\7\62\2\2\u0347\u0349\7"+ + "Z\2\2\u0348\u0343\3\2\2\2\u0348\u0344\3\2\2\2\u0348\u0346\3\2\2\2\u0349"+ + "\u034b\3\2\2\2\u034a\u034c\5\u00afX\2\u034b\u034a\3\2\2\2\u034c\u034d"+ + "\3\2\2\2\u034d\u034b\3\2\2\2\u034d\u034e\3\2\2\2\u034e\u00aa\3\2\2\2\u034f"+ + "\u0350\t\5\2\2\u0350\u00ac\3\2\2\2\u0351\u0352\t\6\2\2\u0352\u00ae\3\2"+ + "\2\2\u0353\u0354\t\7\2\2\u0354\u00b0\3\2\2\2\u0355\u0359\5\u00b3Z\2\u0356"+ + "\u0358\5\u00b5[\2\u0357\u0356\3\2\2\2\u0358\u035b\3\2\2\2\u0359\u0357"+ + "\3\2\2\2\u0359\u035a\3\2\2\2\u035a\u00b2\3\2\2\2\u035b\u0359\3\2\2\2\u035c"+ + "\u035d\t\b\2\2\u035d\u00b4\3\2\2\2\u035e\u035f\t\t\2\2\u035f\u00b6\3\2"+ + "\2\2\u0360\u0364\7#\2\2\u0361\u0363\5\u00b5[\2\u0362\u0361\3\2\2\2\u0363"+ + "\u0366\3\2\2\2\u0364\u0362\3\2\2\2\u0364\u0365\3\2\2\2\u0365\u0368\3\2"+ + "\2\2\u0366\u0364\3\2\2\2\u0367\u0369\t\n\2\2\u0368\u0367\3\2\2\2\u0369"+ + "\u036a\3\2\2\2\u036a\u0368\3\2\2\2\u036a\u036b\3\2\2\2\u036b\u00b8\3\2"+ + "\2\2\u036c\u036e\t\13\2\2\u036d\u036c\3\2\2\2\u036e\u036f\3\2\2\2\u036f"+ + "\u036d\3\2\2\2\u036f\u0370\3\2\2\2\u0370\u0371\3\2\2\2\u0371\u0372\b]"+ + "\2\2\u0372\u00ba\3\2\2\2\u0373\u0374\7\61\2\2\u0374\u0375\7\61\2\2\u0375"+ + "\u0379\3\2\2\2\u0376\u0378\n\f\2\2\u0377\u0376\3\2\2\2\u0378\u037b\3\2"+ + "\2\2\u0379\u0377\3\2\2\2\u0379\u037a\3\2\2\2\u037a\u037c\3\2\2\2\u037b"+ + "\u0379\3\2\2\2\u037c\u037d\b^\2\2\u037d\u00bc\3\2\2\2\u037e\u037f\7\61"+ + "\2\2\u037f\u0380\7,\2\2\u0380\u0384\3\2\2\2\u0381\u0383\13\2\2\2\u0382"+ + "\u0381\3\2\2\2\u0383\u0386\3\2\2\2\u0384\u0385\3\2\2\2\u0384\u0382\3\2"+ + "\2\2\u0385\u0387\3\2\2\2\u0386\u0384\3\2\2\2\u0387\u0388\7,\2\2\u0388"+ + "\u0389\7\61\2\2\u0389\u038a\3\2\2\2\u038a\u038b\b_\2\2\u038b\u00be\3\2"+ + "\2\2!\2\u02ac\u02b4\u02cf\u02d5\u02d7\u02e0\u02ed\u02f1\u02f6\u02fd\u0302"+ + "\u0309\u030e\u0315\u031c\u0321\u0328\u032d\u0334\u033a\u033c\u0341\u0348"+ + "\u034d\u0359\u0364\u036a\u036f\u0379\u0384\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 43553c992..8004aeb3a 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -65,26 +65,28 @@ T__63=64 T__64=65 T__65=66 T__66=67 -MNEMONIC=68 -KICKASM=69 -SIMPLETYPE=70 -STRING=71 -CHAR=72 -BOOLEAN=73 -NUMBER=74 -NUMFLOAT=75 -BINFLOAT=76 -DECFLOAT=77 -HEXFLOAT=78 -NUMINT=79 -BININTEGER=80 -DECINTEGER=81 -HEXINTEGER=82 -NAME=83 -ASMREL=84 -WS=85 -COMMENT_LINE=86 -COMMENT_BLOCK=87 +T__67=68 +T__68=69 +MNEMONIC=70 +KICKASM=71 +SIMPLETYPE=72 +STRING=73 +CHAR=74 +BOOLEAN=75 +NUMBER=76 +NUMFLOAT=77 +BINFLOAT=78 +DECFLOAT=79 +HEXFLOAT=80 +NUMINT=81 +BININTEGER=82 +DECINTEGER=83 +HEXINTEGER=84 +NAME=85 +ASMREL=86 +WS=87 +COMMENT_LINE=88 +COMMENT_BLOCK=89 'import'=1 '='=2 ';'=3 @@ -107,48 +109,50 @@ COMMENT_BLOCK=87 'align'=20 'register'=21 'interrupt'=22 -'if'=23 -'else'=24 -'while'=25 -'do'=26 -'for'=27 -'return'=28 -'asm'=29 -'..'=30 -'signed'=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 -'<<='=61 -'>>='=62 -'&='=63 -'|='=64 -'^='=65 -'.byte'=66 -'#'=67 +'hardware'=23 +'kernel'=24 +'if'=25 +'else'=26 +'while'=27 +'do'=28 +'for'=29 +'return'=30 +'asm'=31 +'..'=32 +'signed'=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 +'/='=61 +'%='=62 +'<<='=63 +'>>='=64 +'&='=65 +'|='=66 +'^='=67 +'.byte'=68 +'#'=69 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java index d6dfb4f06..e68190ace 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.tree.ParseTreeListener; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index fbff945dd..2c792909a 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; @@ -26,10 +26,10 @@ public class KickCParser extends Parser { 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, T__58=59, T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, T__64=65, T__65=66, - T__66=67, MNEMONIC=68, KICKASM=69, SIMPLETYPE=70, STRING=71, CHAR=72, - BOOLEAN=73, NUMBER=74, NUMFLOAT=75, BINFLOAT=76, DECFLOAT=77, HEXFLOAT=78, - NUMINT=79, BININTEGER=80, DECINTEGER=81, HEXINTEGER=82, NAME=83, ASMREL=84, - WS=85, COMMENT_LINE=86, COMMENT_BLOCK=87; + T__66=67, T__67=68, T__68=69, MNEMONIC=70, KICKASM=71, SIMPLETYPE=72, + STRING=73, CHAR=74, BOOLEAN=75, NUMBER=76, NUMFLOAT=77, BINFLOAT=78, DECFLOAT=79, + HEXFLOAT=80, NUMINT=81, BININTEGER=82, DECINTEGER=83, HEXINTEGER=84, NAME=85, + ASMREL=86, WS=87, COMMENT_LINE=88, COMMENT_BLOCK=89; 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, @@ -51,11 +51,12 @@ public class KickCParser extends Parser { null, "'import'", "'='", "';'", "'('", "')'", "'{'", "'}'", "'kickasm'", "','", "'resource'", "'clobber'", "'param'", "':'", "'bytes'", "'cycles'", "'pc'", "'inline'", "'const'", "'extern'", "'align'", "'register'", "'interrupt'", - "'if'", "'else'", "'while'", "'do'", "'for'", "'return'", "'asm'", "'..'", - "'signed'", "'*'", "'['", "']'", "'--'", "'++'", "'+'", "'-'", "'!'", - "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", "'=='", "'!='", - "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'+='", "'-='", "'*='", - "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='", "'^='", "'.byte'", "'#'" + "'hardware'", "'kernel'", "'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, @@ -63,10 +64,10 @@ public class KickCParser extends Parser { 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", "KICKASM", - "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, "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); @@ -366,7 +367,7 @@ public class KickCParser extends Parser { setState(75); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__7) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__30))) != 0) || _la==SIMPLETYPE ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__7) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__32))) != 0) || _la==SIMPLETYPE ); } } catch (RecognitionException re) { @@ -629,7 +630,7 @@ public class KickCParser extends Parser { setState(118); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__30))) != 0) || _la==SIMPLETYPE) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__32))) != 0) || _la==SIMPLETYPE) { { setState(117); parameterListDecl(); @@ -643,7 +644,7 @@ public class KickCParser extends Parser { setState(123); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__7) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__30) | (1L << T__31) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__45) | (1L << T__46))) != 0) || ((((_la - 70)) & ~0x3f) == 0 && ((1L << (_la - 70)) & ((1L << (SIMPLETYPE - 70)) | (1L << (STRING - 70)) | (1L << (CHAR - 70)) | (1L << (BOOLEAN - 70)) | (1L << (NUMBER - 70)) | (1L << (NAME - 70)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__7) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__24) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__32) | (1L << T__33) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__47) | (1L << T__48))) != 0) || ((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & ((1L << (SIMPLETYPE - 72)) | (1L << (STRING - 72)) | (1L << (CHAR - 72)) | (1L << (BOOLEAN - 72)) | (1L << (NUMBER - 72)) | (1L << (NAME - 72)))) != 0)) { { setState(122); stmtSeq(); @@ -992,16 +993,16 @@ public class KickCParser extends Parser { break; case T__3: case T__5: - case T__31: - case T__34: - case T__35: + case T__33: case T__36: case T__37: case T__38: case T__39: case T__40: - case T__45: - case T__46: + case T__41: + case T__42: + case T__47: + case T__48: case STRING: case CHAR: case BOOLEAN: @@ -1291,8 +1292,9 @@ public class KickCParser extends Parser { public final DirectiveContext directive() throws RecognitionException { DirectiveContext _localctx = new DirectiveContext(_ctx, getState()); enterRule(_localctx, 26, RULE_directive); + int _la; try { - setState(198); + setState(203); _errHandler.sync(this); switch (_input.LA(1)) { case T__17: @@ -1353,6 +1355,28 @@ public class KickCParser extends Parser { { setState(197); match(T__21); + setState(201); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { + case 1: + { + setState(198); + match(T__3); + setState(199); + _la = _input.LA(1); + if ( !(_la==T__22 || _la==T__23) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(200); + match(T__4); + } + break; + } } break; default: @@ -1403,20 +1427,20 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(201); + setState(206); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(200); + setState(205); stmt(); } } - setState(203); + setState(208); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__7) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__30) | (1L << T__31) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__45) | (1L << T__46))) != 0) || ((((_la - 70)) & ~0x3f) == 0 && ((1L << (_la - 70)) & ((1L << (SIMPLETYPE - 70)) | (1L << (STRING - 70)) | (1L << (CHAR - 70)) | (1L << (BOOLEAN - 70)) | (1L << (NUMBER - 70)) | (1L << (NAME - 70)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__7) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__24) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__32) | (1L << T__33) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__47) | (1L << T__48))) != 0) || ((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & ((1L << (SIMPLETYPE - 72)) | (1L << (STRING - 72)) | (1L << (CHAR - 72)) | (1L << (BOOLEAN - 72)) | (1L << (NUMBER - 72)) | (1L << (NAME - 72)))) != 0) ); } } catch (RecognitionException re) { @@ -1664,14 +1688,14 @@ public class KickCParser extends Parser { enterRule(_localctx, 30, RULE_stmt); int _la; try { - setState(266); + setState(271); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { case 1: _localctx = new StmtDeclVarContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(205); + setState(210); declVariable(); } break; @@ -1679,19 +1703,19 @@ public class KickCParser extends Parser { _localctx = new StmtBlockContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(206); + setState(211); match(T__5); - setState(208); + setState(213); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__7) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__30) | (1L << T__31) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__45) | (1L << T__46))) != 0) || ((((_la - 70)) & ~0x3f) == 0 && ((1L << (_la - 70)) & ((1L << (SIMPLETYPE - 70)) | (1L << (STRING - 70)) | (1L << (CHAR - 70)) | (1L << (BOOLEAN - 70)) | (1L << (NUMBER - 70)) | (1L << (NAME - 70)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__7) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__24) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__32) | (1L << T__33) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__47) | (1L << T__48))) != 0) || ((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & ((1L << (SIMPLETYPE - 72)) | (1L << (STRING - 72)) | (1L << (CHAR - 72)) | (1L << (BOOLEAN - 72)) | (1L << (NUMBER - 72)) | (1L << (NAME - 72)))) != 0)) { { - setState(207); + setState(212); stmtSeq(); } } - setState(210); + setState(215); match(T__6); } break; @@ -1699,9 +1723,9 @@ public class KickCParser extends Parser { _localctx = new StmtExprContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(211); + setState(216); expr(0); - setState(212); + setState(217); match(T__2); } break; @@ -1709,24 +1733,24 @@ public class KickCParser extends Parser { _localctx = new StmtIfElseContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(214); - match(T__22); - setState(215); + setState(219); + match(T__24); + setState(220); match(T__3); - setState(216); - expr(0); - setState(217); - match(T__4); - setState(218); - stmt(); setState(221); + expr(0); + setState(222); + match(T__4); + setState(223); + stmt(); + setState(226); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) { case 1: { - setState(219); - match(T__23); - setState(220); + setState(224); + match(T__25); + setState(225); stmt(); } break; @@ -1737,25 +1761,25 @@ public class KickCParser extends Parser { _localctx = new StmtWhileContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(224); + setState(229); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21))) != 0)) { { - setState(223); + setState(228); directive(); } } - setState(226); - match(T__24); - setState(227); + setState(231); + match(T__26); + setState(232); match(T__3); - setState(228); + setState(233); expr(0); - setState(229); + setState(234); match(T__4); - setState(230); + setState(235); stmt(); } break; @@ -1763,29 +1787,29 @@ public class KickCParser extends Parser { _localctx = new StmtDoWhileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(233); + setState(238); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21))) != 0)) { { - setState(232); + setState(237); directive(); } } - setState(235); - match(T__25); - setState(236); - stmt(); - setState(237); - match(T__24); - setState(238); - match(T__3); - setState(239); - expr(0); setState(240); - match(T__4); + match(T__27); setState(241); + stmt(); + setState(242); + match(T__26); + setState(243); + match(T__3); + setState(244); + expr(0); + setState(245); + match(T__4); + setState(246); match(T__2); } break; @@ -1793,35 +1817,35 @@ public class KickCParser extends Parser { _localctx = new StmtForContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(244); + setState(249); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21))) != 0)) { { - setState(243); + setState(248); directive(); } } - setState(246); - match(T__26); - setState(247); + setState(251); + match(T__28); + setState(252); match(T__3); - setState(249); + setState(254); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__30))) != 0) || _la==SIMPLETYPE || _la==NAME) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__32))) != 0) || _la==SIMPLETYPE || _la==NAME) { { - setState(248); + setState(253); forDeclaration(); } } - setState(251); + setState(256); forIteration(); - setState(252); + setState(257); match(T__4); - setState(253); + setState(258); stmt(); } break; @@ -1829,19 +1853,19 @@ public class KickCParser extends Parser { _localctx = new StmtReturnContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(255); - match(T__27); - setState(257); + setState(260); + match(T__29); + setState(262); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__31) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__45) | (1L << T__46))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (STRING - 71)) | (1L << (CHAR - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__33) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__47) | (1L << T__48))) != 0) || ((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (BOOLEAN - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 0)) { { - setState(256); + setState(261); expr(0); } } - setState(259); + setState(264); match(T__2); } break; @@ -1849,13 +1873,13 @@ public class KickCParser extends Parser { _localctx = new StmtAsmContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(260); - match(T__28); - setState(261); + setState(265); + match(T__30); + setState(266); match(T__5); - setState(262); + setState(267); asmLines(); - setState(263); + setState(268); match(T__6); } break; @@ -1863,7 +1887,7 @@ public class KickCParser extends Parser { _localctx = new StmtDeclKasmContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(265); + setState(270); declKasm(); } break; @@ -1930,56 +1954,56 @@ public class KickCParser extends Parser { _localctx = new ForDeclContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(271); + setState(276); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,27,_ctx); + _alt = getInterpreter().adaptivePredict(_input,28,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(268); + setState(273); directive(); } } } - setState(273); + setState(278); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,27,_ctx); + _alt = getInterpreter().adaptivePredict(_input,28,_ctx); } - setState(275); + setState(280); _errHandler.sync(this); _la = _input.LA(1); - if (_la==T__3 || _la==T__30 || _la==SIMPLETYPE) { + if (_la==T__3 || _la==T__32 || _la==SIMPLETYPE) { { - setState(274); + setState(279); typeDecl(0); } } - setState(280); + setState(285); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21))) != 0)) { { { - setState(277); + setState(282); directive(); } } - setState(282); + setState(287); _errHandler.sync(this); _la = _input.LA(1); } - setState(283); + setState(288); match(NAME); - setState(286); + setState(291); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__1) { { - setState(284); + setState(289); match(T__1); - setState(285); + setState(290); expr(0); } } @@ -2057,20 +2081,20 @@ public class KickCParser extends Parser { ForIterationContext _localctx = new ForIterationContext(_ctx, getState()); enterRule(_localctx, 34, RULE_forIteration); try { - setState(298); + setState(303); _errHandler.sync(this); switch (_input.LA(1)) { case T__2: _localctx = new ForClassicContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(288); + setState(293); match(T__2); - setState(289); + setState(294); expr(0); - setState(290); + setState(295); match(T__2); - setState(291); + setState(296); expr(0); } break; @@ -2078,15 +2102,15 @@ public class KickCParser extends Parser { _localctx = new ForRangeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(293); + setState(298); match(T__12); - setState(294); + setState(299); expr(0); { - setState(295); - match(T__29); + setState(300); + match(T__31); } - setState(296); + setState(301); expr(0); } break; @@ -2246,7 +2270,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(308); + setState(313); _errHandler.sync(this); switch (_input.LA(1)) { case T__3: @@ -2255,11 +2279,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(301); + setState(306); match(T__3); - setState(302); + setState(307); typeDecl(0); - setState(303); + setState(308); match(T__4); } break; @@ -2268,18 +2292,18 @@ public class KickCParser extends Parser { _localctx = new TypeSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(305); + setState(310); match(SIMPLETYPE); } break; - case T__30: + case T__32: { _localctx = new TypeSignedSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(306); - match(T__30); - setState(307); + setState(311); + match(T__32); + setState(312); match(SIMPLETYPE); } break; @@ -2287,67 +2311,67 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(323); + setState(328); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,35,_ctx); + _alt = getInterpreter().adaptivePredict(_input,36,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(321); + setState(326); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: { _localctx = new TypePtrContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(310); + setState(315); if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(311); - match(T__31); + setState(316); + match(T__33); } break; case 2: { _localctx = new TypeArrayContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(312); + setState(317); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(313); - match(T__32); - setState(315); + setState(318); + match(T__34); + setState(320); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__31) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__45) | (1L << T__46))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (STRING - 71)) | (1L << (CHAR - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__33) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__47) | (1L << T__48))) != 0) || ((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (BOOLEAN - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 0)) { { - setState(314); + setState(319); expr(0); } } - setState(317); - match(T__33); + setState(322); + match(T__35); } break; case 3: { _localctx = new TypeProcedureContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(318); + setState(323); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(319); + setState(324); match(T__3); - setState(320); + setState(325); match(T__4); } break; } } } - setState(325); + setState(330); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,35,_ctx); + _alt = getInterpreter().adaptivePredict(_input,36,_ctx); } } } @@ -2722,20 +2746,20 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(366); + setState(371); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: { _localctx = new ExprParContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(327); + setState(332); match(T__3); - setState(328); + setState(333); expr(0); - setState(329); + setState(334); match(T__4); } break; @@ -2744,21 +2768,21 @@ public class KickCParser extends Parser { _localctx = new ExprCallContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(331); + setState(336); match(NAME); - setState(332); + setState(337); match(T__3); - setState(334); + setState(339); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__31) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__45) | (1L << T__46))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (STRING - 71)) | (1L << (CHAR - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__3) | (1L << T__5) | (1L << T__33) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__47) | (1L << T__48))) != 0) || ((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (STRING - 73)) | (1L << (CHAR - 73)) | (1L << (BOOLEAN - 73)) | (1L << (NUMBER - 73)) | (1L << (NAME - 73)))) != 0)) { { - setState(333); + setState(338); parameterList(); } } - setState(336); + setState(341); match(T__4); } break; @@ -2767,13 +2791,13 @@ public class KickCParser extends Parser { _localctx = new ExprCastContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(337); + setState(342); match(T__3); - setState(338); + setState(343); typeDecl(0); - setState(339); + setState(344); match(T__4); - setState(340); + setState(345); expr(23); } break; @@ -2782,9 +2806,9 @@ public class KickCParser extends Parser { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(342); + setState(347); _la = _input.LA(1); - if ( !(_la==T__34 || _la==T__35) ) { + if ( !(_la==T__36 || _la==T__37) ) { _errHandler.recoverInline(this); } else { @@ -2792,7 +2816,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(343); + setState(348); expr(22); } break; @@ -2801,9 +2825,9 @@ public class KickCParser extends Parser { _localctx = new ExprPtrContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(344); - match(T__31); - setState(345); + setState(349); + match(T__33); + setState(350); expr(20); } break; @@ -2812,9 +2836,9 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(346); + setState(351); _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))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2822,7 +2846,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(347); + setState(352); expr(19); } break; @@ -2831,9 +2855,9 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(348); + setState(353); _la = _input.LA(1); - if ( !(_la==T__45 || _la==T__46) ) { + if ( !(_la==T__47 || _la==T__48) ) { _errHandler.recoverInline(this); } else { @@ -2841,7 +2865,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(349); + setState(354); expr(15); } break; @@ -2850,27 +2874,27 @@ public class KickCParser extends Parser { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(350); + setState(355); match(T__5); - setState(351); - expr(0); setState(356); + expr(0); + setState(361); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__8) { { { - setState(352); + setState(357); match(T__8); - setState(353); + setState(358); expr(0); } } - setState(358); + setState(363); _errHandler.sync(this); _la = _input.LA(1); } - setState(359); + setState(364); match(T__6); } break; @@ -2879,7 +2903,7 @@ public class KickCParser extends Parser { _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(361); + setState(366); match(NAME); } break; @@ -2888,7 +2912,7 @@ public class KickCParser extends Parser { _localctx = new ExprNumberContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(362); + setState(367); match(NUMBER); } break; @@ -2897,7 +2921,7 @@ public class KickCParser extends Parser { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(363); + setState(368); match(STRING); } break; @@ -2906,7 +2930,7 @@ public class KickCParser extends Parser { _localctx = new ExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(364); + setState(369); match(CHAR); } break; @@ -2915,32 +2939,32 @@ public class KickCParser extends Parser { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(365); + setState(370); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(410); + setState(415); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,40,_ctx); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(408); + setState(413); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(368); + setState(373); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(369); + setState(374); _la = _input.LA(1); - if ( !(_la==T__41 || _la==T__42) ) { + if ( !(_la==T__43 || _la==T__44) ) { _errHandler.recoverInline(this); } else { @@ -2948,7 +2972,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(370); + setState(375); expr(19); } break; @@ -2956,11 +2980,11 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(371); + setState(376); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(372); + setState(377); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__31) | (1L << T__43) | (1L << T__44))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__33) | (1L << T__45) | (1L << T__46))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2968,7 +2992,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(373); + setState(378); expr(18); } break; @@ -2976,11 +3000,11 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(374); + setState(379); if (!(precpred(_ctx, 16))) throw new FailedPredicateException(this, "precpred(_ctx, 16)"); - setState(375); + setState(380); _la = _input.LA(1); - if ( !(_la==T__36 || _la==T__37) ) { + if ( !(_la==T__38 || _la==T__39) ) { _errHandler.recoverInline(this); } else { @@ -2988,7 +3012,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(376); + setState(381); expr(17); } break; @@ -2996,11 +3020,11 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(377); + setState(382); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); - setState(378); + setState(383); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__50))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -3008,7 +3032,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(379); + setState(384); expr(15); } break; @@ -3016,13 +3040,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(380); + setState(385); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(381); - match(T__39); + setState(386); + match(T__41); } - setState(382); + setState(387); expr(14); } break; @@ -3030,13 +3054,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(383); + setState(388); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(384); - match(T__51); + setState(389); + match(T__53); } - setState(385); + setState(390); expr(13); } break; @@ -3044,13 +3068,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(386); + setState(391); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(387); - match(T__52); + setState(392); + match(T__54); } - setState(388); + setState(393); expr(12); } break; @@ -3058,13 +3082,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(389); + setState(394); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(390); - match(T__53); + setState(395); + match(T__55); } - setState(391); + setState(396); expr(11); } break; @@ -3072,13 +3096,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(392); + setState(397); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); { - setState(393); - match(T__54); + setState(398); + match(T__56); } - setState(394); + setState(399); expr(10); } break; @@ -3086,11 +3110,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(395); + setState(400); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(396); + setState(401); match(T__1); - setState(397); + setState(402); expr(8); } break; @@ -3098,11 +3122,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(398); + setState(403); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(399); + setState(404); _la = _input.LA(1); - if ( !(((((_la - 56)) & ~0x3f) == 0 && ((1L << (_la - 56)) & ((1L << (T__55 - 56)) | (1L << (T__56 - 56)) | (1L << (T__57 - 56)) | (1L << (T__58 - 56)) | (1L << (T__59 - 56)) | (1L << (T__60 - 56)) | (1L << (T__61 - 56)) | (1L << (T__62 - 56)) | (1L << (T__63 - 56)) | (1L << (T__64 - 56)))) != 0)) ) { + if ( !(((((_la - 58)) & ~0x3f) == 0 && ((1L << (_la - 58)) & ((1L << (T__57 - 58)) | (1L << (T__58 - 58)) | (1L << (T__59 - 58)) | (1L << (T__60 - 58)) | (1L << (T__61 - 58)) | (1L << (T__62 - 58)) | (1L << (T__63 - 58)) | (1L << (T__64 - 58)) | (1L << (T__65 - 58)) | (1L << (T__66 - 58)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -3110,7 +3134,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(400); + setState(405); expr(7); } break; @@ -3118,25 +3142,25 @@ public class KickCParser extends Parser { { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(401); + setState(406); if (!(precpred(_ctx, 24))) throw new FailedPredicateException(this, "precpred(_ctx, 24)"); - setState(402); - match(T__32); - setState(403); + setState(407); + match(T__34); + setState(408); expr(0); - setState(404); - match(T__33); + setState(409); + match(T__35); } break; case 13: { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(406); + setState(411); if (!(precpred(_ctx, 21))) throw new FailedPredicateException(this, "precpred(_ctx, 21)"); - setState(407); + setState(412); _la = _input.LA(1); - if ( !(_la==T__34 || _la==T__35) ) { + if ( !(_la==T__36 || _la==T__37) ) { _errHandler.recoverInline(this); } else { @@ -3149,9 +3173,9 @@ public class KickCParser extends Parser { } } } - setState(412); + setState(417); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,40,_ctx); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); } } } @@ -3199,21 +3223,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(413); - expr(0); setState(418); + expr(0); + setState(423); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__8) { { { - setState(414); + setState(419); match(T__8); - setState(415); + setState(420); expr(0); } } - setState(420); + setState(425); _errHandler.sync(this); _la = _input.LA(1); } @@ -3263,17 +3287,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(424); + setState(429); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 39)) & ~0x3f) == 0 && ((1L << (_la - 39)) & ((1L << (T__38 - 39)) | (1L << (T__65 - 39)) | (1L << (MNEMONIC - 39)) | (1L << (NAME - 39)))) != 0)) { + while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (T__40 - 41)) | (1L << (T__67 - 41)) | (1L << (MNEMONIC - 41)) | (1L << (NAME - 41)))) != 0)) { { { - setState(421); + setState(426); asmLine(); } } - setState(426); + setState(431); _errHandler.sync(this); _la = _input.LA(1); } @@ -3323,28 +3347,28 @@ public class KickCParser extends Parser { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); enterRule(_localctx, 44, RULE_asmLine); try { - setState(430); + setState(435); _errHandler.sync(this); switch (_input.LA(1)) { - case T__38: + case T__40: case NAME: enterOuterAlt(_localctx, 1); { - setState(427); + setState(432); asmLabel(); } break; case MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(428); + setState(433); asmInstruction(); } break; - case T__65: + case T__67: enterOuterAlt(_localctx, 3); { - setState(429); + setState(434); asmBytes(); } break; @@ -3414,36 +3438,36 @@ public class KickCParser extends Parser { enterRule(_localctx, 46, RULE_asmLabel); int _la; try { - setState(439); + setState(444); _errHandler.sync(this); switch (_input.LA(1)) { case NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(432); + setState(437); match(NAME); - setState(433); + setState(438); match(T__12); } break; - case T__38: + case T__40: _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(434); - match(T__38); - setState(436); + setState(439); + match(T__40); + setState(441); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(435); + setState(440); match(NAME); } } - setState(438); + setState(443); match(T__12); } break; @@ -3492,14 +3516,14 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(441); + setState(446); match(MNEMONIC); - setState(443); + setState(448); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { case 1: { - setState(442); + setState(447); asmParamMode(); } break; @@ -3550,23 +3574,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(445); - match(T__65); - setState(446); - asmExpr(0); + setState(450); + match(T__67); setState(451); + asmExpr(0); + setState(456); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__8) { { { - setState(447); + setState(452); match(T__8); - setState(448); + setState(453); asmExpr(0); } } - setState(453); + setState(458); _errHandler.sync(this); _la = _input.LA(1); } @@ -3716,14 +3740,14 @@ public class KickCParser extends Parser { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); enterRule(_localctx, 52, RULE_asmParamMode); try { - setState(477); + setState(482); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(454); + setState(459); asmExpr(0); } break; @@ -3731,9 +3755,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(455); - match(T__66); - setState(456); + setState(460); + match(T__68); + setState(461); asmExpr(0); } break; @@ -3741,11 +3765,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(457); + setState(462); asmExpr(0); - setState(458); + setState(463); match(T__8); - setState(459); + setState(464); match(NAME); } break; @@ -3753,15 +3777,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(461); + setState(466); match(T__3); - setState(462); + setState(467); asmExpr(0); - setState(463); + setState(468); match(T__4); - setState(464); + setState(469); match(T__8); - setState(465); + setState(470); match(NAME); } break; @@ -3769,15 +3793,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(467); + setState(472); match(T__3); - setState(468); + setState(473); asmExpr(0); - setState(469); + setState(474); match(T__8); - setState(470); + setState(475); match(NAME); - setState(471); + setState(476); match(T__4); } break; @@ -3785,11 +3809,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(473); + setState(478); match(T__3); - setState(474); + setState(479); asmExpr(0); - setState(475); + setState(480); match(T__4); } break; @@ -3979,34 +4003,34 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(493); + setState(498); _errHandler.sync(this); switch (_input.LA(1)) { - case T__32: + case T__34: { _localctx = new AsmExprParContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(480); - match(T__32); - setState(481); + setState(485); + match(T__34); + setState(486); asmExpr(0); - setState(482); - match(T__33); + setState(487); + match(T__35); } break; - case T__36: - case T__37: - case T__45: - case T__46: + case T__38: + case T__39: + case T__47: + case T__48: { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(484); + setState(489); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__36) | (1L << T__37) | (1L << T__45) | (1L << T__46))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__38) | (1L << T__39) | (1L << T__47) | (1L << T__48))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -4014,7 +4038,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(485); + setState(490); asmExpr(8); } break; @@ -4023,7 +4047,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(486); + setState(491); match(NAME); } break; @@ -4032,7 +4056,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(487); + setState(492); match(ASMREL); } break; @@ -4041,11 +4065,11 @@ public class KickCParser extends Parser { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(488); + setState(493); match(T__5); - setState(489); + setState(494); match(NAME); - setState(490); + setState(495); match(T__6); } break; @@ -4054,7 +4078,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(491); + setState(496); match(NUMBER); } break; @@ -4063,7 +4087,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(492); + setState(497); match(CHAR); } break; @@ -4071,26 +4095,26 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(506); + setState(511); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,51,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(504); + setState(509); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(495); + setState(500); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(496); + setState(501); _la = _input.LA(1); - if ( !(_la==T__41 || _la==T__42) ) { + if ( !(_la==T__43 || _la==T__44) ) { _errHandler.recoverInline(this); } else { @@ -4098,7 +4122,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(497); + setState(502); asmExpr(10); } break; @@ -4106,11 +4130,11 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(498); + setState(503); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(499); + setState(504); _la = _input.LA(1); - if ( !(_la==T__31 || _la==T__43) ) { + if ( !(_la==T__33 || _la==T__45) ) { _errHandler.recoverInline(this); } else { @@ -4118,7 +4142,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(500); + setState(505); asmExpr(8); } break; @@ -4126,11 +4150,11 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(501); + setState(506); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(502); + setState(507); _la = _input.LA(1); - if ( !(_la==T__36 || _la==T__37) ) { + if ( !(_la==T__38 || _la==T__39) ) { _errHandler.recoverInline(this); } else { @@ -4138,16 +4162,16 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(503); + setState(508); asmExpr(7); } break; } } } - setState(508); + setState(513); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,51,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); } } } @@ -4228,7 +4252,7 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3Y\u0200\4\2\t\2\4"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3[\u0205\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"+ @@ -4242,192 +4266,194 @@ public class KickCParser extends Parser { "\f\3\f\3\f\3\f\3\f\3\f\5\f\u00a2\n\f\5\f\u00a4\n\f\3\r\3\r\3\r\7\r\u00a9"+ "\n\r\f\r\16\r\u00ac\13\r\3\16\7\16\u00af\n\16\f\16\16\16\u00b2\13\16\3"+ "\16\3\16\7\16\u00b6\n\16\f\16\16\16\u00b9\13\16\3\16\3\16\3\17\3\17\3"+ - "\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\5\17\u00c9\n\17\3\20"+ - "\6\20\u00cc\n\20\r\20\16\20\u00cd\3\21\3\21\3\21\5\21\u00d3\n\21\3\21"+ - "\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u00e0\n\21\3\21"+ - "\5\21\u00e3\n\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u00ec\n\21\3"+ - "\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u00f7\n\21\3\21\3\21"+ - "\3\21\5\21\u00fc\n\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u0104\n\21\3"+ - "\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u010d\n\21\3\22\7\22\u0110\n\22"+ - "\f\22\16\22\u0113\13\22\3\22\5\22\u0116\n\22\3\22\7\22\u0119\n\22\f\22"+ - "\16\22\u011c\13\22\3\22\3\22\3\22\5\22\u0121\n\22\3\23\3\23\3\23\3\23"+ - "\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u012d\n\23\3\24\3\24\3\24\3\24\3\24"+ - "\3\24\3\24\3\24\5\24\u0137\n\24\3\24\3\24\3\24\3\24\3\24\5\24\u013e\n"+ - "\24\3\24\3\24\3\24\3\24\7\24\u0144\n\24\f\24\16\24\u0147\13\24\3\25\3"+ - "\25\3\25\3\25\3\25\3\25\3\25\3\25\5\25\u0151\n\25\3\25\3\25\3\25\3\25"+ + "\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\5\17\u00cc"+ + "\n\17\5\17\u00ce\n\17\3\20\6\20\u00d1\n\20\r\20\16\20\u00d2\3\21\3\21"+ + "\3\21\5\21\u00d8\n\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+ + "\3\21\5\21\u00e5\n\21\3\21\5\21\u00e8\n\21\3\21\3\21\3\21\3\21\3\21\3"+ + "\21\3\21\5\21\u00f1\n\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+ + "\5\21\u00fc\n\21\3\21\3\21\3\21\5\21\u0101\n\21\3\21\3\21\3\21\3\21\3"+ + "\21\3\21\5\21\u0109\n\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u0112"+ + "\n\21\3\22\7\22\u0115\n\22\f\22\16\22\u0118\13\22\3\22\5\22\u011b\n\22"+ + "\3\22\7\22\u011e\n\22\f\22\16\22\u0121\13\22\3\22\3\22\3\22\5\22\u0126"+ + "\n\22\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u0132\n\23"+ + "\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u013c\n\24\3\24\3\24\3\24"+ + "\3\24\3\24\5\24\u0143\n\24\3\24\3\24\3\24\3\24\7\24\u0149\n\24\f\24\16"+ + "\24\u014c\13\24\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\5\25\u0156\n\25"+ "\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25"+ - "\7\25\u0165\n\25\f\25\16\25\u0168\13\25\3\25\3\25\3\25\3\25\3\25\3\25"+ - "\3\25\5\25\u0171\n\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25"+ + "\3\25\3\25\3\25\3\25\7\25\u016a\n\25\f\25\16\25\u016d\13\25\3\25\3\25"+ + "\3\25\3\25\3\25\3\25\3\25\5\25\u0176\n\25\3\25\3\25\3\25\3\25\3\25\3\25"+ "\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25"+ "\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25"+ - "\3\25\3\25\7\25\u019b\n\25\f\25\16\25\u019e\13\25\3\26\3\26\3\26\7\26"+ - "\u01a3\n\26\f\26\16\26\u01a6\13\26\3\27\7\27\u01a9\n\27\f\27\16\27\u01ac"+ - "\13\27\3\30\3\30\3\30\5\30\u01b1\n\30\3\31\3\31\3\31\3\31\5\31\u01b7\n"+ - "\31\3\31\5\31\u01ba\n\31\3\32\3\32\5\32\u01be\n\32\3\33\3\33\3\33\3\33"+ - "\7\33\u01c4\n\33\f\33\16\33\u01c7\13\33\3\34\3\34\3\34\3\34\3\34\3\34"+ - "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+ - "\3\34\3\34\3\34\5\34\u01e0\n\34\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35"+ - "\3\35\3\35\3\35\3\35\3\35\3\35\5\35\u01f0\n\35\3\35\3\35\3\35\3\35\3\35"+ - "\3\35\3\35\3\35\3\35\7\35\u01fb\n\35\f\35\16\35\u01fe\13\35\3\35\2\5&"+ - "(8\36\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\60\61\3\2,-\4\2\"\"./\3\2\'(\3\2\60\65\3\2:C\4\2\'("+ - "\60\61\4\2\"\"..\2\u024b\2:\3\2\2\2\4>\3\2\2\2\6D\3\2\2\2\bG\3\2\2\2\n"+ - "K\3\2\2\2\fR\3\2\2\2\16W\3\2\2\2\20k\3\2\2\2\22\u0081\3\2\2\2\24\u0087"+ - "\3\2\2\2\26\u00a3\3\2\2\2\30\u00a5\3\2\2\2\32\u00b0\3\2\2\2\34\u00c8\3"+ - "\2\2\2\36\u00cb\3\2\2\2 \u010c\3\2\2\2\"\u0111\3\2\2\2$\u012c\3\2\2\2"+ - "&\u0136\3\2\2\2(\u0170\3\2\2\2*\u019f\3\2\2\2,\u01aa\3\2\2\2.\u01b0\3"+ - "\2\2\2\60\u01b9\3\2\2\2\62\u01bb\3\2\2\2\64\u01bf\3\2\2\2\66\u01df\3\2"+ - "\2\28\u01ef\3\2\2\2:;\5\6\4\2;<\5\n\6\2<=\7\2\2\3=\3\3\2\2\2>?\5,\27\2"+ - "?@\7\2\2\3@\5\3\2\2\2AC\5\b\5\2BA\3\2\2\2CF\3\2\2\2DB\3\2\2\2DE\3\2\2"+ - "\2E\7\3\2\2\2FD\3\2\2\2GH\7\3\2\2HI\7I\2\2I\t\3\2\2\2JL\5\f\7\2KJ\3\2"+ - "\2\2LM\3\2\2\2MK\3\2\2\2MN\3\2\2\2N\13\3\2\2\2OS\5\16\b\2PS\5\20\t\2Q"+ - "S\5\22\n\2RO\3\2\2\2RP\3\2\2\2RQ\3\2\2\2S\r\3\2\2\2TV\5\34\17\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^\5&\24\2[]\5\34"+ - "\17\2\\[\3\2\2\2]`\3\2\2\2^\\\3\2\2\2^_\3\2\2\2_a\3\2\2\2`^\3\2\2\2ad"+ - "\7U\2\2bc\7\4\2\2ce\5(\25\2db\3\2\2\2de\3\2\2\2ef\3\2\2\2fg\7\5\2\2g\17"+ - "\3\2\2\2hj\5\34\17\2ih\3\2\2\2jm\3\2\2\2ki\3\2\2\2kl\3\2\2\2ln\3\2\2\2"+ - "mk\3\2\2\2nr\5&\24\2oq\5\34\17\2po\3\2\2\2qt\3\2\2\2rp\3\2\2\2rs\3\2\2"+ - "\2su\3\2\2\2tr\3\2\2\2uv\7U\2\2vx\7\6\2\2wy\5\30\r\2xw\3\2\2\2xy\3\2\2"+ - "\2yz\3\2\2\2z{\7\7\2\2{}\7\b\2\2|~\5\36\20\2}|\3\2\2\2}~\3\2\2\2~\177"+ - "\3\2\2\2\177\u0080\7\t\2\2\u0080\21\3\2\2\2\u0081\u0083\7\n\2\2\u0082"+ - "\u0084\5\24\13\2\u0083\u0082\3\2\2\2\u0083\u0084\3\2\2\2\u0084\u0085\3"+ - "\2\2\2\u0085\u0086\7G\2\2\u0086\23\3\2\2\2\u0087\u0088\7\6\2\2\u0088\u008d"+ - "\5\26\f\2\u0089\u008a\7\13\2\2\u008a\u008c\5\26\f\2\u008b\u0089\3\2\2"+ - "\2\u008c\u008f\3\2\2\2\u008d\u008b\3\2\2\2\u008d\u008e\3\2\2\2\u008e\u0090"+ - "\3\2\2\2\u008f\u008d\3\2\2\2\u0090\u0091\7\7\2\2\u0091\25\3\2\2\2\u0092"+ - "\u0093\7\f\2\2\u0093\u00a4\7I\2\2\u0094\u0095\7\r\2\2\u0095\u00a4\7I\2"+ - "\2\u0096\u0097\7\16\2\2\u0097\u0098\7U\2\2\u0098\u0099\7\17\2\2\u0099"+ - "\u00a4\5(\25\2\u009a\u009b\7\20\2\2\u009b\u00a4\5(\25\2\u009c\u009d\7"+ - "\21\2\2\u009d\u00a4\5(\25\2\u009e\u00a1\7\22\2\2\u009f\u00a2\7\23\2\2"+ - "\u00a0\u00a2\5(\25\2\u00a1\u009f\3\2\2\2\u00a1\u00a0\3\2\2\2\u00a2\u00a4"+ - "\3\2\2\2\u00a3\u0092\3\2\2\2\u00a3\u0094\3\2\2\2\u00a3\u0096\3\2\2\2\u00a3"+ - "\u009a\3\2\2\2\u00a3\u009c\3\2\2\2\u00a3\u009e\3\2\2\2\u00a4\27\3\2\2"+ - "\2\u00a5\u00aa\5\32\16\2\u00a6\u00a7\7\13\2\2\u00a7\u00a9\5\32\16\2\u00a8"+ - "\u00a6\3\2\2\2\u00a9\u00ac\3\2\2\2\u00aa\u00a8\3\2\2\2\u00aa\u00ab\3\2"+ - "\2\2\u00ab\31\3\2\2\2\u00ac\u00aa\3\2\2\2\u00ad\u00af\5\34\17\2\u00ae"+ - "\u00ad\3\2\2\2\u00af\u00b2\3\2\2\2\u00b0\u00ae\3\2\2\2\u00b0\u00b1\3\2"+ - "\2\2\u00b1\u00b3\3\2\2\2\u00b2\u00b0\3\2\2\2\u00b3\u00b7\5&\24\2\u00b4"+ - "\u00b6\5\34\17\2\u00b5\u00b4\3\2\2\2\u00b6\u00b9\3\2\2\2\u00b7\u00b5\3"+ - "\2\2\2\u00b7\u00b8\3\2\2\2\u00b8\u00ba\3\2\2\2\u00b9\u00b7\3\2\2\2\u00ba"+ - "\u00bb\7U\2\2\u00bb\33\3\2\2\2\u00bc\u00c9\7\24\2\2\u00bd\u00c9\7\25\2"+ - "\2\u00be\u00bf\7\26\2\2\u00bf\u00c0\7\6\2\2\u00c0\u00c1\7L\2\2\u00c1\u00c9"+ - "\7\7\2\2\u00c2\u00c3\7\27\2\2\u00c3\u00c4\7\6\2\2\u00c4\u00c5\7U\2\2\u00c5"+ - "\u00c9\7\7\2\2\u00c6\u00c9\7\23\2\2\u00c7\u00c9\7\30\2\2\u00c8\u00bc\3"+ - "\2\2\2\u00c8\u00bd\3\2\2\2\u00c8\u00be\3\2\2\2\u00c8\u00c2\3\2\2\2\u00c8"+ - "\u00c6\3\2\2\2\u00c8\u00c7\3\2\2\2\u00c9\35\3\2\2\2\u00ca\u00cc\5 \21"+ - "\2\u00cb\u00ca\3\2\2\2\u00cc\u00cd\3\2\2\2\u00cd\u00cb\3\2\2\2\u00cd\u00ce"+ - "\3\2\2\2\u00ce\37\3\2\2\2\u00cf\u010d\5\16\b\2\u00d0\u00d2\7\b\2\2\u00d1"+ - "\u00d3\5\36\20\2\u00d2\u00d1\3\2\2\2\u00d2\u00d3\3\2\2\2\u00d3\u00d4\3"+ - "\2\2\2\u00d4\u010d\7\t\2\2\u00d5\u00d6\5(\25\2\u00d6\u00d7\7\5\2\2\u00d7"+ - "\u010d\3\2\2\2\u00d8\u00d9\7\31\2\2\u00d9\u00da\7\6\2\2\u00da\u00db\5"+ - "(\25\2\u00db\u00dc\7\7\2\2\u00dc\u00df\5 \21\2\u00dd\u00de\7\32\2\2\u00de"+ - "\u00e0\5 \21\2\u00df\u00dd\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0\u010d\3\2"+ - "\2\2\u00e1\u00e3\5\34\17\2\u00e2\u00e1\3\2\2\2\u00e2\u00e3\3\2\2\2\u00e3"+ - "\u00e4\3\2\2\2\u00e4\u00e5\7\33\2\2\u00e5\u00e6\7\6\2\2\u00e6\u00e7\5"+ - "(\25\2\u00e7\u00e8\7\7\2\2\u00e8\u00e9\5 \21\2\u00e9\u010d\3\2\2\2\u00ea"+ - "\u00ec\5\34\17\2\u00eb\u00ea\3\2\2\2\u00eb\u00ec\3\2\2\2\u00ec\u00ed\3"+ - "\2\2\2\u00ed\u00ee\7\34\2\2\u00ee\u00ef\5 \21\2\u00ef\u00f0\7\33\2\2\u00f0"+ - "\u00f1\7\6\2\2\u00f1\u00f2\5(\25\2\u00f2\u00f3\7\7\2\2\u00f3\u00f4\7\5"+ - "\2\2\u00f4\u010d\3\2\2\2\u00f5\u00f7\5\34\17\2\u00f6\u00f5\3\2\2\2\u00f6"+ - "\u00f7\3\2\2\2\u00f7\u00f8\3\2\2\2\u00f8\u00f9\7\35\2\2\u00f9\u00fb\7"+ - "\6\2\2\u00fa\u00fc\5\"\22\2\u00fb\u00fa\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc"+ - "\u00fd\3\2\2\2\u00fd\u00fe\5$\23\2\u00fe\u00ff\7\7\2\2\u00ff\u0100\5 "+ - "\21\2\u0100\u010d\3\2\2\2\u0101\u0103\7\36\2\2\u0102\u0104\5(\25\2\u0103"+ - "\u0102\3\2\2\2\u0103\u0104\3\2\2\2\u0104\u0105\3\2\2\2\u0105\u010d\7\5"+ - "\2\2\u0106\u0107\7\37\2\2\u0107\u0108\7\b\2\2\u0108\u0109\5,\27\2\u0109"+ - "\u010a\7\t\2\2\u010a\u010d\3\2\2\2\u010b\u010d\5\22\n\2\u010c\u00cf\3"+ - "\2\2\2\u010c\u00d0\3\2\2\2\u010c\u00d5\3\2\2\2\u010c\u00d8\3\2\2\2\u010c"+ - "\u00e2\3\2\2\2\u010c\u00eb\3\2\2\2\u010c\u00f6\3\2\2\2\u010c\u0101\3\2"+ - "\2\2\u010c\u0106\3\2\2\2\u010c\u010b\3\2\2\2\u010d!\3\2\2\2\u010e\u0110"+ - "\5\34\17\2\u010f\u010e\3\2\2\2\u0110\u0113\3\2\2\2\u0111\u010f\3\2\2\2"+ - "\u0111\u0112\3\2\2\2\u0112\u0115\3\2\2\2\u0113\u0111\3\2\2\2\u0114\u0116"+ - "\5&\24\2\u0115\u0114\3\2\2\2\u0115\u0116\3\2\2\2\u0116\u011a\3\2\2\2\u0117"+ - "\u0119\5\34\17\2\u0118\u0117\3\2\2\2\u0119\u011c\3\2\2\2\u011a\u0118\3"+ - "\2\2\2\u011a\u011b\3\2\2\2\u011b\u011d\3\2\2\2\u011c\u011a\3\2\2\2\u011d"+ - "\u0120\7U\2\2\u011e\u011f\7\4\2\2\u011f\u0121\5(\25\2\u0120\u011e\3\2"+ - "\2\2\u0120\u0121\3\2\2\2\u0121#\3\2\2\2\u0122\u0123\7\5\2\2\u0123\u0124"+ - "\5(\25\2\u0124\u0125\7\5\2\2\u0125\u0126\5(\25\2\u0126\u012d\3\2\2\2\u0127"+ - "\u0128\7\17\2\2\u0128\u0129\5(\25\2\u0129\u012a\7 \2\2\u012a\u012b\5("+ - "\25\2\u012b\u012d\3\2\2\2\u012c\u0122\3\2\2\2\u012c\u0127\3\2\2\2\u012d"+ - "%\3\2\2\2\u012e\u012f\b\24\1\2\u012f\u0130\7\6\2\2\u0130\u0131\5&\24\2"+ - "\u0131\u0132\7\7\2\2\u0132\u0137\3\2\2\2\u0133\u0137\7H\2\2\u0134\u0135"+ - "\7!\2\2\u0135\u0137\7H\2\2\u0136\u012e\3\2\2\2\u0136\u0133\3\2\2\2\u0136"+ - "\u0134\3\2\2\2\u0137\u0145\3\2\2\2\u0138\u0139\f\5\2\2\u0139\u0144\7\""+ - "\2\2\u013a\u013b\f\4\2\2\u013b\u013d\7#\2\2\u013c\u013e\5(\25\2\u013d"+ - "\u013c\3\2\2\2\u013d\u013e\3\2\2\2\u013e\u013f\3\2\2\2\u013f\u0144\7$"+ - "\2\2\u0140\u0141\f\3\2\2\u0141\u0142\7\6\2\2\u0142\u0144\7\7\2\2\u0143"+ - "\u0138\3\2\2\2\u0143\u013a\3\2\2\2\u0143\u0140\3\2\2\2\u0144\u0147\3\2"+ - "\2\2\u0145\u0143\3\2\2\2\u0145\u0146\3\2\2\2\u0146\'\3\2\2\2\u0147\u0145"+ - "\3\2\2\2\u0148\u0149\b\25\1\2\u0149\u014a\7\6\2\2\u014a\u014b\5(\25\2"+ - "\u014b\u014c\7\7\2\2\u014c\u0171\3\2\2\2\u014d\u014e\7U\2\2\u014e\u0150"+ - "\7\6\2\2\u014f\u0151\5*\26\2\u0150\u014f\3\2\2\2\u0150\u0151\3\2\2\2\u0151"+ - "\u0152\3\2\2\2\u0152\u0171\7\7\2\2\u0153\u0154\7\6\2\2\u0154\u0155\5&"+ - "\24\2\u0155\u0156\7\7\2\2\u0156\u0157\5(\25\31\u0157\u0171\3\2\2\2\u0158"+ - "\u0159\t\2\2\2\u0159\u0171\5(\25\30\u015a\u015b\7\"\2\2\u015b\u0171\5"+ - "(\25\26\u015c\u015d\t\3\2\2\u015d\u0171\5(\25\25\u015e\u015f\t\4\2\2\u015f"+ - "\u0171\5(\25\21\u0160\u0161\7\b\2\2\u0161\u0166\5(\25\2\u0162\u0163\7"+ - "\13\2\2\u0163\u0165\5(\25\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\u0169\3\2\2\2\u0168\u0166\3\2"+ - "\2\2\u0169\u016a\7\t\2\2\u016a\u0171\3\2\2\2\u016b\u0171\7U\2\2\u016c"+ - "\u0171\7L\2\2\u016d\u0171\7I\2\2\u016e\u0171\7J\2\2\u016f\u0171\7K\2\2"+ - "\u0170\u0148\3\2\2\2\u0170\u014d\3\2\2\2\u0170\u0153\3\2\2\2\u0170\u0158"+ - "\3\2\2\2\u0170\u015a\3\2\2\2\u0170\u015c\3\2\2\2\u0170\u015e\3\2\2\2\u0170"+ - "\u0160\3\2\2\2\u0170\u016b\3\2\2\2\u0170\u016c\3\2\2\2\u0170\u016d\3\2"+ - "\2\2\u0170\u016e\3\2\2\2\u0170\u016f\3\2\2\2\u0171\u019c\3\2\2\2\u0172"+ - "\u0173\f\24\2\2\u0173\u0174\t\5\2\2\u0174\u019b\5(\25\25\u0175\u0176\f"+ - "\23\2\2\u0176\u0177\t\6\2\2\u0177\u019b\5(\25\24\u0178\u0179\f\22\2\2"+ - "\u0179\u017a\t\7\2\2\u017a\u019b\5(\25\23\u017b\u017c\f\20\2\2\u017c\u017d"+ - "\t\b\2\2\u017d\u019b\5(\25\21\u017e\u017f\f\17\2\2\u017f\u0180\7*\2\2"+ - "\u0180\u019b\5(\25\20\u0181\u0182\f\16\2\2\u0182\u0183\7\66\2\2\u0183"+ - "\u019b\5(\25\17\u0184\u0185\f\r\2\2\u0185\u0186\7\67\2\2\u0186\u019b\5"+ - "(\25\16\u0187\u0188\f\f\2\2\u0188\u0189\78\2\2\u0189\u019b\5(\25\r\u018a"+ - "\u018b\f\13\2\2\u018b\u018c\79\2\2\u018c\u019b\5(\25\f\u018d\u018e\f\n"+ - "\2\2\u018e\u018f\7\4\2\2\u018f\u019b\5(\25\n\u0190\u0191\f\t\2\2\u0191"+ - "\u0192\t\t\2\2\u0192\u019b\5(\25\t\u0193\u0194\f\32\2\2\u0194\u0195\7"+ - "#\2\2\u0195\u0196\5(\25\2\u0196\u0197\7$\2\2\u0197\u019b\3\2\2\2\u0198"+ - "\u0199\f\27\2\2\u0199\u019b\t\2\2\2\u019a\u0172\3\2\2\2\u019a\u0175\3"+ - "\2\2\2\u019a\u0178\3\2\2\2\u019a\u017b\3\2\2\2\u019a\u017e\3\2\2\2\u019a"+ - "\u0181\3\2\2\2\u019a\u0184\3\2\2\2\u019a\u0187\3\2\2\2\u019a\u018a\3\2"+ - "\2\2\u019a\u018d\3\2\2\2\u019a\u0190\3\2\2\2\u019a\u0193\3\2\2\2\u019a"+ - "\u0198\3\2\2\2\u019b\u019e\3\2\2\2\u019c\u019a\3\2\2\2\u019c\u019d\3\2"+ - "\2\2\u019d)\3\2\2\2\u019e\u019c\3\2\2\2\u019f\u01a4\5(\25\2\u01a0\u01a1"+ - "\7\13\2\2\u01a1\u01a3\5(\25\2\u01a2\u01a0\3\2\2\2\u01a3\u01a6\3\2\2\2"+ - "\u01a4\u01a2\3\2\2\2\u01a4\u01a5\3\2\2\2\u01a5+\3\2\2\2\u01a6\u01a4\3"+ - "\2\2\2\u01a7\u01a9\5.\30\2\u01a8\u01a7\3\2\2\2\u01a9\u01ac\3\2\2\2\u01aa"+ - "\u01a8\3\2\2\2\u01aa\u01ab\3\2\2\2\u01ab-\3\2\2\2\u01ac\u01aa\3\2\2\2"+ - "\u01ad\u01b1\5\60\31\2\u01ae\u01b1\5\62\32\2\u01af\u01b1\5\64\33\2\u01b0"+ - "\u01ad\3\2\2\2\u01b0\u01ae\3\2\2\2\u01b0\u01af\3\2\2\2\u01b1/\3\2\2\2"+ - "\u01b2\u01b3\7U\2\2\u01b3\u01ba\7\17\2\2\u01b4\u01b6\7)\2\2\u01b5\u01b7"+ - "\7U\2\2\u01b6\u01b5\3\2\2\2\u01b6\u01b7\3\2\2\2\u01b7\u01b8\3\2\2\2\u01b8"+ - "\u01ba\7\17\2\2\u01b9\u01b2\3\2\2\2\u01b9\u01b4\3\2\2\2\u01ba\61\3\2\2"+ - "\2\u01bb\u01bd\7F\2\2\u01bc\u01be\5\66\34\2\u01bd\u01bc\3\2\2\2\u01bd"+ - "\u01be\3\2\2\2\u01be\63\3\2\2\2\u01bf\u01c0\7D\2\2\u01c0\u01c5\58\35\2"+ - "\u01c1\u01c2\7\13\2\2\u01c2\u01c4\58\35\2\u01c3\u01c1\3\2\2\2\u01c4\u01c7"+ - "\3\2\2\2\u01c5\u01c3\3\2\2\2\u01c5\u01c6\3\2\2\2\u01c6\65\3\2\2\2\u01c7"+ - "\u01c5\3\2\2\2\u01c8\u01e0\58\35\2\u01c9\u01ca\7E\2\2\u01ca\u01e0\58\35"+ - "\2\u01cb\u01cc\58\35\2\u01cc\u01cd\7\13\2\2\u01cd\u01ce\7U\2\2\u01ce\u01e0"+ - "\3\2\2\2\u01cf\u01d0\7\6\2\2\u01d0\u01d1\58\35\2\u01d1\u01d2\7\7\2\2\u01d2"+ - "\u01d3\7\13\2\2\u01d3\u01d4\7U\2\2\u01d4\u01e0\3\2\2\2\u01d5\u01d6\7\6"+ - "\2\2\u01d6\u01d7\58\35\2\u01d7\u01d8\7\13\2\2\u01d8\u01d9\7U\2\2\u01d9"+ - "\u01da\7\7\2\2\u01da\u01e0\3\2\2\2\u01db\u01dc\7\6\2\2\u01dc\u01dd\58"+ - "\35\2\u01dd\u01de\7\7\2\2\u01de\u01e0\3\2\2\2\u01df\u01c8\3\2\2\2\u01df"+ - "\u01c9\3\2\2\2\u01df\u01cb\3\2\2\2\u01df\u01cf\3\2\2\2\u01df\u01d5\3\2"+ - "\2\2\u01df\u01db\3\2\2\2\u01e0\67\3\2\2\2\u01e1\u01e2\b\35\1\2\u01e2\u01e3"+ - "\7#\2\2\u01e3\u01e4\58\35\2\u01e4\u01e5\7$\2\2\u01e5\u01f0\3\2\2\2\u01e6"+ - "\u01e7\t\n\2\2\u01e7\u01f0\58\35\n\u01e8\u01f0\7U\2\2\u01e9\u01f0\7V\2"+ - "\2\u01ea\u01eb\7\b\2\2\u01eb\u01ec\7U\2\2\u01ec\u01f0\7\t\2\2\u01ed\u01f0"+ - "\7L\2\2\u01ee\u01f0\7J\2\2\u01ef\u01e1\3\2\2\2\u01ef\u01e6\3\2\2\2\u01ef"+ - "\u01e8\3\2\2\2\u01ef\u01e9\3\2\2\2\u01ef\u01ea\3\2\2\2\u01ef\u01ed\3\2"+ - "\2\2\u01ef\u01ee\3\2\2\2\u01f0\u01fc\3\2\2\2\u01f1\u01f2\f\13\2\2\u01f2"+ - "\u01f3\t\5\2\2\u01f3\u01fb\58\35\f\u01f4\u01f5\f\t\2\2\u01f5\u01f6\t\13"+ - "\2\2\u01f6\u01fb\58\35\n\u01f7\u01f8\f\b\2\2\u01f8\u01f9\t\7\2\2\u01f9"+ - "\u01fb\58\35\t\u01fa\u01f1\3\2\2\2\u01fa\u01f4\3\2\2\2\u01fa\u01f7\3\2"+ - "\2\2\u01fb\u01fe\3\2\2\2\u01fc\u01fa\3\2\2\2\u01fc\u01fd\3\2\2\2\u01fd"+ - "9\3\2\2\2\u01fe\u01fc\3\2\2\2\66DMRW^dkrx}\u0083\u008d\u00a1\u00a3\u00aa"+ - "\u00b0\u00b7\u00c8\u00cd\u00d2\u00df\u00e2\u00eb\u00f6\u00fb\u0103\u010c"+ - "\u0111\u0115\u011a\u0120\u012c\u0136\u013d\u0143\u0145\u0150\u0166\u0170"+ - "\u019a\u019c\u01a4\u01aa\u01b0\u01b6\u01b9\u01bd\u01c5\u01df\u01ef\u01fa"+ - "\u01fc"; + "\3\25\3\25\3\25\3\25\3\25\3\25\7\25\u01a0\n\25\f\25\16\25\u01a3\13\25"+ + "\3\26\3\26\3\26\7\26\u01a8\n\26\f\26\16\26\u01ab\13\26\3\27\7\27\u01ae"+ + "\n\27\f\27\16\27\u01b1\13\27\3\30\3\30\3\30\5\30\u01b6\n\30\3\31\3\31"+ + "\3\31\3\31\5\31\u01bc\n\31\3\31\5\31\u01bf\n\31\3\32\3\32\5\32\u01c3\n"+ + "\32\3\33\3\33\3\33\3\33\7\33\u01c9\n\33\f\33\16\33\u01cc\13\33\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\5\34\u01e5\n\34\3\35\3\35\3\35"+ + "\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\5\35\u01f5\n\35"+ + "\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\7\35\u0200\n\35\f\35\16"+ + "\35\u0203\13\35\3\35\2\5&(8\36\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36"+ + " \"$&(*,.\60\62\64\668\2\r\3\2\31\32\3\2\'(\3\2)-\3\2\62\63\3\2./\4\2"+ + "$$\60\61\3\2)*\3\2\62\67\3\2\3\2\2\2\6D\3\2\2\2\bG\3\2\2\2\nK\3\2\2\2\fR\3\2\2\2\16W\3\2\2"+ + "\2\20k\3\2\2\2\22\u0081\3\2\2\2\24\u0087\3\2\2\2\26\u00a3\3\2\2\2\30\u00a5"+ + "\3\2\2\2\32\u00b0\3\2\2\2\34\u00cd\3\2\2\2\36\u00d0\3\2\2\2 \u0111\3\2"+ + "\2\2\"\u0116\3\2\2\2$\u0131\3\2\2\2&\u013b\3\2\2\2(\u0175\3\2\2\2*\u01a4"+ + "\3\2\2\2,\u01af\3\2\2\2.\u01b5\3\2\2\2\60\u01be\3\2\2\2\62\u01c0\3\2\2"+ + "\2\64\u01c4\3\2\2\2\66\u01e4\3\2\2\28\u01f4\3\2\2\2:;\5\6\4\2;<\5\n\6"+ + "\2<=\7\2\2\3=\3\3\2\2\2>?\5,\27\2?@\7\2\2\3@\5\3\2\2\2AC\5\b\5\2BA\3\2"+ + "\2\2CF\3\2\2\2DB\3\2\2\2DE\3\2\2\2E\7\3\2\2\2FD\3\2\2\2GH\7\3\2\2HI\7"+ + "K\2\2I\t\3\2\2\2JL\5\f\7\2KJ\3\2\2\2LM\3\2\2\2MK\3\2\2\2MN\3\2\2\2N\13"+ + "\3\2\2\2OS\5\16\b\2PS\5\20\t\2QS\5\22\n\2RO\3\2\2\2RP\3\2\2\2RQ\3\2\2"+ + "\2S\r\3\2\2\2TV\5\34\17\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^\5&\24\2[]\5\34\17\2\\[\3\2\2\2]`\3\2\2\2^\\\3\2\2\2"+ + "^_\3\2\2\2_a\3\2\2\2`^\3\2\2\2ad\7W\2\2bc\7\4\2\2ce\5(\25\2db\3\2\2\2"+ + "de\3\2\2\2ef\3\2\2\2fg\7\5\2\2g\17\3\2\2\2hj\5\34\17\2ih\3\2\2\2jm\3\2"+ + "\2\2ki\3\2\2\2kl\3\2\2\2ln\3\2\2\2mk\3\2\2\2nr\5&\24\2oq\5\34\17\2po\3"+ + "\2\2\2qt\3\2\2\2rp\3\2\2\2rs\3\2\2\2su\3\2\2\2tr\3\2\2\2uv\7W\2\2vx\7"+ + "\6\2\2wy\5\30\r\2xw\3\2\2\2xy\3\2\2\2yz\3\2\2\2z{\7\7\2\2{}\7\b\2\2|~"+ + "\5\36\20\2}|\3\2\2\2}~\3\2\2\2~\177\3\2\2\2\177\u0080\7\t\2\2\u0080\21"+ + "\3\2\2\2\u0081\u0083\7\n\2\2\u0082\u0084\5\24\13\2\u0083\u0082\3\2\2\2"+ + "\u0083\u0084\3\2\2\2\u0084\u0085\3\2\2\2\u0085\u0086\7I\2\2\u0086\23\3"+ + "\2\2\2\u0087\u0088\7\6\2\2\u0088\u008d\5\26\f\2\u0089\u008a\7\13\2\2\u008a"+ + "\u008c\5\26\f\2\u008b\u0089\3\2\2\2\u008c\u008f\3\2\2\2\u008d\u008b\3"+ + "\2\2\2\u008d\u008e\3\2\2\2\u008e\u0090\3\2\2\2\u008f\u008d\3\2\2\2\u0090"+ + "\u0091\7\7\2\2\u0091\25\3\2\2\2\u0092\u0093\7\f\2\2\u0093\u00a4\7K\2\2"+ + "\u0094\u0095\7\r\2\2\u0095\u00a4\7K\2\2\u0096\u0097\7\16\2\2\u0097\u0098"+ + "\7W\2\2\u0098\u0099\7\17\2\2\u0099\u00a4\5(\25\2\u009a\u009b\7\20\2\2"+ + "\u009b\u00a4\5(\25\2\u009c\u009d\7\21\2\2\u009d\u00a4\5(\25\2\u009e\u00a1"+ + "\7\22\2\2\u009f\u00a2\7\23\2\2\u00a0\u00a2\5(\25\2\u00a1\u009f\3\2\2\2"+ + "\u00a1\u00a0\3\2\2\2\u00a2\u00a4\3\2\2\2\u00a3\u0092\3\2\2\2\u00a3\u0094"+ + "\3\2\2\2\u00a3\u0096\3\2\2\2\u00a3\u009a\3\2\2\2\u00a3\u009c\3\2\2\2\u00a3"+ + "\u009e\3\2\2\2\u00a4\27\3\2\2\2\u00a5\u00aa\5\32\16\2\u00a6\u00a7\7\13"+ + "\2\2\u00a7\u00a9\5\32\16\2\u00a8\u00a6\3\2\2\2\u00a9\u00ac\3\2\2\2\u00aa"+ + "\u00a8\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab\31\3\2\2\2\u00ac\u00aa\3\2\2"+ + "\2\u00ad\u00af\5\34\17\2\u00ae\u00ad\3\2\2\2\u00af\u00b2\3\2\2\2\u00b0"+ + "\u00ae\3\2\2\2\u00b0\u00b1\3\2\2\2\u00b1\u00b3\3\2\2\2\u00b2\u00b0\3\2"+ + "\2\2\u00b3\u00b7\5&\24\2\u00b4\u00b6\5\34\17\2\u00b5\u00b4\3\2\2\2\u00b6"+ + "\u00b9\3\2\2\2\u00b7\u00b5\3\2\2\2\u00b7\u00b8\3\2\2\2\u00b8\u00ba\3\2"+ + "\2\2\u00b9\u00b7\3\2\2\2\u00ba\u00bb\7W\2\2\u00bb\33\3\2\2\2\u00bc\u00ce"+ + "\7\24\2\2\u00bd\u00ce\7\25\2\2\u00be\u00bf\7\26\2\2\u00bf\u00c0\7\6\2"+ + "\2\u00c0\u00c1\7N\2\2\u00c1\u00ce\7\7\2\2\u00c2\u00c3\7\27\2\2\u00c3\u00c4"+ + "\7\6\2\2\u00c4\u00c5\7W\2\2\u00c5\u00ce\7\7\2\2\u00c6\u00ce\7\23\2\2\u00c7"+ + "\u00cb\7\30\2\2\u00c8\u00c9\7\6\2\2\u00c9\u00ca\t\2\2\2\u00ca\u00cc\7"+ + "\7\2\2\u00cb\u00c8\3\2\2\2\u00cb\u00cc\3\2\2\2\u00cc\u00ce\3\2\2\2\u00cd"+ + "\u00bc\3\2\2\2\u00cd\u00bd\3\2\2\2\u00cd\u00be\3\2\2\2\u00cd\u00c2\3\2"+ + "\2\2\u00cd\u00c6\3\2\2\2\u00cd\u00c7\3\2\2\2\u00ce\35\3\2\2\2\u00cf\u00d1"+ + "\5 \21\2\u00d0\u00cf\3\2\2\2\u00d1\u00d2\3\2\2\2\u00d2\u00d0\3\2\2\2\u00d2"+ + "\u00d3\3\2\2\2\u00d3\37\3\2\2\2\u00d4\u0112\5\16\b\2\u00d5\u00d7\7\b\2"+ + "\2\u00d6\u00d8\5\36\20\2\u00d7\u00d6\3\2\2\2\u00d7\u00d8\3\2\2\2\u00d8"+ + "\u00d9\3\2\2\2\u00d9\u0112\7\t\2\2\u00da\u00db\5(\25\2\u00db\u00dc\7\5"+ + "\2\2\u00dc\u0112\3\2\2\2\u00dd\u00de\7\33\2\2\u00de\u00df\7\6\2\2\u00df"+ + "\u00e0\5(\25\2\u00e0\u00e1\7\7\2\2\u00e1\u00e4\5 \21\2\u00e2\u00e3\7\34"+ + "\2\2\u00e3\u00e5\5 \21\2\u00e4\u00e2\3\2\2\2\u00e4\u00e5\3\2\2\2\u00e5"+ + "\u0112\3\2\2\2\u00e6\u00e8\5\34\17\2\u00e7\u00e6\3\2\2\2\u00e7\u00e8\3"+ + "\2\2\2\u00e8\u00e9\3\2\2\2\u00e9\u00ea\7\35\2\2\u00ea\u00eb\7\6\2\2\u00eb"+ + "\u00ec\5(\25\2\u00ec\u00ed\7\7\2\2\u00ed\u00ee\5 \21\2\u00ee\u0112\3\2"+ + "\2\2\u00ef\u00f1\5\34\17\2\u00f0\u00ef\3\2\2\2\u00f0\u00f1\3\2\2\2\u00f1"+ + "\u00f2\3\2\2\2\u00f2\u00f3\7\36\2\2\u00f3\u00f4\5 \21\2\u00f4\u00f5\7"+ + "\35\2\2\u00f5\u00f6\7\6\2\2\u00f6\u00f7\5(\25\2\u00f7\u00f8\7\7\2\2\u00f8"+ + "\u00f9\7\5\2\2\u00f9\u0112\3\2\2\2\u00fa\u00fc\5\34\17\2\u00fb\u00fa\3"+ + "\2\2\2\u00fb\u00fc\3\2\2\2\u00fc\u00fd\3\2\2\2\u00fd\u00fe\7\37\2\2\u00fe"+ + "\u0100\7\6\2\2\u00ff\u0101\5\"\22\2\u0100\u00ff\3\2\2\2\u0100\u0101\3"+ + "\2\2\2\u0101\u0102\3\2\2\2\u0102\u0103\5$\23\2\u0103\u0104\7\7\2\2\u0104"+ + "\u0105\5 \21\2\u0105\u0112\3\2\2\2\u0106\u0108\7 \2\2\u0107\u0109\5(\25"+ + "\2\u0108\u0107\3\2\2\2\u0108\u0109\3\2\2\2\u0109\u010a\3\2\2\2\u010a\u0112"+ + "\7\5\2\2\u010b\u010c\7!\2\2\u010c\u010d\7\b\2\2\u010d\u010e\5,\27\2\u010e"+ + "\u010f\7\t\2\2\u010f\u0112\3\2\2\2\u0110\u0112\5\22\n\2\u0111\u00d4\3"+ + "\2\2\2\u0111\u00d5\3\2\2\2\u0111\u00da\3\2\2\2\u0111\u00dd\3\2\2\2\u0111"+ + "\u00e7\3\2\2\2\u0111\u00f0\3\2\2\2\u0111\u00fb\3\2\2\2\u0111\u0106\3\2"+ + "\2\2\u0111\u010b\3\2\2\2\u0111\u0110\3\2\2\2\u0112!\3\2\2\2\u0113\u0115"+ + "\5\34\17\2\u0114\u0113\3\2\2\2\u0115\u0118\3\2\2\2\u0116\u0114\3\2\2\2"+ + "\u0116\u0117\3\2\2\2\u0117\u011a\3\2\2\2\u0118\u0116\3\2\2\2\u0119\u011b"+ + "\5&\24\2\u011a\u0119\3\2\2\2\u011a\u011b\3\2\2\2\u011b\u011f\3\2\2\2\u011c"+ + "\u011e\5\34\17\2\u011d\u011c\3\2\2\2\u011e\u0121\3\2\2\2\u011f\u011d\3"+ + "\2\2\2\u011f\u0120\3\2\2\2\u0120\u0122\3\2\2\2\u0121\u011f\3\2\2\2\u0122"+ + "\u0125\7W\2\2\u0123\u0124\7\4\2\2\u0124\u0126\5(\25\2\u0125\u0123\3\2"+ + "\2\2\u0125\u0126\3\2\2\2\u0126#\3\2\2\2\u0127\u0128\7\5\2\2\u0128\u0129"+ + "\5(\25\2\u0129\u012a\7\5\2\2\u012a\u012b\5(\25\2\u012b\u0132\3\2\2\2\u012c"+ + "\u012d\7\17\2\2\u012d\u012e\5(\25\2\u012e\u012f\7\"\2\2\u012f\u0130\5"+ + "(\25\2\u0130\u0132\3\2\2\2\u0131\u0127\3\2\2\2\u0131\u012c\3\2\2\2\u0132"+ + "%\3\2\2\2\u0133\u0134\b\24\1\2\u0134\u0135\7\6\2\2\u0135\u0136\5&\24\2"+ + "\u0136\u0137\7\7\2\2\u0137\u013c\3\2\2\2\u0138\u013c\7J\2\2\u0139\u013a"+ + "\7#\2\2\u013a\u013c\7J\2\2\u013b\u0133\3\2\2\2\u013b\u0138\3\2\2\2\u013b"+ + "\u0139\3\2\2\2\u013c\u014a\3\2\2\2\u013d\u013e\f\5\2\2\u013e\u0149\7$"+ + "\2\2\u013f\u0140\f\4\2\2\u0140\u0142\7%\2\2\u0141\u0143\5(\25\2\u0142"+ + "\u0141\3\2\2\2\u0142\u0143\3\2\2\2\u0143\u0144\3\2\2\2\u0144\u0149\7&"+ + "\2\2\u0145\u0146\f\3\2\2\u0146\u0147\7\6\2\2\u0147\u0149\7\7\2\2\u0148"+ + "\u013d\3\2\2\2\u0148\u013f\3\2\2\2\u0148\u0145\3\2\2\2\u0149\u014c\3\2"+ + "\2\2\u014a\u0148\3\2\2\2\u014a\u014b\3\2\2\2\u014b\'\3\2\2\2\u014c\u014a"+ + "\3\2\2\2\u014d\u014e\b\25\1\2\u014e\u014f\7\6\2\2\u014f\u0150\5(\25\2"+ + "\u0150\u0151\7\7\2\2\u0151\u0176\3\2\2\2\u0152\u0153\7W\2\2\u0153\u0155"+ + "\7\6\2\2\u0154\u0156\5*\26\2\u0155\u0154\3\2\2\2\u0155\u0156\3\2\2\2\u0156"+ + "\u0157\3\2\2\2\u0157\u0176\7\7\2\2\u0158\u0159\7\6\2\2\u0159\u015a\5&"+ + "\24\2\u015a\u015b\7\7\2\2\u015b\u015c\5(\25\31\u015c\u0176\3\2\2\2\u015d"+ + "\u015e\t\3\2\2\u015e\u0176\5(\25\30\u015f\u0160\7$\2\2\u0160\u0176\5("+ + "\25\26\u0161\u0162\t\4\2\2\u0162\u0176\5(\25\25\u0163\u0164\t\5\2\2\u0164"+ + "\u0176\5(\25\21\u0165\u0166\7\b\2\2\u0166\u016b\5(\25\2\u0167\u0168\7"+ + "\13\2\2\u0168\u016a\5(\25\2\u0169\u0167\3\2\2\2\u016a\u016d\3\2\2\2\u016b"+ + "\u0169\3\2\2\2\u016b\u016c\3\2\2\2\u016c\u016e\3\2\2\2\u016d\u016b\3\2"+ + "\2\2\u016e\u016f\7\t\2\2\u016f\u0176\3\2\2\2\u0170\u0176\7W\2\2\u0171"+ + "\u0176\7N\2\2\u0172\u0176\7K\2\2\u0173\u0176\7L\2\2\u0174\u0176\7M\2\2"+ + "\u0175\u014d\3\2\2\2\u0175\u0152\3\2\2\2\u0175\u0158\3\2\2\2\u0175\u015d"+ + "\3\2\2\2\u0175\u015f\3\2\2\2\u0175\u0161\3\2\2\2\u0175\u0163\3\2\2\2\u0175"+ + "\u0165\3\2\2\2\u0175\u0170\3\2\2\2\u0175\u0171\3\2\2\2\u0175\u0172\3\2"+ + "\2\2\u0175\u0173\3\2\2\2\u0175\u0174\3\2\2\2\u0176\u01a1\3\2\2\2\u0177"+ + "\u0178\f\24\2\2\u0178\u0179\t\6\2\2\u0179\u01a0\5(\25\25\u017a\u017b\f"+ + "\23\2\2\u017b\u017c\t\7\2\2\u017c\u01a0\5(\25\24\u017d\u017e\f\22\2\2"+ + "\u017e\u017f\t\b\2\2\u017f\u01a0\5(\25\23\u0180\u0181\f\20\2\2\u0181\u0182"+ + "\t\t\2\2\u0182\u01a0\5(\25\21\u0183\u0184\f\17\2\2\u0184\u0185\7,\2\2"+ + "\u0185\u01a0\5(\25\20\u0186\u0187\f\16\2\2\u0187\u0188\78\2\2\u0188\u01a0"+ + "\5(\25\17\u0189\u018a\f\r\2\2\u018a\u018b\79\2\2\u018b\u01a0\5(\25\16"+ + "\u018c\u018d\f\f\2\2\u018d\u018e\7:\2\2\u018e\u01a0\5(\25\r\u018f\u0190"+ + "\f\13\2\2\u0190\u0191\7;\2\2\u0191\u01a0\5(\25\f\u0192\u0193\f\n\2\2\u0193"+ + "\u0194\7\4\2\2\u0194\u01a0\5(\25\n\u0195\u0196\f\t\2\2\u0196\u0197\t\n"+ + "\2\2\u0197\u01a0\5(\25\t\u0198\u0199\f\32\2\2\u0199\u019a\7%\2\2\u019a"+ + "\u019b\5(\25\2\u019b\u019c\7&\2\2\u019c\u01a0\3\2\2\2\u019d\u019e\f\27"+ + "\2\2\u019e\u01a0\t\3\2\2\u019f\u0177\3\2\2\2\u019f\u017a\3\2\2\2\u019f"+ + "\u017d\3\2\2\2\u019f\u0180\3\2\2\2\u019f\u0183\3\2\2\2\u019f\u0186\3\2"+ + "\2\2\u019f\u0189\3\2\2\2\u019f\u018c\3\2\2\2\u019f\u018f\3\2\2\2\u019f"+ + "\u0192\3\2\2\2\u019f\u0195\3\2\2\2\u019f\u0198\3\2\2\2\u019f\u019d\3\2"+ + "\2\2\u01a0\u01a3\3\2\2\2\u01a1\u019f\3\2\2\2\u01a1\u01a2\3\2\2\2\u01a2"+ + ")\3\2\2\2\u01a3\u01a1\3\2\2\2\u01a4\u01a9\5(\25\2\u01a5\u01a6\7\13\2\2"+ + "\u01a6\u01a8\5(\25\2\u01a7\u01a5\3\2\2\2\u01a8\u01ab\3\2\2\2\u01a9\u01a7"+ + "\3\2\2\2\u01a9\u01aa\3\2\2\2\u01aa+\3\2\2\2\u01ab\u01a9\3\2\2\2\u01ac"+ + "\u01ae\5.\30\2\u01ad\u01ac\3\2\2\2\u01ae\u01b1\3\2\2\2\u01af\u01ad\3\2"+ + "\2\2\u01af\u01b0\3\2\2\2\u01b0-\3\2\2\2\u01b1\u01af\3\2\2\2\u01b2\u01b6"+ + "\5\60\31\2\u01b3\u01b6\5\62\32\2\u01b4\u01b6\5\64\33\2\u01b5\u01b2\3\2"+ + "\2\2\u01b5\u01b3\3\2\2\2\u01b5\u01b4\3\2\2\2\u01b6/\3\2\2\2\u01b7\u01b8"+ + "\7W\2\2\u01b8\u01bf\7\17\2\2\u01b9\u01bb\7+\2\2\u01ba\u01bc\7W\2\2\u01bb"+ + "\u01ba\3\2\2\2\u01bb\u01bc\3\2\2\2\u01bc\u01bd\3\2\2\2\u01bd\u01bf\7\17"+ + "\2\2\u01be\u01b7\3\2\2\2\u01be\u01b9\3\2\2\2\u01bf\61\3\2\2\2\u01c0\u01c2"+ + "\7H\2\2\u01c1\u01c3\5\66\34\2\u01c2\u01c1\3\2\2\2\u01c2\u01c3\3\2\2\2"+ + "\u01c3\63\3\2\2\2\u01c4\u01c5\7F\2\2\u01c5\u01ca\58\35\2\u01c6\u01c7\7"+ + "\13\2\2\u01c7\u01c9\58\35\2\u01c8\u01c6\3\2\2\2\u01c9\u01cc\3\2\2\2\u01ca"+ + "\u01c8\3\2\2\2\u01ca\u01cb\3\2\2\2\u01cb\65\3\2\2\2\u01cc\u01ca\3\2\2"+ + "\2\u01cd\u01e5\58\35\2\u01ce\u01cf\7G\2\2\u01cf\u01e5\58\35\2\u01d0\u01d1"+ + "\58\35\2\u01d1\u01d2\7\13\2\2\u01d2\u01d3\7W\2\2\u01d3\u01e5\3\2\2\2\u01d4"+ + "\u01d5\7\6\2\2\u01d5\u01d6\58\35\2\u01d6\u01d7\7\7\2\2\u01d7\u01d8\7\13"+ + "\2\2\u01d8\u01d9\7W\2\2\u01d9\u01e5\3\2\2\2\u01da\u01db\7\6\2\2\u01db"+ + "\u01dc\58\35\2\u01dc\u01dd\7\13\2\2\u01dd\u01de\7W\2\2\u01de\u01df\7\7"+ + "\2\2\u01df\u01e5\3\2\2\2\u01e0\u01e1\7\6\2\2\u01e1\u01e2\58\35\2\u01e2"+ + "\u01e3\7\7\2\2\u01e3\u01e5\3\2\2\2\u01e4\u01cd\3\2\2\2\u01e4\u01ce\3\2"+ + "\2\2\u01e4\u01d0\3\2\2\2\u01e4\u01d4\3\2\2\2\u01e4\u01da\3\2\2\2\u01e4"+ + "\u01e0\3\2\2\2\u01e5\67\3\2\2\2\u01e6\u01e7\b\35\1\2\u01e7\u01e8\7%\2"+ + "\2\u01e8\u01e9\58\35\2\u01e9\u01ea\7&\2\2\u01ea\u01f5\3\2\2\2\u01eb\u01ec"+ + "\t\13\2\2\u01ec\u01f5\58\35\n\u01ed\u01f5\7W\2\2\u01ee\u01f5\7X\2\2\u01ef"+ + "\u01f0\7\b\2\2\u01f0\u01f1\7W\2\2\u01f1\u01f5\7\t\2\2\u01f2\u01f5\7N\2"+ + "\2\u01f3\u01f5\7L\2\2\u01f4\u01e6\3\2\2\2\u01f4\u01eb\3\2\2\2\u01f4\u01ed"+ + "\3\2\2\2\u01f4\u01ee\3\2\2\2\u01f4\u01ef\3\2\2\2\u01f4\u01f2\3\2\2\2\u01f4"+ + "\u01f3\3\2\2\2\u01f5\u0201\3\2\2\2\u01f6\u01f7\f\13\2\2\u01f7\u01f8\t"+ + "\6\2\2\u01f8\u0200\58\35\f\u01f9\u01fa\f\t\2\2\u01fa\u01fb\t\f\2\2\u01fb"+ + "\u0200\58\35\n\u01fc\u01fd\f\b\2\2\u01fd\u01fe\t\b\2\2\u01fe\u0200\58"+ + "\35\t\u01ff\u01f6\3\2\2\2\u01ff\u01f9\3\2\2\2\u01ff\u01fc\3\2\2\2\u0200"+ + "\u0203\3\2\2\2\u0201\u01ff\3\2\2\2\u0201\u0202\3\2\2\2\u02029\3\2\2\2"+ + "\u0203\u0201\3\2\2\2\67DMRW^dkrx}\u0083\u008d\u00a1\u00a3\u00aa\u00b0"+ + "\u00b7\u00cb\u00cd\u00d2\u00d7\u00e4\u00e7\u00f0\u00fb\u0100\u0108\u0111"+ + "\u0116\u011a\u011f\u0125\u0131\u013b\u0142\u0148\u014a\u0155\u016b\u0175"+ + "\u019f\u01a1\u01a9\u01af\u01b5\u01bb\u01be\u01c2\u01ca\u01e4\u01f4\u01ff"+ + "\u0201"; 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 1d4e368c0..b1ba0a458 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.tree.ParseTreeVisitor; diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java index 070520aac..06c927cbc 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java @@ -18,7 +18,6 @@ import dk.camelot64.kickc.model.values.*; import dk.camelot64.kickc.parser.KickCBaseVisitor; import dk.camelot64.kickc.parser.KickCParser; import org.antlr.v4.runtime.ParserRuleContext; -import org.antlr.v4.runtime.tree.ParseTree; import org.antlr.v4.runtime.tree.TerminalNode; import java.io.File; @@ -172,7 +171,8 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { return null; } - private interface KasmDirective {}; + private interface KasmDirective { + } @Override public List visitKasmDirectives(KickCParser.KasmDirectivesContext ctx) { @@ -180,7 +180,7 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { List params = ctx.kasmDirective(); for(KickCParser.KasmDirectiveContext param : params) { KasmDirective directive = (KasmDirective) visit(param); - if(directive!=null) { + if(directive != null) { kasmDirectives.add(directive); } } @@ -204,10 +204,10 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { @Override public Object visitKasmDirectiveAddress(KickCParser.KasmDirectiveAddressContext ctx) { - if(ctx.expr()!=null) { + if(ctx.expr() != null) { RValue expr = (RValue) visit(ctx.expr()); return new KasmDirectiveLocation(expr); - } else { + } else { // PLace inline return null; } @@ -216,10 +216,10 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { /** KickAssembler directive specifying the number of bytes for generated code/data. */ public static class KasmDirectiveBytes implements KasmDirective { /** bytes for the KickAssembler-code. */ - private RValue bytes; + private RValue bytes; public KasmDirectiveBytes(RValue bytes) { - this.bytes= bytes; + this.bytes = bytes; } public RValue getBytes() { @@ -229,7 +229,7 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { @Override public KasmDirective visitKasmDirectiveBytes(KickCParser.KasmDirectiveBytesContext ctx) { - if(ctx.expr()!=null) { + if(ctx.expr() != null) { RValue bytes = (RValue) this.visit(ctx.expr()); return new KasmDirectiveBytes(bytes); } else { @@ -243,7 +243,7 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { private RValue cycles; public KasmDirectiveCycles(RValue cycles) { - this.cycles= cycles; + this.cycles = cycles; } public RValue getCycles() { @@ -253,7 +253,7 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { @Override public KasmDirective visitKasmDirectiveCycles(KickCParser.KasmDirectiveCyclesContext ctx) { - if(ctx.expr()!=null) { + if(ctx.expr() != null) { RValue cycles = (RValue) this.visit(ctx.expr()); return new KasmDirectiveCycles(cycles); } else { @@ -290,7 +290,7 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { // Add an zero-array initializer SymbolTypeArray typeArray = (SymbolTypeArray) type; RValue size = typeArray.getSize(); - if(size==null) { + if(size == null) { throw new CompileError("Error! Array has no declared size. " + lValue.toString(program), new StatementSource(ctx)); } Statement stmt = new StatementAssignment(lValue.getRef(), new ArrayFilled(typeArray.getElementType(), size), new StatementSource(ctx)); @@ -350,7 +350,7 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { if(directive instanceof DirectiveInline) { procedure.setDeclaredInline(true); } else if(directive instanceof DirectiveInterrupt) { - procedure.setDeclaredInterrupt(true); + procedure.setInterruptType(((DirectiveInterrupt) directive).interruptType); } else { throw new CompileError("Unsupported function directive " + directive, source); } @@ -369,7 +369,12 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { @Override public Object visitDirectiveInterrupt(KickCParser.DirectiveInterruptContext ctx) { - return new DirectiveInterrupt(); + Procedure.InterruptType interruptType = Procedure.InterruptType.KERNEL; + if(ctx.getChildCount() > 1) { + String name = ctx.getChild(2).getText().toUpperCase(); + interruptType = Procedure.InterruptType.valueOf(name); + } + return new DirectiveInterrupt(interruptType); } @Override @@ -687,7 +692,7 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { // Assignment (rValue/lValue) Object value = visit(ctx.expr(0)); if(!(value instanceof LValue)) { - throw new CompileError("Error! Illegal assigment Lvalue "+value.toString(), new StatementSource(ctx)); + throw new CompileError("Error! Illegal assignment Lvalue " + value.toString(), new StatementSource(ctx)); } LValue lValue = (LValue) value; if(lValue instanceof VariableRef && ((VariableRef) lValue).isIntermediate()) { @@ -831,14 +836,12 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { return variable.getRef(); } else if(symbol instanceof Procedure) { Procedure procedure = (Procedure) symbol; - if(procedure.isDeclaredInterrupt()) { - return procedure.getRef(); - } - } else if(symbol==null){ + return procedure.getRef(); + } else if(symbol == null) { // Either forward reference or a non-existing variable. Create a forward reference for later resolving. return new ForwardVariableRef(ctx.NAME().getText()); } - throw new CompileError("Error! Unhandled symbol "+symbol.toString(program)); + throw new CompileError("Error! Unhandled symbol " + symbol.toString(program)); } public StatementSequence getSequence() { @@ -859,6 +862,11 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { /** Function declared interrupt. */ private static class DirectiveInterrupt implements Directive { + public Procedure.InterruptType interruptType; + + public DirectiveInterrupt(Procedure.InterruptType interruptType) { + this.interruptType = interruptType; + } } /** Variable memory alignment. */ diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass1AssertInterrupts.java b/src/main/java/dk/camelot64/kickc/passes/Pass1AssertInterrupts.java index 35ffc9a2d..ec4b294b2 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass1AssertInterrupts.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass1AssertInterrupts.java @@ -23,13 +23,13 @@ public class Pass1AssertInterrupts extends Pass1Base { if(statement instanceof StatementCall) { ProcedureRef procedureRef = ((StatementCall) statement).getProcedure(); Procedure procedure = getScope().getProcedure(procedureRef); - if(procedure.isDeclaredInterrupt()) { + if(procedure.getInterruptType()!=null) { throw new CompileError("Error! Interrupts cannot be called.", statement.getSource()); } } } for(Procedure procedure : getScope().getAllProcedures(true)) { - if(procedure.isDeclaredInterrupt()) { + if(procedure.getInterruptType()!=null) { if(procedure.isDeclaredInline()) { throw new CompileError("Error! Interrupts cannot be inlined. " + procedure.toString()); } diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass1ProcedureInline.java b/src/main/java/dk/camelot64/kickc/passes/Pass1ProcedureInline.java index 8e4f9df28..61804838b 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass1ProcedureInline.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass1ProcedureInline.java @@ -37,7 +37,7 @@ public class Pass1ProcedureInline extends Pass1Base { ProcedureRef procedureRef = call.getProcedure(); Procedure procedure = getScope().getProcedure(procedureRef); if(procedure.isDeclaredInline()) { - if(procedure.isDeclaredInterrupt()) { + if(procedure.getInterruptType()!=null) { throw new CompileError("Error! Interrupts cannot be inlined. "+procedure.getRef().toString()); } Scope callScope = getScope().getScope(block.getScope()); diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass4CodeGeneration.java b/src/main/java/dk/camelot64/kickc/passes/Pass4CodeGeneration.java index 6d4e51cad..7e758ad22 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass4CodeGeneration.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass4CodeGeneration.java @@ -429,20 +429,23 @@ public class Pass4CodeGeneration { } asm.addInstruction("jsr", AsmAddressingMode.ABS, call.getProcedure().getFullName(), false); } else if(statement instanceof StatementReturn) { - boolean isInterrupt = false; + Procedure.InterruptType interruptType = null; ScopeRef scope = block.getScope(); if(!scope.equals(ScopeRef.ROOT)) { Procedure procedure = getScope().getProcedure(scope.getFullName()); if(procedure!=null) { - isInterrupt = procedure.isDeclaredInterrupt(); + interruptType = procedure.getInterruptType(); } } - if(isInterrupt) { + if(interruptType==null) { + asm.addInstruction("rts", AsmAddressingMode.NON, null, false); + } else if(interruptType.equals(Procedure.InterruptType.KERNEL)) { + asm.addInstruction("jmp", AsmAddressingMode.ABS, "$ea81", false); + } else if(interruptType.equals(Procedure.InterruptType.HARDWARE)) { asm.addInstruction("rti", AsmAddressingMode.NON, null, false); } else { - asm.addInstruction("rts", AsmAddressingMode.NON, null, false); + throw new RuntimeException("Interrupt Type not supported " + statement); } - } else if(statement instanceof StatementAsm) { StatementAsm statementAsm = (StatementAsm) statement; HashMap bindings = new HashMap<>(); diff --git a/src/test/java/dk/camelot64/kickc/test/kc/test-interrupt.kc b/src/test/java/dk/camelot64/kickc/test/kc/test-interrupt.kc index c9bf8d525..0e1e6d62f 100644 --- a/src/test/java/dk/camelot64/kickc/test/kc/test-interrupt.kc +++ b/src/test/java/dk/camelot64/kickc/test/kc/test-interrupt.kc @@ -1,20 +1,16 @@ -void()** VECTOR_IRQ = $0314; +void()** KERNEL_IRQ = $0314; -interrupt void irq() { +interrupt(kernel) void irq() { byte* BGCOL = $d020; (*BGCOL)++; asm { lda $dc0d - pla - tay - pla - tax - pla } + (*BGCOL)++; } void main() { - *VECTOR_IRQ = &irq; + *KERNEL_IRQ = &irq; byte* FGCOL = $d021; while(true) { (*FGCOL)++; diff --git a/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.asm b/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.asm index 085cc8843..ff2651020 100644 --- a/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.asm +++ b/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.asm @@ -1,14 +1,14 @@ .pc = $801 "Basic" :BasicUpstart(main) .pc = $80d "Program" - .label VECTOR_IRQ = $314 + .label KERNEL_IRQ = $314 jsr main main: { .label FGCOL = $d021 lda #irq - sta VECTOR_IRQ+1 + sta KERNEL_IRQ+1 b2: inc FGCOL jmp b2 @@ -17,10 +17,6 @@ irq: { .label BGCOL = $d020 inc BGCOL lda $dc0d - pla - tay - pla - tax - pla - rti + inc BGCOL + jmp $ea81 } diff --git a/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.cfg b/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.cfg index f7cd88af7..264e2f14c 100644 --- a/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.cfg +++ b/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.cfg @@ -8,15 +8,16 @@ @end: scope:[] from @2 [3] phi() [ ] ( ) main: scope:[main] from @2 - [4] *((const void()**) VECTOR_IRQ#0) ← &interrupt (void()) irq() [ ] ( main:2 [ ] ) + [4] *((const void()**) KERNEL_IRQ#0) ← &interrupt(KERNEL)(void()) irq() [ ] ( main:2 [ ] ) to:main::@2 main::@2: scope:[main] from main main::@2 [5] *((const byte*) main::FGCOL#0) ← ++ *((const byte*) main::FGCOL#0) [ ] ( main:2 [ ] ) to:main::@2 irq: scope:[irq] from [6] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) - asm { lda$dc0d pla tay pla tax pla } + asm { lda$dc0d } + [8] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) to:irq::@return irq::@return: scope:[irq] from irq - [8] return [ ] ( ) + [9] return [ ] ( ) to:@return diff --git a/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.log b/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.log index 05811a07e..afdacae0a 100644 --- a/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.log +++ b/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.log @@ -1,27 +1,24 @@ PARSING src/test/java/dk/camelot64/kickc/test/kc/test-interrupt.kc -void()** VECTOR_IRQ = $0314; +void()** KERNEL_IRQ = $0314; -interrupt void irq() { +interrupt(kernel) void irq() { byte* BGCOL = $d020; (*BGCOL)++; asm { lda $dc0d - pla - tay - pla - tax - pla } + (*BGCOL)++; } void main() { - *VECTOR_IRQ = &irq; + *KERNEL_IRQ = &irq; byte* FGCOL = $d021; while(true) { (*FGCOL)++; } } +Adding pre/post-modifier *((byte*) irq::BGCOL) ← ++ *((byte*) irq::BGCOL) Adding pre/post-modifier *((byte*) irq::BGCOL) ← ++ *((byte*) irq::BGCOL) Adding pre/post-modifier *((byte*) main::FGCOL) ← ++ *((byte*) main::FGCOL) SYMBOLS @@ -29,8 +26,8 @@ SYMBOLS (label) @2 (label) @begin (label) @end -(void()**) VECTOR_IRQ -interrupt (void()) irq() +(void()**) KERNEL_IRQ +interrupt(KERNEL)(void()) irq() (label) irq::@return (byte*) irq::BGCOL (void()) main() @@ -44,17 +41,18 @@ interrupt (void()) irq() (label) main::@return (byte*) main::FGCOL -Promoting word/signed word/dword/signed dword to void()** in VECTOR_IRQ ← ((void()**)) 788 +Promoting word/signed word/dword/signed dword to void()** in KERNEL_IRQ ← ((void()**)) 788 Promoting word/dword/signed dword to byte* in irq::BGCOL ← ((byte*)) 53280 Promoting word/dword/signed dword to byte* in main::FGCOL ← ((byte*)) 53281 INITIAL CONTROL FLOW GRAPH @begin: scope:[] from - (void()**) VECTOR_IRQ ← ((void()**)) (word/signed word/dword/signed dword) 788 + (void()**) KERNEL_IRQ ← ((void()**)) (word/signed word/dword/signed dword) 788 to:@1 irq: scope:[irq] from (byte*) irq::BGCOL ← ((byte*)) (word/dword/signed dword) 53280 *((byte*) irq::BGCOL) ← ++ *((byte*) irq::BGCOL) - asm { lda$dc0d pla tay pla tax pla } + asm { lda$dc0d } + *((byte*) irq::BGCOL) ← ++ *((byte*) irq::BGCOL) to:irq::@return irq::@return: scope:[irq] from irq return @@ -62,8 +60,8 @@ irq::@return: scope:[irq] from irq @1: scope:[] from @begin to:@2 main: scope:[main] from - (void()*~) main::$0 ← & interrupt (void()) irq() - *((void()**) VECTOR_IRQ) ← (void()*~) main::$0 + (void()*~) main::$0 ← & interrupt(KERNEL)(void()) irq() + *((void()**) KERNEL_IRQ) ← (void()*~) main::$0 (byte*) main::FGCOL ← ((byte*)) (word/dword/signed dword) 53281 to:main::@1 main::@1: scope:[main] from main main::@2 @@ -100,20 +98,21 @@ Completing Phi functions... CONTROL FLOW GRAPH SSA WITH ASSIGNMENT CALL & RETURN @begin: scope:[] from - (void()**) VECTOR_IRQ#0 ← ((void()**)) (word/signed word/dword/signed dword) 788 + (void()**) KERNEL_IRQ#0 ← ((void()**)) (word/signed word/dword/signed dword) 788 to:@2 irq: scope:[irq] from (byte*) irq::BGCOL#0 ← ((byte*)) (word/dword/signed dword) 53280 *((byte*) irq::BGCOL#0) ← ++ *((byte*) irq::BGCOL#0) - asm { lda$dc0d pla tay pla tax pla } + asm { lda$dc0d } + *((byte*) irq::BGCOL#0) ← ++ *((byte*) irq::BGCOL#0) to:irq::@return irq::@return: scope:[irq] from irq return to:@return main: scope:[main] from @2 - (void()**) VECTOR_IRQ#1 ← phi( @2/(void()**) VECTOR_IRQ#2 ) - (void()*~) main::$0 ← & interrupt (void()) irq() - *((void()**) VECTOR_IRQ#1) ← (void()*~) main::$0 + (void()**) KERNEL_IRQ#1 ← phi( @2/(void()**) KERNEL_IRQ#2 ) + (void()*~) main::$0 ← & interrupt(KERNEL)(void()) irq() + *((void()**) KERNEL_IRQ#1) ← (void()*~) main::$0 (byte*) main::FGCOL#0 ← ((byte*)) (word/dword/signed dword) 53281 to:main::@1 main::@1: scope:[main] from main main::@2 @@ -128,7 +127,7 @@ main::@return: scope:[main] from main::@1 return to:@return @2: scope:[] from @begin - (void()**) VECTOR_IRQ#2 ← phi( @begin/(void()**) VECTOR_IRQ#0 ) + (void()**) KERNEL_IRQ#2 ← phi( @begin/(void()**) KERNEL_IRQ#0 ) call main to:@3 @3: scope:[] from @2 @@ -140,11 +139,11 @@ SYMBOL TABLE SSA (label) @3 (label) @begin (label) @end -(void()**) VECTOR_IRQ -(void()**) VECTOR_IRQ#0 -(void()**) VECTOR_IRQ#1 -(void()**) VECTOR_IRQ#2 -interrupt (void()) irq() +(void()**) KERNEL_IRQ +(void()**) KERNEL_IRQ#0 +(void()**) KERNEL_IRQ#1 +(void()**) KERNEL_IRQ#2 +interrupt(KERNEL)(void()) irq() (label) irq::@return (byte*) irq::BGCOL (byte*) irq::BGCOL#0 @@ -161,17 +160,17 @@ interrupt (void()) irq() OPTIMIZING CONTROL FLOW GRAPH Culled Empty Block (label) @3 Succesful SSA optimization Pass2CullEmptyBlocks -Not aliassing across scopes: VECTOR_IRQ#1 VECTOR_IRQ#2 +Not aliassing across scopes: KERNEL_IRQ#1 KERNEL_IRQ#2 Alias (byte*) main::FGCOL#1 = (byte*) main::FGCOL#2 -Alias (void()**) VECTOR_IRQ#0 = (void()**) VECTOR_IRQ#2 +Alias (void()**) KERNEL_IRQ#0 = (void()**) KERNEL_IRQ#2 Succesful SSA optimization Pass2AliasElimination -Not aliassing across scopes: VECTOR_IRQ#1 VECTOR_IRQ#0 +Not aliassing across scopes: KERNEL_IRQ#1 KERNEL_IRQ#0 Self Phi Eliminated (byte*) main::FGCOL#1 Succesful SSA optimization Pass2SelfPhiElimination -Redundant Phi (void()**) VECTOR_IRQ#1 (void()**) VECTOR_IRQ#0 +Redundant Phi (void()**) KERNEL_IRQ#1 (void()**) KERNEL_IRQ#0 Redundant Phi (byte*) main::FGCOL#1 (byte*) main::FGCOL#0 Succesful SSA optimization Pass2RedundantPhiElimination -Constant (const void()**) VECTOR_IRQ#0 = ((void()**))788 +Constant (const void()**) KERNEL_IRQ#0 = ((void()**))788 Constant (const byte*) irq::BGCOL#0 = ((byte*))53280 Constant (const void()*) main::$0 = &irq Constant (const byte*) main::FGCOL#0 = ((byte*))53281 @@ -183,7 +182,7 @@ Succesful SSA optimization Pass2EliminateUnusedBlocks Culled Empty Block (label) main::@1 Succesful SSA optimization Pass2CullEmptyBlocks OPTIMIZING CONTROL FLOW GRAPH -Constant inlined main::$0 = &interrupt (void()) irq() +Constant inlined main::$0 = &interrupt(KERNEL)(void()) irq() Succesful SSA optimization Pass2ConstantInlining Block Sequence Planned @begin @2 @end main main::@2 irq irq::@return Block Sequence Planned @begin @2 @end main main::@2 irq irq::@return @@ -213,17 +212,18 @@ FINAL CONTROL FLOW GRAPH @end: scope:[] from @2 [3] phi() [ ] ( ) main: scope:[main] from @2 - [4] *((const void()**) VECTOR_IRQ#0) ← &interrupt (void()) irq() [ ] ( main:2 [ ] ) + [4] *((const void()**) KERNEL_IRQ#0) ← &interrupt(KERNEL)(void()) irq() [ ] ( main:2 [ ] ) to:main::@2 main::@2: scope:[main] from main main::@2 [5] *((const byte*) main::FGCOL#0) ← ++ *((const byte*) main::FGCOL#0) [ ] ( main:2 [ ] ) to:main::@2 irq: scope:[irq] from [6] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) - asm { lda$dc0d pla tay pla tax pla } + asm { lda$dc0d } + [8] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) to:irq::@return irq::@return: scope:[irq] from irq - [8] return [ ] ( ) + [9] return [ ] ( ) to:@return DOMINATORS @@ -254,8 +254,8 @@ Loop head: irq::@return tails: irq blocks: irq depth: 1 VARIABLE REGISTER WEIGHTS -(void()**) VECTOR_IRQ -interrupt (void()) irq() +(void()**) KERNEL_IRQ +interrupt(KERNEL)(void()) irq() (byte*) irq::BGCOL (void()) main() (byte*) main::FGCOL @@ -269,7 +269,7 @@ INITIAL ASM :BasicUpstart(main) .pc = $80d "Program" //SEG1 Global Constants & labels - .label VECTOR_IRQ = $314 + .label KERNEL_IRQ = $314 //SEG2 @begin bbegin: //SEG3 [1] phi from @begin to @2 [phi:@begin->@2] @@ -287,11 +287,11 @@ bend: //SEG8 main main: { .label FGCOL = $d021 - //SEG9 [4] *((const void()**) VECTOR_IRQ#0) ← &interrupt (void()) irq() [ ] ( main:2 [ ] ) -- _deref_pptc1=pprc2 + //SEG9 [4] *((const void()**) KERNEL_IRQ#0) ← &interrupt(KERNEL)(void()) irq() [ ] ( main:2 [ ] ) -- _deref_pptc1=pprc2 lda #irq - sta VECTOR_IRQ+1 + sta KERNEL_IRQ+1 jmp b2 //SEG10 main::@2 b2: @@ -304,32 +304,29 @@ irq: { .label BGCOL = $d020 //SEG13 [6] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) -- _deref_pbuc1=_inc__deref_pbuc1 inc BGCOL - //SEG14 asm { lda$dc0d pla tay pla tax pla } + //SEG14 asm { lda$dc0d } lda $dc0d - pla - tay - pla - tax - pla + //SEG15 [8] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) -- _deref_pbuc1=_inc__deref_pbuc1 + inc BGCOL jmp breturn - //SEG15 irq::@return + //SEG16 irq::@return breturn: - //SEG16 [8] return [ ] ( ) - rti + //SEG17 [9] return [ ] ( ) + jmp $ea81 } REGISTER UPLIFT POTENTIAL REGISTERS -Statement [4] *((const void()**) VECTOR_IRQ#0) ← &interrupt (void()) irq() [ ] ( main:2 [ ] ) always clobbers reg byte a -Statement asm { lda$dc0d pla tay pla tax pla } always clobbers reg byte a reg byte x reg byte y +Statement [4] *((const void()**) KERNEL_IRQ#0) ← &interrupt(KERNEL)(void()) irq() [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement asm { lda$dc0d } always clobbers reg byte a REGISTER UPLIFT SCOPES Uplift Scope [irq] Uplift Scope [main] Uplift Scope [] -Uplifting [irq] best 413 combination -Uplifting [main] best 413 combination -Uplifting [] best 413 combination +Uplifting [irq] best 310 combination +Uplifting [main] best 310 combination +Uplifting [] best 310 combination ASSEMBLER BEFORE OPTIMIZATION //SEG0 Basic Upstart @@ -337,7 +334,7 @@ ASSEMBLER BEFORE OPTIMIZATION :BasicUpstart(main) .pc = $80d "Program" //SEG1 Global Constants & labels - .label VECTOR_IRQ = $314 + .label KERNEL_IRQ = $314 //SEG2 @begin bbegin: //SEG3 [1] phi from @begin to @2 [phi:@begin->@2] @@ -355,11 +352,11 @@ bend: //SEG8 main main: { .label FGCOL = $d021 - //SEG9 [4] *((const void()**) VECTOR_IRQ#0) ← &interrupt (void()) irq() [ ] ( main:2 [ ] ) -- _deref_pptc1=pprc2 + //SEG9 [4] *((const void()**) KERNEL_IRQ#0) ← &interrupt(KERNEL)(void()) irq() [ ] ( main:2 [ ] ) -- _deref_pptc1=pprc2 lda #irq - sta VECTOR_IRQ+1 + sta KERNEL_IRQ+1 jmp b2 //SEG10 main::@2 b2: @@ -372,18 +369,15 @@ irq: { .label BGCOL = $d020 //SEG13 [6] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) -- _deref_pbuc1=_inc__deref_pbuc1 inc BGCOL - //SEG14 asm { lda$dc0d pla tay pla tax pla } + //SEG14 asm { lda$dc0d } lda $dc0d - pla - tay - pla - tax - pla + //SEG15 [8] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) -- _deref_pbuc1=_inc__deref_pbuc1 + inc BGCOL jmp breturn - //SEG15 irq::@return + //SEG16 irq::@return breturn: - //SEG16 [8] return [ ] ( ) - rti + //SEG17 [9] return [ ] ( ) + jmp $ea81 } ASSEMBLER OPTIMIZATIONS @@ -405,9 +399,9 @@ FINAL SYMBOL TABLE (label) @2 (label) @begin (label) @end -(void()**) VECTOR_IRQ -(const void()**) VECTOR_IRQ#0 VECTOR_IRQ = ((void()**))(word/signed word/dword/signed dword) 788 -interrupt (void()) irq() +(void()**) KERNEL_IRQ +(const void()**) KERNEL_IRQ#0 KERNEL_IRQ = ((void()**))(word/signed word/dword/signed dword) 788 +interrupt(KERNEL)(void()) irq() (label) irq::@return (byte*) irq::BGCOL (const byte*) irq::BGCOL#0 BGCOL = ((byte*))(word/dword/signed dword) 53280 @@ -419,14 +413,14 @@ interrupt (void()) irq() FINAL ASSEMBLER -Score: 374 +Score: 271 //SEG0 Basic Upstart .pc = $801 "Basic" :BasicUpstart(main) .pc = $80d "Program" //SEG1 Global Constants & labels - .label VECTOR_IRQ = $314 + .label KERNEL_IRQ = $314 //SEG2 @begin //SEG3 [1] phi from @begin to @2 [phi:@begin->@2] //SEG4 @2 @@ -437,11 +431,11 @@ Score: 374 //SEG8 main main: { .label FGCOL = $d021 - //SEG9 [4] *((const void()**) VECTOR_IRQ#0) ← &interrupt (void()) irq() [ ] ( main:2 [ ] ) -- _deref_pptc1=pprc2 + //SEG9 [4] *((const void()**) KERNEL_IRQ#0) ← &interrupt(KERNEL)(void()) irq() [ ] ( main:2 [ ] ) -- _deref_pptc1=pprc2 lda #irq - sta VECTOR_IRQ+1 + sta KERNEL_IRQ+1 //SEG10 main::@2 b2: //SEG11 [5] *((const byte*) main::FGCOL#0) ← ++ *((const byte*) main::FGCOL#0) [ ] ( main:2 [ ] ) -- _deref_pbuc1=_inc__deref_pbuc1 @@ -453,15 +447,12 @@ irq: { .label BGCOL = $d020 //SEG13 [6] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) -- _deref_pbuc1=_inc__deref_pbuc1 inc BGCOL - //SEG14 asm { lda$dc0d pla tay pla tax pla } + //SEG14 asm { lda$dc0d } lda $dc0d - pla - tay - pla - tax - pla - //SEG15 irq::@return - //SEG16 [8] return [ ] ( ) - rti + //SEG15 [8] *((const byte*) irq::BGCOL#0) ← ++ *((const byte*) irq::BGCOL#0) [ ] ( ) -- _deref_pbuc1=_inc__deref_pbuc1 + inc BGCOL + //SEG16 irq::@return + //SEG17 [9] return [ ] ( ) + jmp $ea81 } diff --git a/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.sym b/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.sym index 52d695c04..38c43ddbb 100644 --- a/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.sym +++ b/src/test/java/dk/camelot64/kickc/test/ref/test-interrupt.sym @@ -1,9 +1,9 @@ (label) @2 (label) @begin (label) @end -(void()**) VECTOR_IRQ -(const void()**) VECTOR_IRQ#0 VECTOR_IRQ = ((void()**))(word/signed word/dword/signed dword) 788 -interrupt (void()) irq() +(void()**) KERNEL_IRQ +(const void()**) KERNEL_IRQ#0 KERNEL_IRQ = ((void()**))(word/signed word/dword/signed dword) 788 +interrupt(KERNEL)(void()) irq() (label) irq::@return (byte*) irq::BGCOL (const byte*) irq::BGCOL#0 BGCOL = ((byte*))(word/dword/signed dword) 53280