mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-04-05 07:40:39 +00:00
Added support for different target platforms. Added first platforms c64basic and asm6502 (no upstart). Closes #232
This commit is contained in:
parent
424f5ce006
commit
e8a0694f34
@ -1,10 +1,7 @@
|
||||
package dk.camelot64.kickc;
|
||||
|
||||
import dk.camelot64.kickc.asm.AsmProgram;
|
||||
import dk.camelot64.kickc.model.Comment;
|
||||
import dk.camelot64.kickc.model.CompileError;
|
||||
import dk.camelot64.kickc.model.Program;
|
||||
import dk.camelot64.kickc.model.StatementSequence;
|
||||
import dk.camelot64.kickc.model.*;
|
||||
import dk.camelot64.kickc.model.statements.StatementCall;
|
||||
import dk.camelot64.kickc.model.statements.StatementSource;
|
||||
import dk.camelot64.kickc.model.symbols.Variable;
|
||||
@ -33,6 +30,9 @@ public class Compiler {
|
||||
/** Enable the zero-page coalesce pass. It takes a lot of time, but limits the zero page usage significantly. */
|
||||
private boolean enableZeroPageCoalasce = false;
|
||||
|
||||
/** The target platform. */
|
||||
private TargetPlatform targetPlatform = TargetPlatform.DEFAULT;
|
||||
|
||||
public Compiler() {
|
||||
this.program = new Program();
|
||||
}
|
||||
@ -45,11 +45,14 @@ public class Compiler {
|
||||
this.enableZeroPageCoalasce = optimizeZeroPageCoalesce;
|
||||
}
|
||||
|
||||
public void setTargetPlatform(TargetPlatform targetPlatform) {
|
||||
program.setTargetPlatform(targetPlatform);
|
||||
}
|
||||
|
||||
public void setLog(CompileLog compileLog) {
|
||||
program.setLog(compileLog);
|
||||
}
|
||||
|
||||
|
||||
public static void loadAndParseFile(String fileName, Program program, Path currentPath) {
|
||||
try {
|
||||
if(!fileName.endsWith(".kc")) {
|
||||
@ -275,7 +278,6 @@ public class Compiler {
|
||||
optimizations.add(new PassNVariableReferenceInfos(program));
|
||||
optimizations.add(new Pass2UnaryNotSimplification(program));
|
||||
optimizations.add(new Pass2AliasElimination(program));
|
||||
//optimizations.add(new Pass2SelfPhiElimination(program));
|
||||
optimizations.add(new Pass2IdenticalPhiElimination(program));
|
||||
optimizations.add(new Pass2DuplicateRValueIdentification(program));
|
||||
optimizations.add(new Pass2ConditionalJumpSimplification(program));
|
||||
@ -484,6 +486,7 @@ public class Compiler {
|
||||
new Pass4CodeGeneration(program, false).generate();
|
||||
new Pass4AssertNoCpuClobber(program).check();
|
||||
getLog().append("\nINITIAL ASM");
|
||||
getLog().append("Target platform is "+program.getTargetPlatform().getName());
|
||||
getLog().append(program.getAsm().toString(new AsmProgram.AsmPrintState(true), program));
|
||||
|
||||
// Find potential registers for each live range equivalence class - based on clobbering of fragments
|
||||
|
@ -6,6 +6,7 @@ import dk.camelot64.kickc.fragment.AsmFragmentTemplateSynthesizer;
|
||||
import dk.camelot64.kickc.fragment.AsmFragmentTemplateUsages;
|
||||
import dk.camelot64.kickc.model.CompileError;
|
||||
import dk.camelot64.kickc.model.Program;
|
||||
import dk.camelot64.kickc.model.TargetPlatform;
|
||||
import kickass.KickAssembler;
|
||||
import picocli.CommandLine;
|
||||
|
||||
@ -115,6 +116,8 @@ public class KickC implements Callable<Void> {
|
||||
@CommandLine.Option(names = {"-Si"}, description = "Interleave comments with intermediate language code and ASM fragment names in the generated ASM.")
|
||||
private boolean interleaveIclFile = false;
|
||||
|
||||
@CommandLine.Option(names = {"-t", "-target"}, description = "The target system. Default is C64 with BASIC upstart. ")
|
||||
private String target = TargetPlatform.C64BASIC.getName();
|
||||
|
||||
/** Program Exit Code signaling a compile error. */
|
||||
public static final int COMPILE_ERROR = 1;
|
||||
@ -131,6 +134,21 @@ public class KickC implements Callable<Void> {
|
||||
|
||||
Compiler compiler = new Compiler();
|
||||
|
||||
if(target!=null) {
|
||||
TargetPlatform targetPlatform = TargetPlatform.getTargetPlatform(target);
|
||||
if(targetPlatform==null) {
|
||||
System.err.println("Unknown target platform "+target);
|
||||
StringBuffer supported = new StringBuffer();
|
||||
supported.append("The supported target platforms are: ");
|
||||
for(TargetPlatform value : TargetPlatform.values()) {
|
||||
supported.append(value.getName()).append(" ");
|
||||
}
|
||||
System.err.println(supported);
|
||||
System.exit(COMPILE_ERROR);
|
||||
}
|
||||
compiler.setTargetPlatform(targetPlatform);
|
||||
}
|
||||
|
||||
if(libDir != null) {
|
||||
for(Path libPath : libDir) {
|
||||
compiler.addImportPath(libPath.toString());
|
||||
|
@ -75,6 +75,8 @@ public class Program {
|
||||
private Map<LabelRef, PhiTransitions> phiTransitions;
|
||||
/** Struct values unwound to individual variables. */
|
||||
private StructUnwinding structUnwinding;
|
||||
/** The target platform that the program is being build for. */
|
||||
private TargetPlatform targetPlatform = TargetPlatform.DEFAULT;
|
||||
|
||||
public Program() {
|
||||
this.scope = new ProgramScope();
|
||||
@ -85,6 +87,14 @@ public class Program {
|
||||
this.reservedZps = new ArrayList<>();
|
||||
}
|
||||
|
||||
public TargetPlatform getTargetPlatform() {
|
||||
return targetPlatform;
|
||||
}
|
||||
|
||||
public void setTargetPlatform(TargetPlatform targetPlatform) {
|
||||
this.targetPlatform = targetPlatform;
|
||||
}
|
||||
|
||||
public StructUnwinding getStructUnwinding() {
|
||||
return structUnwinding;
|
||||
}
|
||||
|
36
src/main/java/dk/camelot64/kickc/model/TargetPlatform.java
Normal file
36
src/main/java/dk/camelot64/kickc/model/TargetPlatform.java
Normal file
@ -0,0 +1,36 @@
|
||||
package dk.camelot64.kickc.model;
|
||||
|
||||
/**
|
||||
* The target platform the compiler is creating a program for.
|
||||
*/
|
||||
public enum TargetPlatform {
|
||||
/** Commodore 64 with BASIC upstart SYS-command. */
|
||||
C64BASIC("c64basic"),
|
||||
/** 6502 assembler (with no upstart code.)*/
|
||||
ASM6502("asm6502");
|
||||
|
||||
/** The default target platform. */
|
||||
public static final TargetPlatform DEFAULT = C64BASIC;
|
||||
|
||||
/** The platform name. */
|
||||
private String name;
|
||||
|
||||
TargetPlatform(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/** Get a target platform by name. */
|
||||
public static TargetPlatform getTargetPlatform(String name) {
|
||||
for(TargetPlatform value : TargetPlatform.values()) {
|
||||
if(value.getName().equalsIgnoreCase(name)) {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
@ -68,6 +68,7 @@ parameterDecl
|
||||
globalDirective
|
||||
: '#' directiveReserve #globalDirectiveReserve
|
||||
| '#' 'pc' '(' NUMBER ')' #globalDirectivePc
|
||||
| '#' 'platform' '(' NAME ')' #globalDirectivePlatform
|
||||
| '#' 'encoding' '(' NAME')' #globalDirectiveEncoding
|
||||
;
|
||||
|
||||
|
@ -79,26 +79,27 @@ T__77=78
|
||||
T__78=79
|
||||
T__79=80
|
||||
T__80=81
|
||||
MNEMONIC=82
|
||||
KICKASM=83
|
||||
SIMPLETYPE=84
|
||||
STRING=85
|
||||
CHAR=86
|
||||
BOOLEAN=87
|
||||
NUMBER=88
|
||||
NUMFLOAT=89
|
||||
BINFLOAT=90
|
||||
DECFLOAT=91
|
||||
HEXFLOAT=92
|
||||
NUMINT=93
|
||||
BININTEGER=94
|
||||
DECINTEGER=95
|
||||
HEXINTEGER=96
|
||||
NAME=97
|
||||
ASMREL=98
|
||||
WS=99
|
||||
COMMENT_LINE=100
|
||||
COMMENT_BLOCK=101
|
||||
T__81=82
|
||||
MNEMONIC=83
|
||||
KICKASM=84
|
||||
SIMPLETYPE=85
|
||||
STRING=86
|
||||
CHAR=87
|
||||
BOOLEAN=88
|
||||
NUMBER=89
|
||||
NUMFLOAT=90
|
||||
BINFLOAT=91
|
||||
DECFLOAT=92
|
||||
HEXFLOAT=93
|
||||
NUMINT=94
|
||||
BININTEGER=95
|
||||
DECINTEGER=96
|
||||
HEXINTEGER=97
|
||||
NAME=98
|
||||
ASMREL=99
|
||||
WS=100
|
||||
COMMENT_LINE=101
|
||||
COMMENT_BLOCK=102
|
||||
'import'=1
|
||||
';'=2
|
||||
'typedef'=3
|
||||
@ -110,73 +111,74 @@ COMMENT_BLOCK=101
|
||||
'}'=9
|
||||
'#'=10
|
||||
'pc'=11
|
||||
'encoding'=12
|
||||
'const'=13
|
||||
'extern'=14
|
||||
'align'=15
|
||||
'register'=16
|
||||
'inline'=17
|
||||
'volatile'=18
|
||||
'interrupt'=19
|
||||
'reserve'=20
|
||||
'if'=21
|
||||
'else'=22
|
||||
'while'=23
|
||||
'do'=24
|
||||
'for'=25
|
||||
'return'=26
|
||||
'break'=27
|
||||
'continue'=28
|
||||
'asm'=29
|
||||
':'=30
|
||||
'..'=31
|
||||
'signed'=32
|
||||
'unsigned'=33
|
||||
'*'=34
|
||||
'['=35
|
||||
']'=36
|
||||
'struct'=37
|
||||
'enum'=38
|
||||
'.'=39
|
||||
'->'=40
|
||||
'sizeof'=41
|
||||
'typeid'=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
|
||||
'/='=68
|
||||
'%='=69
|
||||
'<<='=70
|
||||
'>>='=71
|
||||
'&='=72
|
||||
'|='=73
|
||||
'^='=74
|
||||
'kickasm'=75
|
||||
'resource'=76
|
||||
'uses'=77
|
||||
'clobbers'=78
|
||||
'bytes'=79
|
||||
'cycles'=80
|
||||
'.byte'=81
|
||||
'platform'=12
|
||||
'encoding'=13
|
||||
'const'=14
|
||||
'extern'=15
|
||||
'align'=16
|
||||
'register'=17
|
||||
'inline'=18
|
||||
'volatile'=19
|
||||
'interrupt'=20
|
||||
'reserve'=21
|
||||
'if'=22
|
||||
'else'=23
|
||||
'while'=24
|
||||
'do'=25
|
||||
'for'=26
|
||||
'return'=27
|
||||
'break'=28
|
||||
'continue'=29
|
||||
'asm'=30
|
||||
':'=31
|
||||
'..'=32
|
||||
'signed'=33
|
||||
'unsigned'=34
|
||||
'*'=35
|
||||
'['=36
|
||||
']'=37
|
||||
'struct'=38
|
||||
'enum'=39
|
||||
'.'=40
|
||||
'->'=41
|
||||
'sizeof'=42
|
||||
'typeid'=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
|
||||
'*='=68
|
||||
'/='=69
|
||||
'%='=70
|
||||
'<<='=71
|
||||
'>>='=72
|
||||
'&='=73
|
||||
'|='=74
|
||||
'^='=75
|
||||
'kickasm'=76
|
||||
'resource'=77
|
||||
'uses'=78
|
||||
'clobbers'=79
|
||||
'bytes'=80
|
||||
'cycles'=81
|
||||
'.byte'=82
|
||||
|
@ -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;
|
||||
@ -227,6 +227,18 @@ public class KickCBaseListener implements KickCListener {
|
||||
* <p>The default implementation does nothing.</p>
|
||||
*/
|
||||
@Override public void exitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* <p>The default implementation does nothing.</p>
|
||||
*/
|
||||
@Override public void enterGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx) { }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* <p>The default implementation does nothing.</p>
|
||||
*/
|
||||
@Override public void exitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx) { }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
|
@ -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;
|
||||
|
||||
@ -137,6 +137,13 @@ public class KickCBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements
|
||||
* {@link #visitChildren} on {@code ctx}.</p>
|
||||
*/
|
||||
@Override public T visitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { return visitChildren(ctx); }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* <p>The default implementation returns the result of calling
|
||||
* {@link #visitChildren} on {@code ctx}.</p>
|
||||
*/
|
||||
@Override public T visitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx) { return visitChildren(ctx); }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
|
@ -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;
|
||||
@ -28,10 +28,10 @@ public class KickCLexer extends Lexer {
|
||||
T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, T__64=65, T__65=66,
|
||||
T__66=67, T__67=68, T__68=69, T__69=70, T__70=71, T__71=72, T__72=73,
|
||||
T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, T__79=80,
|
||||
T__80=81, MNEMONIC=82, KICKASM=83, SIMPLETYPE=84, STRING=85, CHAR=86,
|
||||
BOOLEAN=87, NUMBER=88, NUMFLOAT=89, BINFLOAT=90, DECFLOAT=91, HEXFLOAT=92,
|
||||
NUMINT=93, BININTEGER=94, DECINTEGER=95, HEXINTEGER=96, NAME=97, ASMREL=98,
|
||||
WS=99, COMMENT_LINE=100, COMMENT_BLOCK=101;
|
||||
T__80=81, T__81=82, MNEMONIC=83, KICKASM=84, SIMPLETYPE=85, STRING=86,
|
||||
CHAR=87, BOOLEAN=88, NUMBER=89, NUMFLOAT=90, BINFLOAT=91, DECFLOAT=92,
|
||||
HEXFLOAT=93, NUMINT=94, BININTEGER=95, DECINTEGER=96, HEXINTEGER=97, NAME=98,
|
||||
ASMREL=99, WS=100, COMMENT_LINE=101, COMMENT_BLOCK=102;
|
||||
public static String[] channelNames = {
|
||||
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
|
||||
};
|
||||
@ -51,17 +51,17 @@ public class KickCLexer extends Lexer {
|
||||
"T__57", "T__58", "T__59", "T__60", "T__61", "T__62", "T__63", "T__64",
|
||||
"T__65", "T__66", "T__67", "T__68", "T__69", "T__70", "T__71", "T__72",
|
||||
"T__73", "T__74", "T__75", "T__76", "T__77", "T__78", "T__79", "T__80",
|
||||
"MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER",
|
||||
"NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER",
|
||||
"T__81", "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'", "';'", "'typedef'", "','", "'='", "'('", "')'", "'{'",
|
||||
"'}'", "'#'", "'pc'", "'encoding'", "'const'", "'extern'", "'align'",
|
||||
"'register'", "'inline'", "'volatile'", "'interrupt'", "'reserve'", "'if'",
|
||||
"'else'", "'while'", "'do'", "'for'", "'return'", "'break'", "'continue'",
|
||||
"'}'", "'#'", "'pc'", "'platform'", "'encoding'", "'const'", "'extern'",
|
||||
"'align'", "'register'", "'inline'", "'volatile'", "'interrupt'", "'reserve'",
|
||||
"'if'", "'else'", "'while'", "'do'", "'for'", "'return'", "'break'", "'continue'",
|
||||
"'asm'", "':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'",
|
||||
"'struct'", "'enum'", "'.'", "'->'", "'sizeof'", "'typeid'", "'--'", "'++'",
|
||||
"'+'", "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'",
|
||||
@ -77,7 +77,7 @@ 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, null, null, "MNEMONIC",
|
||||
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"
|
||||
@ -140,7 +140,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\2g\u040f\b\1\4\2\t"+
|
||||
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2h\u041a\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"+
|
||||
@ -152,369 +152,372 @@ public class KickCLexer extends Lexer {
|
||||
"\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]\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\t"+
|
||||
"k\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4"+
|
||||
"\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n\3\13\3\13\3\f\3\f\3\f"+
|
||||
"\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\17"+
|
||||
"\3\17\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21"+
|
||||
"\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22"+
|
||||
"\3\23\3\23\3\23\3\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\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\26"+
|
||||
"\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\31"+
|
||||
"\3\31\3\31\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\34"+
|
||||
"\3\34\3\34\3\34\3\34\3\34\3\35\3\35\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 \3 \3 \3!\3!\3!\3!\3!\3!\3!\3\"\3\"\3"+
|
||||
"\"\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3$\3$\3%\3%\3&\3&\3&\3&\3&\3&\3&\3\'"+
|
||||
"\3\'\3\'\3\'\3\'\3(\3(\3)\3)\3)\3*\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\66\3\66\3\67\3\67\38\38\39\39\3"+
|
||||
"9\3:\3:\3:\3;\3;\3;\3<\3<\3<\3=\3=\3>\3>\3?\3?\3?\3@\3@\3@\3A\3A\3B\3"+
|
||||
"B\3B\3C\3C\3C\3D\3D\3D\3E\3E\3E\3F\3F\3F\3G\3G\3G\3G\3H\3H\3H\3H\3I\3"+
|
||||
"I\3I\3J\3J\3J\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3"+
|
||||
"M\3M\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3Q\3"+
|
||||
"Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3S\3"+
|
||||
"S\3S\3S\3S\5S\u0310\nS\3T\3T\3T\3T\7T\u0316\nT\fT\16T\u0319\13T\3T\3T"+
|
||||
"\3T\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U"+
|
||||
"\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\5U\u0343\nU\3V\3V\3V\3V"+
|
||||
"\7V\u0349\nV\fV\16V\u034c\13V\3V\3V\5V\u0350\nV\3V\3V\5V\u0354\nV\5V\u0356"+
|
||||
"\nV\3V\5V\u0359\nV\3W\3W\3W\3W\5W\u035f\nW\3W\3W\3X\3X\3X\3X\3X\3X\3X"+
|
||||
"\3X\3X\5X\u036c\nX\3Y\3Y\5Y\u0370\nY\3Z\3Z\3Z\5Z\u0375\nZ\3[\3[\3[\3["+
|
||||
"\3[\5[\u037c\n[\3[\7[\u037f\n[\f[\16[\u0382\13[\3[\3[\6[\u0386\n[\r[\16"+
|
||||
"[\u0387\3\\\7\\\u038b\n\\\f\\\16\\\u038e\13\\\3\\\3\\\6\\\u0392\n\\\r"+
|
||||
"\\\16\\\u0393\3]\3]\3]\3]\3]\5]\u039b\n]\3]\7]\u039e\n]\f]\16]\u03a1\13"+
|
||||
"]\3]\3]\6]\u03a5\n]\r]\16]\u03a6\3^\3^\3^\5^\u03ac\n^\3^\3^\3^\5^\u03b1"+
|
||||
"\n^\3_\3_\3_\6_\u03b6\n_\r_\16_\u03b7\3_\3_\6_\u03bc\n_\r_\16_\u03bd\5"+
|
||||
"_\u03c0\n_\3`\6`\u03c3\n`\r`\16`\u03c4\3a\3a\3a\3a\3a\5a\u03cc\na\3a\6"+
|
||||
"a\u03cf\na\ra\16a\u03d0\3b\3b\3c\3c\3d\3d\3e\3e\7e\u03db\ne\fe\16e\u03de"+
|
||||
"\13e\3f\3f\3g\3g\3h\3h\7h\u03e6\nh\fh\16h\u03e9\13h\3h\6h\u03ec\nh\rh"+
|
||||
"\16h\u03ed\3i\6i\u03f1\ni\ri\16i\u03f2\3i\3i\3j\3j\3j\3j\7j\u03fb\nj\f"+
|
||||
"j\16j\u03fe\13j\3j\3j\3k\3k\3k\3k\7k\u0406\nk\fk\16k\u0409\13k\3k\3k\3"+
|
||||
"k\3k\3k\4\u0317\u0407\2l\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\62"+
|
||||
"c\63e\64g\65i\66k\67m8o9q:s;u<w=y>{?}@\177A\u0081B\u0083C\u0085D\u0087"+
|
||||
"E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009b"+
|
||||
"O\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00af"+
|
||||
"Y\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3"+
|
||||
"\2\u00c5\2\u00c7\2\u00c9c\u00cb\2\u00cd\2\u00cfd\u00d1e\u00d3f\u00d5g"+
|
||||
"\3\2\22\3\2$$\3\2||\4\2rruu\4\2ooww\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DD"+
|
||||
"dd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\6\2"+
|
||||
"\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\2\u0481\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\2"+
|
||||
"Y\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\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab"+
|
||||
"\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\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\2\u00bb\3\2\2\2\2\u00bd"+
|
||||
"\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c9\3\2\2\2\2\u00cf\3\2\2"+
|
||||
"\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\3\u00d7\3\2\2\2\5\u00de"+
|
||||
"\3\2\2\2\7\u00e0\3\2\2\2\t\u00e8\3\2\2\2\13\u00ea\3\2\2\2\r\u00ec\3\2"+
|
||||
"\2\2\17\u00ee\3\2\2\2\21\u00f0\3\2\2\2\23\u00f2\3\2\2\2\25\u00f4\3\2\2"+
|
||||
"\2\27\u00f6\3\2\2\2\31\u00f9\3\2\2\2\33\u0102\3\2\2\2\35\u0108\3\2\2\2"+
|
||||
"\37\u010f\3\2\2\2!\u0115\3\2\2\2#\u011e\3\2\2\2%\u0125\3\2\2\2\'\u012e"+
|
||||
"\3\2\2\2)\u0138\3\2\2\2+\u0140\3\2\2\2-\u0143\3\2\2\2/\u0148\3\2\2\2\61"+
|
||||
"\u014e\3\2\2\2\63\u0151\3\2\2\2\65\u0155\3\2\2\2\67\u015c\3\2\2\29\u0162"+
|
||||
"\3\2\2\2;\u016b\3\2\2\2=\u016f\3\2\2\2?\u0171\3\2\2\2A\u0174\3\2\2\2C"+
|
||||
"\u017b\3\2\2\2E\u0184\3\2\2\2G\u0186\3\2\2\2I\u0188\3\2\2\2K\u018a\3\2"+
|
||||
"\2\2M\u0191\3\2\2\2O\u0196\3\2\2\2Q\u0198\3\2\2\2S\u019b\3\2\2\2U\u01a2"+
|
||||
"\3\2\2\2W\u01a9\3\2\2\2Y\u01ac\3\2\2\2[\u01af\3\2\2\2]\u01b1\3\2\2\2_"+
|
||||
"\u01b3\3\2\2\2a\u01b5\3\2\2\2c\u01b7\3\2\2\2e\u01b9\3\2\2\2g\u01bc\3\2"+
|
||||
"\2\2i\u01bf\3\2\2\2k\u01c1\3\2\2\2m\u01c3\3\2\2\2o\u01c5\3\2\2\2q\u01c7"+
|
||||
"\3\2\2\2s\u01ca\3\2\2\2u\u01cd\3\2\2\2w\u01d0\3\2\2\2y\u01d3\3\2\2\2{"+
|
||||
"\u01d5\3\2\2\2}\u01d7\3\2\2\2\177\u01da\3\2\2\2\u0081\u01dd\3\2\2\2\u0083"+
|
||||
"\u01df\3\2\2\2\u0085\u01e2\3\2\2\2\u0087\u01e5\3\2\2\2\u0089\u01e8\3\2"+
|
||||
"\2\2\u008b\u01eb\3\2\2\2\u008d\u01ee\3\2\2\2\u008f\u01f2\3\2\2\2\u0091"+
|
||||
"\u01f6\3\2\2\2\u0093\u01f9\3\2\2\2\u0095\u01fc\3\2\2\2\u0097\u01ff\3\2"+
|
||||
"\2\2\u0099\u0207\3\2\2\2\u009b\u0210\3\2\2\2\u009d\u0215\3\2\2\2\u009f"+
|
||||
"\u021e\3\2\2\2\u00a1\u0224\3\2\2\2\u00a3\u022b\3\2\2\2\u00a5\u030f\3\2"+
|
||||
"\2\2\u00a7\u0311\3\2\2\2\u00a9\u0342\3\2\2\2\u00ab\u0344\3\2\2\2\u00ad"+
|
||||
"\u035a\3\2\2\2\u00af\u036b\3\2\2\2\u00b1\u036f\3\2\2\2\u00b3\u0374\3\2"+
|
||||
"\2\2\u00b5\u037b\3\2\2\2\u00b7\u038c\3\2\2\2\u00b9\u039a\3\2\2\2\u00bb"+
|
||||
"\u03ab\3\2\2\2\u00bd\u03bf\3\2\2\2\u00bf\u03c2\3\2\2\2\u00c1\u03cb\3\2"+
|
||||
"\2\2\u00c3\u03d2\3\2\2\2\u00c5\u03d4\3\2\2\2\u00c7\u03d6\3\2\2\2\u00c9"+
|
||||
"\u03d8\3\2\2\2\u00cb\u03df\3\2\2\2\u00cd\u03e1\3\2\2\2\u00cf\u03e3\3\2"+
|
||||
"\2\2\u00d1\u03f0\3\2\2\2\u00d3\u03f6\3\2\2\2\u00d5\u0401\3\2\2\2\u00d7"+
|
||||
"\u00d8\7k\2\2\u00d8\u00d9\7o\2\2\u00d9\u00da\7r\2\2\u00da\u00db\7q\2\2"+
|
||||
"\u00db\u00dc\7t\2\2\u00dc\u00dd\7v\2\2\u00dd\4\3\2\2\2\u00de\u00df\7="+
|
||||
"\2\2\u00df\6\3\2\2\2\u00e0\u00e1\7v\2\2\u00e1\u00e2\7{\2\2\u00e2\u00e3"+
|
||||
"\7r\2\2\u00e3\u00e4\7g\2\2\u00e4\u00e5\7f\2\2\u00e5\u00e6\7g\2\2\u00e6"+
|
||||
"\u00e7\7h\2\2\u00e7\b\3\2\2\2\u00e8\u00e9\7.\2\2\u00e9\n\3\2\2\2\u00ea"+
|
||||
"\u00eb\7?\2\2\u00eb\f\3\2\2\2\u00ec\u00ed\7*\2\2\u00ed\16\3\2\2\2\u00ee"+
|
||||
"\u00ef\7+\2\2\u00ef\20\3\2\2\2\u00f0\u00f1\7}\2\2\u00f1\22\3\2\2\2\u00f2"+
|
||||
"\u00f3\7\177\2\2\u00f3\24\3\2\2\2\u00f4\u00f5\7%\2\2\u00f5\26\3\2\2\2"+
|
||||
"\u00f6\u00f7\7r\2\2\u00f7\u00f8\7e\2\2\u00f8\30\3\2\2\2\u00f9\u00fa\7"+
|
||||
"g\2\2\u00fa\u00fb\7p\2\2\u00fb\u00fc\7e\2\2\u00fc\u00fd\7q\2\2\u00fd\u00fe"+
|
||||
"\7f\2\2\u00fe\u00ff\7k\2\2\u00ff\u0100\7p\2\2\u0100\u0101\7i\2\2\u0101"+
|
||||
"\32\3\2\2\2\u0102\u0103\7e\2\2\u0103\u0104\7q\2\2\u0104\u0105\7p\2\2\u0105"+
|
||||
"\u0106\7u\2\2\u0106\u0107\7v\2\2\u0107\34\3\2\2\2\u0108\u0109\7g\2\2\u0109"+
|
||||
"\u010a\7z\2\2\u010a\u010b\7v\2\2\u010b\u010c\7g\2\2\u010c\u010d\7t\2\2"+
|
||||
"\u010d\u010e\7p\2\2\u010e\36\3\2\2\2\u010f\u0110\7c\2\2\u0110\u0111\7"+
|
||||
"n\2\2\u0111\u0112\7k\2\2\u0112\u0113\7i\2\2\u0113\u0114\7p\2\2\u0114 "+
|
||||
"\3\2\2\2\u0115\u0116\7t\2\2\u0116\u0117\7g\2\2\u0117\u0118\7i\2\2\u0118"+
|
||||
"\u0119\7k\2\2\u0119\u011a\7u\2\2\u011a\u011b\7v\2\2\u011b\u011c\7g\2\2"+
|
||||
"\u011c\u011d\7t\2\2\u011d\"\3\2\2\2\u011e\u011f\7k\2\2\u011f\u0120\7p"+
|
||||
"\2\2\u0120\u0121\7n\2\2\u0121\u0122\7k\2\2\u0122\u0123\7p\2\2\u0123\u0124"+
|
||||
"\7g\2\2\u0124$\3\2\2\2\u0125\u0126\7x\2\2\u0126\u0127\7q\2\2\u0127\u0128"+
|
||||
"\7n\2\2\u0128\u0129\7c\2\2\u0129\u012a\7v\2\2\u012a\u012b\7k\2\2\u012b"+
|
||||
"\u012c\7n\2\2\u012c\u012d\7g\2\2\u012d&\3\2\2\2\u012e\u012f\7k\2\2\u012f"+
|
||||
"\u0130\7p\2\2\u0130\u0131\7v\2\2\u0131\u0132\7g\2\2\u0132\u0133\7t\2\2"+
|
||||
"\u0133\u0134\7t\2\2\u0134\u0135\7w\2\2\u0135\u0136\7r\2\2\u0136\u0137"+
|
||||
"\7v\2\2\u0137(\3\2\2\2\u0138\u0139\7t\2\2\u0139\u013a\7g\2\2\u013a\u013b"+
|
||||
"\7u\2\2\u013b\u013c\7g\2\2\u013c\u013d\7t\2\2\u013d\u013e\7x\2\2\u013e"+
|
||||
"\u013f\7g\2\2\u013f*\3\2\2\2\u0140\u0141\7k\2\2\u0141\u0142\7h\2\2\u0142"+
|
||||
",\3\2\2\2\u0143\u0144\7g\2\2\u0144\u0145\7n\2\2\u0145\u0146\7u\2\2\u0146"+
|
||||
"\u0147\7g\2\2\u0147.\3\2\2\2\u0148\u0149\7y\2\2\u0149\u014a\7j\2\2\u014a"+
|
||||
"\u014b\7k\2\2\u014b\u014c\7n\2\2\u014c\u014d\7g\2\2\u014d\60\3\2\2\2\u014e"+
|
||||
"\u014f\7f\2\2\u014f\u0150\7q\2\2\u0150\62\3\2\2\2\u0151\u0152\7h\2\2\u0152"+
|
||||
"\u0153\7q\2\2\u0153\u0154\7t\2\2\u0154\64\3\2\2\2\u0155\u0156\7t\2\2\u0156"+
|
||||
"\u0157\7g\2\2\u0157\u0158\7v\2\2\u0158\u0159\7w\2\2\u0159\u015a\7t\2\2"+
|
||||
"\u015a\u015b\7p\2\2\u015b\66\3\2\2\2\u015c\u015d\7d\2\2\u015d\u015e\7"+
|
||||
"t\2\2\u015e\u015f\7g\2\2\u015f\u0160\7c\2\2\u0160\u0161\7m\2\2\u01618"+
|
||||
"\3\2\2\2\u0162\u0163\7e\2\2\u0163\u0164\7q\2\2\u0164\u0165\7p\2\2\u0165"+
|
||||
"\u0166\7v\2\2\u0166\u0167\7k\2\2\u0167\u0168\7p\2\2\u0168\u0169\7w\2\2"+
|
||||
"\u0169\u016a\7g\2\2\u016a:\3\2\2\2\u016b\u016c\7c\2\2\u016c\u016d\7u\2"+
|
||||
"\2\u016d\u016e\7o\2\2\u016e<\3\2\2\2\u016f\u0170\7<\2\2\u0170>\3\2\2\2"+
|
||||
"\u0171\u0172\7\60\2\2\u0172\u0173\7\60\2\2\u0173@\3\2\2\2\u0174\u0175"+
|
||||
"\7u\2\2\u0175\u0176\7k\2\2\u0176\u0177\7i\2\2\u0177\u0178\7p\2\2\u0178"+
|
||||
"\u0179\7g\2\2\u0179\u017a\7f\2\2\u017aB\3\2\2\2\u017b\u017c\7w\2\2\u017c"+
|
||||
"\u017d\7p\2\2\u017d\u017e\7u\2\2\u017e\u017f\7k\2\2\u017f\u0180\7i\2\2"+
|
||||
"\u0180\u0181\7p\2\2\u0181\u0182\7g\2\2\u0182\u0183\7f\2\2\u0183D\3\2\2"+
|
||||
"\2\u0184\u0185\7,\2\2\u0185F\3\2\2\2\u0186\u0187\7]\2\2\u0187H\3\2\2\2"+
|
||||
"\u0188\u0189\7_\2\2\u0189J\3\2\2\2\u018a\u018b\7u\2\2\u018b\u018c\7v\2"+
|
||||
"\2\u018c\u018d\7t\2\2\u018d\u018e\7w\2\2\u018e\u018f\7e\2\2\u018f\u0190"+
|
||||
"\7v\2\2\u0190L\3\2\2\2\u0191\u0192\7g\2\2\u0192\u0193\7p\2\2\u0193\u0194"+
|
||||
"\7w\2\2\u0194\u0195\7o\2\2\u0195N\3\2\2\2\u0196\u0197\7\60\2\2\u0197P"+
|
||||
"\3\2\2\2\u0198\u0199\7/\2\2\u0199\u019a\7@\2\2\u019aR\3\2\2\2\u019b\u019c"+
|
||||
"\7u\2\2\u019c\u019d\7k\2\2\u019d\u019e\7|\2\2\u019e\u019f\7g\2\2\u019f"+
|
||||
"\u01a0\7q\2\2\u01a0\u01a1\7h\2\2\u01a1T\3\2\2\2\u01a2\u01a3\7v\2\2\u01a3"+
|
||||
"\u01a4\7{\2\2\u01a4\u01a5\7r\2\2\u01a5\u01a6\7g\2\2\u01a6\u01a7\7k\2\2"+
|
||||
"\u01a7\u01a8\7f\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-\2\2\u01b0\\\3\2\2\2\u01b1\u01b2\7/\2\2\u01b2^\3\2\2\2"+
|
||||
"\u01b3\u01b4\7#\2\2\u01b4`\3\2\2\2\u01b5\u01b6\7(\2\2\u01b6b\3\2\2\2\u01b7"+
|
||||
"\u01b8\7\u0080\2\2\u01b8d\3\2\2\2\u01b9\u01ba\7@\2\2\u01ba\u01bb\7@\2"+
|
||||
"\2\u01bbf\3\2\2\2\u01bc\u01bd\7>\2\2\u01bd\u01be\7>\2\2\u01beh\3\2\2\2"+
|
||||
"\u01bf\u01c0\7\61\2\2\u01c0j\3\2\2\2\u01c1\u01c2\7\'\2\2\u01c2l\3\2\2"+
|
||||
"\2\u01c3\u01c4\7>\2\2\u01c4n\3\2\2\2\u01c5\u01c6\7@\2\2\u01c6p\3\2\2\2"+
|
||||
"\u01c7\u01c8\7?\2\2\u01c8\u01c9\7?\2\2\u01c9r\3\2\2\2\u01ca\u01cb\7#\2"+
|
||||
"\2\u01cb\u01cc\7?\2\2\u01cct\3\2\2\2\u01cd\u01ce\7>\2\2\u01ce\u01cf\7"+
|
||||
"?\2\2\u01cfv\3\2\2\2\u01d0\u01d1\7@\2\2\u01d1\u01d2\7?\2\2\u01d2x\3\2"+
|
||||
"\2\2\u01d3\u01d4\7`\2\2\u01d4z\3\2\2\2\u01d5\u01d6\7~\2\2\u01d6|\3\2\2"+
|
||||
"\2\u01d7\u01d8\7(\2\2\u01d8\u01d9\7(\2\2\u01d9~\3\2\2\2\u01da\u01db\7"+
|
||||
"~\2\2\u01db\u01dc\7~\2\2\u01dc\u0080\3\2\2\2\u01dd\u01de\7A\2\2\u01de"+
|
||||
"\u0082\3\2\2\2\u01df\u01e0\7-\2\2\u01e0\u01e1\7?\2\2\u01e1\u0084\3\2\2"+
|
||||
"\2\u01e2\u01e3\7/\2\2\u01e3\u01e4\7?\2\2\u01e4\u0086\3\2\2\2\u01e5\u01e6"+
|
||||
"\7,\2\2\u01e6\u01e7\7?\2\2\u01e7\u0088\3\2\2\2\u01e8\u01e9\7\61\2\2\u01e9"+
|
||||
"\u01ea\7?\2\2\u01ea\u008a\3\2\2\2\u01eb\u01ec\7\'\2\2\u01ec\u01ed\7?\2"+
|
||||
"\2\u01ed\u008c\3\2\2\2\u01ee\u01ef\7>\2\2\u01ef\u01f0\7>\2\2\u01f0\u01f1"+
|
||||
"\7?\2\2\u01f1\u008e\3\2\2\2\u01f2\u01f3\7@\2\2\u01f3\u01f4\7@\2\2\u01f4"+
|
||||
"\u01f5\7?\2\2\u01f5\u0090\3\2\2\2\u01f6\u01f7\7(\2\2\u01f7\u01f8\7?\2"+
|
||||
"\2\u01f8\u0092\3\2\2\2\u01f9\u01fa\7~\2\2\u01fa\u01fb\7?\2\2\u01fb\u0094"+
|
||||
"\3\2\2\2\u01fc\u01fd\7`\2\2\u01fd\u01fe\7?\2\2\u01fe\u0096\3\2\2\2\u01ff"+
|
||||
"\u0200\7m\2\2\u0200\u0201\7k\2\2\u0201\u0202\7e\2\2\u0202\u0203\7m\2\2"+
|
||||
"\u0203\u0204\7c\2\2\u0204\u0205\7u\2\2\u0205\u0206\7o\2\2\u0206\u0098"+
|
||||
"\3\2\2\2\u0207\u0208\7t\2\2\u0208\u0209\7g\2\2\u0209\u020a\7u\2\2\u020a"+
|
||||
"\u020b\7q\2\2\u020b\u020c\7w\2\2\u020c\u020d\7t\2\2\u020d\u020e\7e\2\2"+
|
||||
"\u020e\u020f\7g\2\2\u020f\u009a\3\2\2\2\u0210\u0211\7w\2\2\u0211\u0212"+
|
||||
"\7u\2\2\u0212\u0213\7g\2\2\u0213\u0214\7u\2\2\u0214\u009c\3\2\2\2\u0215"+
|
||||
"\u0216\7e\2\2\u0216\u0217\7n\2\2\u0217\u0218\7q\2\2\u0218\u0219\7d\2\2"+
|
||||
"\u0219\u021a\7d\2\2\u021a\u021b\7g\2\2\u021b\u021c\7t\2\2\u021c\u021d"+
|
||||
"\7u\2\2\u021d\u009e\3\2\2\2\u021e\u021f\7d\2\2\u021f\u0220\7{\2\2\u0220"+
|
||||
"\u0221\7v\2\2\u0221\u0222\7g\2\2\u0222\u0223\7u\2\2\u0223\u00a0\3\2\2"+
|
||||
"\2\u0224\u0225\7e\2\2\u0225\u0226\7{\2\2\u0226\u0227\7e\2\2\u0227\u0228"+
|
||||
"\7n\2\2\u0228\u0229\7g\2\2\u0229\u022a\7u\2\2\u022a\u00a2\3\2\2\2\u022b"+
|
||||
"\u022c\7\60\2\2\u022c\u022d\7d\2\2\u022d\u022e\7{\2\2\u022e\u022f\7v\2"+
|
||||
"\2\u022f\u0230\7g\2\2\u0230\u00a4\3\2\2\2\u0231\u0232\7d\2\2\u0232\u0233"+
|
||||
"\7t\2\2\u0233\u0310\7m\2\2\u0234\u0235\7q\2\2\u0235\u0236\7t\2\2\u0236"+
|
||||
"\u0310\7c\2\2\u0237\u0238\7m\2\2\u0238\u0239\7k\2\2\u0239\u0310\7n\2\2"+
|
||||
"\u023a\u023b\7u\2\2\u023b\u023c\7n\2\2\u023c\u0310\7q\2\2\u023d\u023e"+
|
||||
"\7p\2\2\u023e\u023f\7q\2\2\u023f\u0310\7r\2\2\u0240\u0241\7c\2\2\u0241"+
|
||||
"\u0242\7u\2\2\u0242\u0310\7n\2\2\u0243\u0244\7r\2\2\u0244\u0245\7j\2\2"+
|
||||
"\u0245\u0310\7r\2\2\u0246\u0247\7c\2\2\u0247\u0248\7p\2\2\u0248\u0310"+
|
||||
"\7e\2\2\u0249\u024a\7d\2\2\u024a\u024b\7r\2\2\u024b\u0310\7n\2\2\u024c"+
|
||||
"\u024d\7e\2\2\u024d\u024e\7n\2\2\u024e\u0310\7e\2\2\u024f\u0250\7l\2\2"+
|
||||
"\u0250\u0251\7u\2\2\u0251\u0310\7t\2\2\u0252\u0253\7c\2\2\u0253\u0254"+
|
||||
"\7p\2\2\u0254\u0310\7f\2\2\u0255\u0256\7t\2\2\u0256\u0257\7n\2\2\u0257"+
|
||||
"\u0310\7c\2\2\u0258\u0259\7d\2\2\u0259\u025a\7k\2\2\u025a\u0310\7v\2\2"+
|
||||
"\u025b\u025c\7t\2\2\u025c\u025d\7q\2\2\u025d\u0310\7n\2\2\u025e\u025f"+
|
||||
"\7r\2\2\u025f\u0260\7n\2\2\u0260\u0310\7c\2\2\u0261\u0262\7r\2\2\u0262"+
|
||||
"\u0263\7n\2\2\u0263\u0310\7r\2\2\u0264\u0265\7d\2\2\u0265\u0266\7o\2\2"+
|
||||
"\u0266\u0310\7k\2\2\u0267\u0268\7u\2\2\u0268\u0269\7g\2\2\u0269\u0310"+
|
||||
"\7e\2\2\u026a\u026b\7t\2\2\u026b\u026c\7v\2\2\u026c\u0310\7k\2\2\u026d"+
|
||||
"\u026e\7g\2\2\u026e\u026f\7q\2\2\u026f\u0310\7t\2\2\u0270\u0271\7u\2\2"+
|
||||
"\u0271\u0272\7t\2\2\u0272\u0310\7g\2\2\u0273\u0274\7n\2\2\u0274\u0275"+
|
||||
"\7u\2\2\u0275\u0310\7t\2\2\u0276\u0277\7r\2\2\u0277\u0278\7j\2\2\u0278"+
|
||||
"\u0310\7c\2\2\u0279\u027a\7c\2\2\u027a\u027b\7n\2\2\u027b\u0310\7t\2\2"+
|
||||
"\u027c\u027d\7l\2\2\u027d\u027e\7o\2\2\u027e\u0310\7r\2\2\u027f\u0280"+
|
||||
"\7d\2\2\u0280\u0281\7x\2\2\u0281\u0310\7e\2\2\u0282\u0283\7e\2\2\u0283"+
|
||||
"\u0284\7n\2\2\u0284\u0310\7k\2\2\u0285\u0286\7t\2\2\u0286\u0287\7v\2\2"+
|
||||
"\u0287\u0310\7u\2\2\u0288\u0289\7c\2\2\u0289\u028a\7f\2\2\u028a\u0310"+
|
||||
"\7e\2\2\u028b\u028c\7t\2\2\u028c\u028d\7t\2\2\u028d\u0310\7c\2\2\u028e"+
|
||||
"\u028f\7d\2\2\u028f\u0290\7x\2\2\u0290\u0310\7u\2\2\u0291\u0292\7u\2\2"+
|
||||
"\u0292\u0293\7g\2\2\u0293\u0310\7k\2\2\u0294\u0295\7u\2\2\u0295\u0296"+
|
||||
"\7c\2\2\u0296\u0310\7z\2\2\u0297\u0298\7u\2\2\u0298\u0299\7v\2\2\u0299"+
|
||||
"\u0310\7{\2\2\u029a\u029b\7u\2\2\u029b\u029c\7v\2\2\u029c\u0310\7c\2\2"+
|
||||
"\u029d\u029e\7u\2\2\u029e\u029f\7v\2\2\u029f\u0310\7z\2\2\u02a0\u02a1"+
|
||||
"\7f\2\2\u02a1\u02a2\7g\2\2\u02a2\u0310\7{\2\2\u02a3\u02a4\7v\2\2\u02a4"+
|
||||
"\u02a5\7z\2\2\u02a5\u0310\7c\2\2\u02a6\u02a7\7z\2\2\u02a7\u02a8\7c\2\2"+
|
||||
"\u02a8\u0310\7c\2\2\u02a9\u02aa\7d\2\2\u02aa\u02ab\7e\2\2\u02ab\u0310"+
|
||||
"\7e\2\2\u02ac\u02ad\7c\2\2\u02ad\u02ae\7j\2\2\u02ae\u0310\7z\2\2\u02af"+
|
||||
"\u02b0\7v\2\2\u02b0\u02b1\7{\2\2\u02b1\u0310\7c\2\2\u02b2\u02b3\7v\2\2"+
|
||||
"\u02b3\u02b4\7z\2\2\u02b4\u0310\7u\2\2\u02b5\u02b6\7v\2\2\u02b6\u02b7"+
|
||||
"\7c\2\2\u02b7\u0310\7u\2\2\u02b8\u02b9\7u\2\2\u02b9\u02ba\7j\2\2\u02ba"+
|
||||
"\u0310\7{\2\2\u02bb\u02bc\7u\2\2\u02bc\u02bd\7j\2\2\u02bd\u0310\7z\2\2"+
|
||||
"\u02be\u02bf\7n\2\2\u02bf\u02c0\7f\2\2\u02c0\u0310\7{\2\2\u02c1\u02c2"+
|
||||
"\7n\2\2\u02c2\u02c3\7f\2\2\u02c3\u0310\7c\2\2\u02c4\u02c5\7n\2\2\u02c5"+
|
||||
"\u02c6\7f\2\2\u02c6\u0310\7z\2\2\u02c7\u02c8\7n\2\2\u02c8\u02c9\7c\2\2"+
|
||||
"\u02c9\u0310\7z\2\2\u02ca\u02cb\7v\2\2\u02cb\u02cc\7c\2\2\u02cc\u0310"+
|
||||
"\7{\2\2\u02cd\u02ce\7v\2\2\u02ce\u02cf\7c\2\2\u02cf\u0310\7z\2\2\u02d0"+
|
||||
"\u02d1\7d\2\2\u02d1\u02d2\7e\2\2\u02d2\u0310\7u\2\2\u02d3\u02d4\7e\2\2"+
|
||||
"\u02d4\u02d5\7n\2\2\u02d5\u0310\7x\2\2\u02d6\u02d7\7v\2\2\u02d7\u02d8"+
|
||||
"\7u\2\2\u02d8\u0310\7z\2\2\u02d9\u02da\7n\2\2\u02da\u02db\7c\2\2\u02db"+
|
||||
"\u0310\7u\2\2\u02dc\u02dd\7e\2\2\u02dd\u02de\7r\2\2\u02de\u0310\7{\2\2"+
|
||||
"\u02df\u02e0\7e\2\2\u02e0\u02e1\7o\2\2\u02e1\u0310\7r\2\2\u02e2\u02e3"+
|
||||
"\7e\2\2\u02e3\u02e4\7r\2\2\u02e4\u0310\7z\2\2\u02e5\u02e6\7f\2\2\u02e6"+
|
||||
"\u02e7\7e\2\2\u02e7\u0310\7r\2\2\u02e8\u02e9\7f\2\2\u02e9\u02ea\7g\2\2"+
|
||||
"\u02ea\u0310\7e\2\2\u02eb\u02ec\7k\2\2\u02ec\u02ed\7p\2\2\u02ed\u0310"+
|
||||
"\7e\2\2\u02ee\u02ef\7c\2\2\u02ef\u02f0\7z\2\2\u02f0\u0310\7u\2\2\u02f1"+
|
||||
"\u02f2\7d\2\2\u02f2\u02f3\7p\2\2\u02f3\u0310\7g\2\2\u02f4\u02f5\7e\2\2"+
|
||||
"\u02f5\u02f6\7n\2\2\u02f6\u0310\7f\2\2\u02f7\u02f8\7u\2\2\u02f8\u02f9"+
|
||||
"\7d\2\2\u02f9\u0310\7e\2\2\u02fa\u02fb\7k\2\2\u02fb\u02fc\7u\2\2\u02fc"+
|
||||
"\u0310\7e\2\2\u02fd\u02fe\7k\2\2\u02fe\u02ff\7p\2\2\u02ff\u0310\7z\2\2"+
|
||||
"\u0300\u0301\7d\2\2\u0301\u0302\7g\2\2\u0302\u0310\7s\2\2\u0303\u0304"+
|
||||
"\7u\2\2\u0304\u0305\7g\2\2\u0305\u0310\7f\2\2\u0306\u0307\7f\2\2\u0307"+
|
||||
"\u0308\7g\2\2\u0308\u0310\7z\2\2\u0309\u030a\7k\2\2\u030a\u030b\7p\2\2"+
|
||||
"\u030b\u0310\7{\2\2\u030c\u030d\7t\2\2\u030d\u030e\7q\2\2\u030e\u0310"+
|
||||
"\7t\2\2\u030f\u0231\3\2\2\2\u030f\u0234\3\2\2\2\u030f\u0237\3\2\2\2\u030f"+
|
||||
"\u023a\3\2\2\2\u030f\u023d\3\2\2\2\u030f\u0240\3\2\2\2\u030f\u0243\3\2"+
|
||||
"\2\2\u030f\u0246\3\2\2\2\u030f\u0249\3\2\2\2\u030f\u024c\3\2\2\2\u030f"+
|
||||
"\u024f\3\2\2\2\u030f\u0252\3\2\2\2\u030f\u0255\3\2\2\2\u030f\u0258\3\2"+
|
||||
"\2\2\u030f\u025b\3\2\2\2\u030f\u025e\3\2\2\2\u030f\u0261\3\2\2\2\u030f"+
|
||||
"\u0264\3\2\2\2\u030f\u0267\3\2\2\2\u030f\u026a\3\2\2\2\u030f\u026d\3\2"+
|
||||
"\2\2\u030f\u0270\3\2\2\2\u030f\u0273\3\2\2\2\u030f\u0276\3\2\2\2\u030f"+
|
||||
"\u0279\3\2\2\2\u030f\u027c\3\2\2\2\u030f\u027f\3\2\2\2\u030f\u0282\3\2"+
|
||||
"\2\2\u030f\u0285\3\2\2\2\u030f\u0288\3\2\2\2\u030f\u028b\3\2\2\2\u030f"+
|
||||
"\u028e\3\2\2\2\u030f\u0291\3\2\2\2\u030f\u0294\3\2\2\2\u030f\u0297\3\2"+
|
||||
"\2\2\u030f\u029a\3\2\2\2\u030f\u029d\3\2\2\2\u030f\u02a0\3\2\2\2\u030f"+
|
||||
"\u02a3\3\2\2\2\u030f\u02a6\3\2\2\2\u030f\u02a9\3\2\2\2\u030f\u02ac\3\2"+
|
||||
"\2\2\u030f\u02af\3\2\2\2\u030f\u02b2\3\2\2\2\u030f\u02b5\3\2\2\2\u030f"+
|
||||
"\u02b8\3\2\2\2\u030f\u02bb\3\2\2\2\u030f\u02be\3\2\2\2\u030f\u02c1\3\2"+
|
||||
"\2\2\u030f\u02c4\3\2\2\2\u030f\u02c7\3\2\2\2\u030f\u02ca\3\2\2\2\u030f"+
|
||||
"\u02cd\3\2\2\2\u030f\u02d0\3\2\2\2\u030f\u02d3\3\2\2\2\u030f\u02d6\3\2"+
|
||||
"\2\2\u030f\u02d9\3\2\2\2\u030f\u02dc\3\2\2\2\u030f\u02df\3\2\2\2\u030f"+
|
||||
"\u02e2\3\2\2\2\u030f\u02e5\3\2\2\2\u030f\u02e8\3\2\2\2\u030f\u02eb\3\2"+
|
||||
"\2\2\u030f\u02ee\3\2\2\2\u030f\u02f1\3\2\2\2\u030f\u02f4\3\2\2\2\u030f"+
|
||||
"\u02f7\3\2\2\2\u030f\u02fa\3\2\2\2\u030f\u02fd\3\2\2\2\u030f\u0300\3\2"+
|
||||
"\2\2\u030f\u0303\3\2\2\2\u030f\u0306\3\2\2\2\u030f\u0309\3\2\2\2\u030f"+
|
||||
"\u030c\3\2\2\2\u0310\u00a6\3\2\2\2\u0311\u0312\7}\2\2\u0312\u0313\7}\2"+
|
||||
"\2\u0313\u0317\3\2\2\2\u0314\u0316\13\2\2\2\u0315\u0314\3\2\2\2\u0316"+
|
||||
"\u0319\3\2\2\2\u0317\u0318\3\2\2\2\u0317\u0315\3\2\2\2\u0318\u031a\3\2"+
|
||||
"\2\2\u0319\u0317\3\2\2\2\u031a\u031b\7\177\2\2\u031b\u031c\7\177\2\2\u031c"+
|
||||
"\u00a8\3\2\2\2\u031d\u031e\7d\2\2\u031e\u031f\7{\2\2\u031f\u0320\7v\2"+
|
||||
"\2\u0320\u0343\7g\2\2\u0321\u0322\7y\2\2\u0322\u0323\7q\2\2\u0323\u0324"+
|
||||
"\7t\2\2\u0324\u0343\7f\2\2\u0325\u0326\7f\2\2\u0326\u0327\7y\2\2\u0327"+
|
||||
"\u0328\7q\2\2\u0328\u0329\7t\2\2\u0329\u0343\7f\2\2\u032a\u032b\7d\2\2"+
|
||||
"\u032b\u032c\7q\2\2\u032c\u032d\7q\2\2\u032d\u0343\7n\2\2\u032e\u032f"+
|
||||
"\7e\2\2\u032f\u0330\7j\2\2\u0330\u0331\7c\2\2\u0331\u0343\7t\2\2\u0332"+
|
||||
"\u0333\7u\2\2\u0333\u0334\7j\2\2\u0334\u0335\7q\2\2\u0335\u0336\7t\2\2"+
|
||||
"\u0336\u0343\7v\2\2\u0337\u0338\7k\2\2\u0338\u0339\7p\2\2\u0339\u0343"+
|
||||
"\7v\2\2\u033a\u033b\7n\2\2\u033b\u033c\7q\2\2\u033c\u033d\7p\2\2\u033d"+
|
||||
"\u0343\7i\2\2\u033e\u033f\7x\2\2\u033f\u0340\7q\2\2\u0340\u0341\7k\2\2"+
|
||||
"\u0341\u0343\7f\2\2\u0342\u031d\3\2\2\2\u0342\u0321\3\2\2\2\u0342\u0325"+
|
||||
"\3\2\2\2\u0342\u032a\3\2\2\2\u0342\u032e\3\2\2\2\u0342\u0332\3\2\2\2\u0342"+
|
||||
"\u0337\3\2\2\2\u0342\u033a\3\2\2\2\u0342\u033e\3\2\2\2\u0343\u00aa\3\2"+
|
||||
"\2\2\u0344\u034a\7$\2\2\u0345\u0346\7^\2\2\u0346\u0349\7$\2\2\u0347\u0349"+
|
||||
"\n\2\2\2\u0348\u0345\3\2\2\2\u0348\u0347\3\2\2\2\u0349\u034c\3\2\2\2\u034a"+
|
||||
"\u0348\3\2\2\2\u034a\u034b\3\2\2\2\u034b\u034d\3\2\2\2\u034c\u034a\3\2"+
|
||||
"\2\2\u034d\u034f\7$\2\2\u034e\u0350\t\3\2\2\u034f\u034e\3\2\2\2\u034f"+
|
||||
"\u0350\3\2\2\2\u0350\u0355\3\2\2\2\u0351\u0353\t\4\2\2\u0352\u0354\t\5"+
|
||||
"\2\2\u0353\u0352\3\2\2\2\u0353\u0354\3\2\2\2\u0354\u0356\3\2\2\2\u0355"+
|
||||
"\u0351\3\2\2\2\u0355\u0356\3\2\2\2\u0356\u0358\3\2\2\2\u0357\u0359\t\3"+
|
||||
"\2\2\u0358\u0357\3\2\2\2\u0358\u0359\3\2\2\2\u0359\u00ac\3\2\2\2\u035a"+
|
||||
"\u035e\7)\2\2\u035b\u035c\7^\2\2\u035c\u035f\7)\2\2\u035d\u035f\n\6\2"+
|
||||
"\2\u035e\u035b\3\2\2\2\u035e\u035d\3\2\2\2\u035f\u0360\3\2\2\2\u0360\u0361"+
|
||||
"\7)\2\2\u0361\u00ae\3\2\2\2\u0362\u0363\7v\2\2\u0363\u0364\7t\2\2\u0364"+
|
||||
"\u0365\7w\2\2\u0365\u036c\7g\2\2\u0366\u0367\7h\2\2\u0367\u0368\7c\2\2"+
|
||||
"\u0368\u0369\7n\2\2\u0369\u036a\7u\2\2\u036a\u036c\7g\2\2\u036b\u0362"+
|
||||
"\3\2\2\2\u036b\u0366\3\2\2\2\u036c\u00b0\3\2\2\2\u036d\u0370\5\u00b3Z"+
|
||||
"\2\u036e\u0370\5\u00bb^\2\u036f\u036d\3\2\2\2\u036f\u036e\3\2\2\2\u0370"+
|
||||
"\u00b2\3\2\2\2\u0371\u0375\5\u00b5[\2\u0372\u0375\5\u00b7\\\2\u0373\u0375"+
|
||||
"\5\u00b9]\2\u0374\u0371\3\2\2\2\u0374\u0372\3\2\2\2\u0374\u0373\3\2\2"+
|
||||
"\2\u0375\u00b4\3\2\2\2\u0376\u037c\7\'\2\2\u0377\u0378\7\62\2\2\u0378"+
|
||||
"\u037c\7d\2\2\u0379\u037a\7\62\2\2\u037a\u037c\7D\2\2\u037b\u0376\3\2"+
|
||||
"\2\2\u037b\u0377\3\2\2\2\u037b\u0379\3\2\2\2\u037c\u0380\3\2\2\2\u037d"+
|
||||
"\u037f\5\u00c3b\2\u037e\u037d\3\2\2\2\u037f\u0382\3\2\2\2\u0380\u037e"+
|
||||
"\3\2\2\2\u0380\u0381\3\2\2\2\u0381\u0383\3\2\2\2\u0382\u0380\3\2\2\2\u0383"+
|
||||
"\u0385\7\60\2\2\u0384\u0386\5\u00c3b\2\u0385\u0384\3\2\2\2\u0386\u0387"+
|
||||
"\3\2\2\2\u0387\u0385\3\2\2\2\u0387\u0388\3\2\2\2\u0388\u00b6\3\2\2\2\u0389"+
|
||||
"\u038b\5\u00c5c\2\u038a\u0389\3\2\2\2\u038b\u038e\3\2\2\2\u038c\u038a"+
|
||||
"\3\2\2\2\u038c\u038d\3\2\2\2\u038d\u038f\3\2\2\2\u038e\u038c\3\2\2\2\u038f"+
|
||||
"\u0391\7\60\2\2\u0390\u0392\5\u00c5c\2\u0391\u0390\3\2\2\2\u0392\u0393"+
|
||||
"\3\2\2\2\u0393\u0391\3\2\2\2\u0393\u0394\3\2\2\2\u0394\u00b8\3\2\2\2\u0395"+
|
||||
"\u039b\7&\2\2\u0396\u0397\7\62\2\2\u0397\u039b\7z\2\2\u0398\u0399\7\62"+
|
||||
"\2\2\u0399\u039b\7Z\2\2\u039a\u0395\3\2\2\2\u039a\u0396\3\2\2\2\u039a"+
|
||||
"\u0398\3\2\2\2\u039b\u039f\3\2\2\2\u039c\u039e\5\u00c7d\2\u039d\u039c"+
|
||||
"\3\2\2\2\u039e\u03a1\3\2\2\2\u039f\u039d\3\2\2\2\u039f\u03a0\3\2\2\2\u03a0"+
|
||||
"\u03a2\3\2\2\2\u03a1\u039f\3\2\2\2\u03a2\u03a4\7\60\2\2\u03a3\u03a5\5"+
|
||||
"\u00c7d\2\u03a4\u03a3\3\2\2\2\u03a5\u03a6\3\2\2\2\u03a6\u03a4\3\2\2\2"+
|
||||
"\u03a6\u03a7\3\2\2\2\u03a7\u00ba\3\2\2\2\u03a8\u03ac\5\u00bf`\2\u03a9"+
|
||||
"\u03ac\5\u00c1a\2\u03aa\u03ac\5\u00bd_\2\u03ab\u03a8\3\2\2\2\u03ab\u03a9"+
|
||||
"\3\2\2\2\u03ab\u03aa\3\2\2\2\u03ac\u03b0\3\2\2\2\u03ad\u03ae\t\7\2\2\u03ae"+
|
||||
"\u03b1\t\b\2\2\u03af\u03b1\7n\2\2\u03b0\u03ad\3\2\2\2\u03b0\u03af\3\2"+
|
||||
"\2\2\u03b0\u03b1\3\2\2\2\u03b1\u00bc\3\2\2\2\u03b2\u03b3\7\62\2\2\u03b3"+
|
||||
"\u03b5\t\t\2\2\u03b4\u03b6\5\u00c3b\2\u03b5\u03b4\3\2\2\2\u03b6\u03b7"+
|
||||
"\3\2\2\2\u03b7\u03b5\3\2\2\2\u03b7\u03b8\3\2\2\2\u03b8\u03c0\3\2\2\2\u03b9"+
|
||||
"\u03bb\7\'\2\2\u03ba\u03bc\5\u00c3b\2\u03bb\u03ba\3\2\2\2\u03bc\u03bd"+
|
||||
"\3\2\2\2\u03bd\u03bb\3\2\2\2\u03bd\u03be\3\2\2\2\u03be\u03c0\3\2\2\2\u03bf"+
|
||||
"\u03b2\3\2\2\2\u03bf\u03b9\3\2\2\2\u03c0\u00be\3\2\2\2\u03c1\u03c3\5\u00c5"+
|
||||
"c\2\u03c2\u03c1\3\2\2\2\u03c3\u03c4\3\2\2\2\u03c4\u03c2\3\2\2\2\u03c4"+
|
||||
"\u03c5\3\2\2\2\u03c5\u00c0\3\2\2\2\u03c6\u03cc\7&\2\2\u03c7\u03c8\7\62"+
|
||||
"\2\2\u03c8\u03cc\7z\2\2\u03c9\u03ca\7\62\2\2\u03ca\u03cc\7Z\2\2\u03cb"+
|
||||
"\u03c6\3\2\2\2\u03cb\u03c7\3\2\2\2\u03cb\u03c9\3\2\2\2\u03cc\u03ce\3\2"+
|
||||
"\2\2\u03cd\u03cf\5\u00c7d\2\u03ce\u03cd\3\2\2\2\u03cf\u03d0\3\2\2\2\u03d0"+
|
||||
"\u03ce\3\2\2\2\u03d0\u03d1\3\2\2\2\u03d1\u00c2\3\2\2\2\u03d2\u03d3\t\n"+
|
||||
"\2\2\u03d3\u00c4\3\2\2\2\u03d4\u03d5\t\13\2\2\u03d5\u00c6\3\2\2\2\u03d6"+
|
||||
"\u03d7\t\f\2\2\u03d7\u00c8\3\2\2\2\u03d8\u03dc\5\u00cbf\2\u03d9\u03db"+
|
||||
"\5\u00cdg\2\u03da\u03d9\3\2\2\2\u03db\u03de\3\2\2\2\u03dc\u03da\3\2\2"+
|
||||
"\2\u03dc\u03dd\3\2\2\2\u03dd\u00ca\3\2\2\2\u03de\u03dc\3\2\2\2\u03df\u03e0"+
|
||||
"\t\r\2\2\u03e0\u00cc\3\2\2\2\u03e1\u03e2\t\16\2\2\u03e2\u00ce\3\2\2\2"+
|
||||
"\u03e3\u03e7\7#\2\2\u03e4\u03e6\5\u00cdg\2\u03e5\u03e4\3\2\2\2\u03e6\u03e9"+
|
||||
"\3\2\2\2\u03e7\u03e5\3\2\2\2\u03e7\u03e8\3\2\2\2\u03e8\u03eb\3\2\2\2\u03e9"+
|
||||
"\u03e7\3\2\2\2\u03ea\u03ec\t\17\2\2\u03eb\u03ea\3\2\2\2\u03ec\u03ed\3"+
|
||||
"\2\2\2\u03ed\u03eb\3\2\2\2\u03ed\u03ee\3\2\2\2\u03ee\u00d0\3\2\2\2\u03ef"+
|
||||
"\u03f1\t\20\2\2\u03f0\u03ef\3\2\2\2\u03f1\u03f2\3\2\2\2\u03f2\u03f0\3"+
|
||||
"\2\2\2\u03f2\u03f3\3\2\2\2\u03f3\u03f4\3\2\2\2\u03f4\u03f5\bi\2\2\u03f5"+
|
||||
"\u00d2\3\2\2\2\u03f6\u03f7\7\61\2\2\u03f7\u03f8\7\61\2\2\u03f8\u03fc\3"+
|
||||
"\2\2\2\u03f9\u03fb\n\21\2\2\u03fa\u03f9\3\2\2\2\u03fb\u03fe\3\2\2\2\u03fc"+
|
||||
"\u03fa\3\2\2\2\u03fc\u03fd\3\2\2\2\u03fd\u03ff\3\2\2\2\u03fe\u03fc\3\2"+
|
||||
"\2\2\u03ff\u0400\bj\3\2\u0400\u00d4\3\2\2\2\u0401\u0402\7\61\2\2\u0402"+
|
||||
"\u0403\7,\2\2\u0403\u0407\3\2\2\2\u0404\u0406\13\2\2\2\u0405\u0404\3\2"+
|
||||
"\2\2\u0406\u0409\3\2\2\2\u0407\u0408\3\2\2\2\u0407\u0405\3\2\2\2\u0408"+
|
||||
"\u040a\3\2\2\2\u0409\u0407\3\2\2\2\u040a\u040b\7,\2\2\u040b\u040c\7\61"+
|
||||
"\2\2\u040c\u040d\3\2\2\2\u040d\u040e\bk\3\2\u040e\u00d6\3\2\2\2&\2\u030f"+
|
||||
"\u0317\u0342\u0348\u034a\u034f\u0353\u0355\u0358\u035e\u036b\u036f\u0374"+
|
||||
"\u037b\u0380\u0387\u038c\u0393\u039a\u039f\u03a6\u03ab\u03b0\u03b7\u03bd"+
|
||||
"\u03bf\u03c4\u03cb\u03d0\u03dc\u03e7\u03ed\u03f2\u03fc\u0407\4\2\3\2\2"+
|
||||
"\4\2";
|
||||
"k\4l\tl\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\4\3"+
|
||||
"\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n\3\13\3\13\3\f\3"+
|
||||
"\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3"+
|
||||
"\16\3\16\3\16\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3"+
|
||||
"\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\22\3\22\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\23\3\24\3\24\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\25\3\25\3"+
|
||||
"\25\3\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\30\3"+
|
||||
"\30\3\30\3\30\3\30\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\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3"+
|
||||
"\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\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+\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\64\3\64\3\64\3\65\3"+
|
||||
"\65\3\65\3\66\3\66\3\67\3\67\38\38\39\39\3:\3:\3:\3;\3;\3;\3<\3<\3<\3"+
|
||||
"=\3=\3=\3>\3>\3?\3?\3@\3@\3@\3A\3A\3A\3B\3B\3C\3C\3C\3D\3D\3D\3E\3E\3"+
|
||||
"E\3F\3F\3F\3G\3G\3G\3H\3H\3H\3H\3I\3I\3I\3I\3J\3J\3J\3K\3K\3K\3L\3L\3"+
|
||||
"L\3M\3M\3M\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3"+
|
||||
"P\3P\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3S\3"+
|
||||
"S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3"+
|
||||
"T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3"+
|
||||
"T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3"+
|
||||
"T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3"+
|
||||
"T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3"+
|
||||
"T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3"+
|
||||
"T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3"+
|
||||
"T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3"+
|
||||
"T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3"+
|
||||
"T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\5T\u031b\n"+
|
||||
"T\3U\3U\3U\3U\7U\u0321\nU\fU\16U\u0324\13U\3U\3U\3U\3V\3V\3V\3V\3V\3V"+
|
||||
"\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V"+
|
||||
"\3V\3V\3V\3V\3V\3V\3V\3V\5V\u034e\nV\3W\3W\3W\3W\7W\u0354\nW\fW\16W\u0357"+
|
||||
"\13W\3W\3W\5W\u035b\nW\3W\3W\5W\u035f\nW\5W\u0361\nW\3W\5W\u0364\nW\3"+
|
||||
"X\3X\3X\3X\5X\u036a\nX\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\5Y\u0377\nY\3"+
|
||||
"Z\3Z\5Z\u037b\nZ\3[\3[\3[\5[\u0380\n[\3\\\3\\\3\\\3\\\3\\\5\\\u0387\n"+
|
||||
"\\\3\\\7\\\u038a\n\\\f\\\16\\\u038d\13\\\3\\\3\\\6\\\u0391\n\\\r\\\16"+
|
||||
"\\\u0392\3]\7]\u0396\n]\f]\16]\u0399\13]\3]\3]\6]\u039d\n]\r]\16]\u039e"+
|
||||
"\3^\3^\3^\3^\3^\5^\u03a6\n^\3^\7^\u03a9\n^\f^\16^\u03ac\13^\3^\3^\6^\u03b0"+
|
||||
"\n^\r^\16^\u03b1\3_\3_\3_\5_\u03b7\n_\3_\3_\3_\5_\u03bc\n_\3`\3`\3`\6"+
|
||||
"`\u03c1\n`\r`\16`\u03c2\3`\3`\6`\u03c7\n`\r`\16`\u03c8\5`\u03cb\n`\3a"+
|
||||
"\6a\u03ce\na\ra\16a\u03cf\3b\3b\3b\3b\3b\5b\u03d7\nb\3b\6b\u03da\nb\r"+
|
||||
"b\16b\u03db\3c\3c\3d\3d\3e\3e\3f\3f\7f\u03e6\nf\ff\16f\u03e9\13f\3g\3"+
|
||||
"g\3h\3h\3i\3i\7i\u03f1\ni\fi\16i\u03f4\13i\3i\6i\u03f7\ni\ri\16i\u03f8"+
|
||||
"\3j\6j\u03fc\nj\rj\16j\u03fd\3j\3j\3k\3k\3k\3k\7k\u0406\nk\fk\16k\u0409"+
|
||||
"\13k\3k\3k\3l\3l\3l\3l\7l\u0411\nl\fl\16l\u0414\13l\3l\3l\3l\3l\3l\4\u0322"+
|
||||
"\u0412\2m\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<w=y>{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008b"+
|
||||
"G\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009f"+
|
||||
"Q\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3"+
|
||||
"[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5\2\u00c7"+
|
||||
"\2\u00c9\2\u00cbd\u00cd\2\u00cf\2\u00d1e\u00d3f\u00d5g\u00d7h\3\2\22\3"+
|
||||
"\2$$\3\2||\4\2rruu\4\2ooww\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62"+
|
||||
"\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\6\2\13\f\17"+
|
||||
"\17\"\"\u00a2\u00a2\4\2\f\f\17\17\2\u048c\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\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2"+
|
||||
"\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\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\2\u00bb\3\2\2\2\2\u00bd\3\2\2"+
|
||||
"\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00cb\3\2\2\2\2\u00d1"+
|
||||
"\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7\3\2\2\2\3\u00d9\3\2\2"+
|
||||
"\2\5\u00e0\3\2\2\2\7\u00e2\3\2\2\2\t\u00ea\3\2\2\2\13\u00ec\3\2\2\2\r"+
|
||||
"\u00ee\3\2\2\2\17\u00f0\3\2\2\2\21\u00f2\3\2\2\2\23\u00f4\3\2\2\2\25\u00f6"+
|
||||
"\3\2\2\2\27\u00f8\3\2\2\2\31\u00fb\3\2\2\2\33\u0104\3\2\2\2\35\u010d\3"+
|
||||
"\2\2\2\37\u0113\3\2\2\2!\u011a\3\2\2\2#\u0120\3\2\2\2%\u0129\3\2\2\2\'"+
|
||||
"\u0130\3\2\2\2)\u0139\3\2\2\2+\u0143\3\2\2\2-\u014b\3\2\2\2/\u014e\3\2"+
|
||||
"\2\2\61\u0153\3\2\2\2\63\u0159\3\2\2\2\65\u015c\3\2\2\2\67\u0160\3\2\2"+
|
||||
"\29\u0167\3\2\2\2;\u016d\3\2\2\2=\u0176\3\2\2\2?\u017a\3\2\2\2A\u017c"+
|
||||
"\3\2\2\2C\u017f\3\2\2\2E\u0186\3\2\2\2G\u018f\3\2\2\2I\u0191\3\2\2\2K"+
|
||||
"\u0193\3\2\2\2M\u0195\3\2\2\2O\u019c\3\2\2\2Q\u01a1\3\2\2\2S\u01a3\3\2"+
|
||||
"\2\2U\u01a6\3\2\2\2W\u01ad\3\2\2\2Y\u01b4\3\2\2\2[\u01b7\3\2\2\2]\u01ba"+
|
||||
"\3\2\2\2_\u01bc\3\2\2\2a\u01be\3\2\2\2c\u01c0\3\2\2\2e\u01c2\3\2\2\2g"+
|
||||
"\u01c4\3\2\2\2i\u01c7\3\2\2\2k\u01ca\3\2\2\2m\u01cc\3\2\2\2o\u01ce\3\2"+
|
||||
"\2\2q\u01d0\3\2\2\2s\u01d2\3\2\2\2u\u01d5\3\2\2\2w\u01d8\3\2\2\2y\u01db"+
|
||||
"\3\2\2\2{\u01de\3\2\2\2}\u01e0\3\2\2\2\177\u01e2\3\2\2\2\u0081\u01e5\3"+
|
||||
"\2\2\2\u0083\u01e8\3\2\2\2\u0085\u01ea\3\2\2\2\u0087\u01ed\3\2\2\2\u0089"+
|
||||
"\u01f0\3\2\2\2\u008b\u01f3\3\2\2\2\u008d\u01f6\3\2\2\2\u008f\u01f9\3\2"+
|
||||
"\2\2\u0091\u01fd\3\2\2\2\u0093\u0201\3\2\2\2\u0095\u0204\3\2\2\2\u0097"+
|
||||
"\u0207\3\2\2\2\u0099\u020a\3\2\2\2\u009b\u0212\3\2\2\2\u009d\u021b\3\2"+
|
||||
"\2\2\u009f\u0220\3\2\2\2\u00a1\u0229\3\2\2\2\u00a3\u022f\3\2\2\2\u00a5"+
|
||||
"\u0236\3\2\2\2\u00a7\u031a\3\2\2\2\u00a9\u031c\3\2\2\2\u00ab\u034d\3\2"+
|
||||
"\2\2\u00ad\u034f\3\2\2\2\u00af\u0365\3\2\2\2\u00b1\u0376\3\2\2\2\u00b3"+
|
||||
"\u037a\3\2\2\2\u00b5\u037f\3\2\2\2\u00b7\u0386\3\2\2\2\u00b9\u0397\3\2"+
|
||||
"\2\2\u00bb\u03a5\3\2\2\2\u00bd\u03b6\3\2\2\2\u00bf\u03ca\3\2\2\2\u00c1"+
|
||||
"\u03cd\3\2\2\2\u00c3\u03d6\3\2\2\2\u00c5\u03dd\3\2\2\2\u00c7\u03df\3\2"+
|
||||
"\2\2\u00c9\u03e1\3\2\2\2\u00cb\u03e3\3\2\2\2\u00cd\u03ea\3\2\2\2\u00cf"+
|
||||
"\u03ec\3\2\2\2\u00d1\u03ee\3\2\2\2\u00d3\u03fb\3\2\2\2\u00d5\u0401\3\2"+
|
||||
"\2\2\u00d7\u040c\3\2\2\2\u00d9\u00da\7k\2\2\u00da\u00db\7o\2\2\u00db\u00dc"+
|
||||
"\7r\2\2\u00dc\u00dd\7q\2\2\u00dd\u00de\7t\2\2\u00de\u00df\7v\2\2\u00df"+
|
||||
"\4\3\2\2\2\u00e0\u00e1\7=\2\2\u00e1\6\3\2\2\2\u00e2\u00e3\7v\2\2\u00e3"+
|
||||
"\u00e4\7{\2\2\u00e4\u00e5\7r\2\2\u00e5\u00e6\7g\2\2\u00e6\u00e7\7f\2\2"+
|
||||
"\u00e7\u00e8\7g\2\2\u00e8\u00e9\7h\2\2\u00e9\b\3\2\2\2\u00ea\u00eb\7."+
|
||||
"\2\2\u00eb\n\3\2\2\2\u00ec\u00ed\7?\2\2\u00ed\f\3\2\2\2\u00ee\u00ef\7"+
|
||||
"*\2\2\u00ef\16\3\2\2\2\u00f0\u00f1\7+\2\2\u00f1\20\3\2\2\2\u00f2\u00f3"+
|
||||
"\7}\2\2\u00f3\22\3\2\2\2\u00f4\u00f5\7\177\2\2\u00f5\24\3\2\2\2\u00f6"+
|
||||
"\u00f7\7%\2\2\u00f7\26\3\2\2\2\u00f8\u00f9\7r\2\2\u00f9\u00fa\7e\2\2\u00fa"+
|
||||
"\30\3\2\2\2\u00fb\u00fc\7r\2\2\u00fc\u00fd\7n\2\2\u00fd\u00fe\7c\2\2\u00fe"+
|
||||
"\u00ff\7v\2\2\u00ff\u0100\7h\2\2\u0100\u0101\7q\2\2\u0101\u0102\7t\2\2"+
|
||||
"\u0102\u0103\7o\2\2\u0103\32\3\2\2\2\u0104\u0105\7g\2\2\u0105\u0106\7"+
|
||||
"p\2\2\u0106\u0107\7e\2\2\u0107\u0108\7q\2\2\u0108\u0109\7f\2\2\u0109\u010a"+
|
||||
"\7k\2\2\u010a\u010b\7p\2\2\u010b\u010c\7i\2\2\u010c\34\3\2\2\2\u010d\u010e"+
|
||||
"\7e\2\2\u010e\u010f\7q\2\2\u010f\u0110\7p\2\2\u0110\u0111\7u\2\2\u0111"+
|
||||
"\u0112\7v\2\2\u0112\36\3\2\2\2\u0113\u0114\7g\2\2\u0114\u0115\7z\2\2\u0115"+
|
||||
"\u0116\7v\2\2\u0116\u0117\7g\2\2\u0117\u0118\7t\2\2\u0118\u0119\7p\2\2"+
|
||||
"\u0119 \3\2\2\2\u011a\u011b\7c\2\2\u011b\u011c\7n\2\2\u011c\u011d\7k\2"+
|
||||
"\2\u011d\u011e\7i\2\2\u011e\u011f\7p\2\2\u011f\"\3\2\2\2\u0120\u0121\7"+
|
||||
"t\2\2\u0121\u0122\7g\2\2\u0122\u0123\7i\2\2\u0123\u0124\7k\2\2\u0124\u0125"+
|
||||
"\7u\2\2\u0125\u0126\7v\2\2\u0126\u0127\7g\2\2\u0127\u0128\7t\2\2\u0128"+
|
||||
"$\3\2\2\2\u0129\u012a\7k\2\2\u012a\u012b\7p\2\2\u012b\u012c\7n\2\2\u012c"+
|
||||
"\u012d\7k\2\2\u012d\u012e\7p\2\2\u012e\u012f\7g\2\2\u012f&\3\2\2\2\u0130"+
|
||||
"\u0131\7x\2\2\u0131\u0132\7q\2\2\u0132\u0133\7n\2\2\u0133\u0134\7c\2\2"+
|
||||
"\u0134\u0135\7v\2\2\u0135\u0136\7k\2\2\u0136\u0137\7n\2\2\u0137\u0138"+
|
||||
"\7g\2\2\u0138(\3\2\2\2\u0139\u013a\7k\2\2\u013a\u013b\7p\2\2\u013b\u013c"+
|
||||
"\7v\2\2\u013c\u013d\7g\2\2\u013d\u013e\7t\2\2\u013e\u013f\7t\2\2\u013f"+
|
||||
"\u0140\7w\2\2\u0140\u0141\7r\2\2\u0141\u0142\7v\2\2\u0142*\3\2\2\2\u0143"+
|
||||
"\u0144\7t\2\2\u0144\u0145\7g\2\2\u0145\u0146\7u\2\2\u0146\u0147\7g\2\2"+
|
||||
"\u0147\u0148\7t\2\2\u0148\u0149\7x\2\2\u0149\u014a\7g\2\2\u014a,\3\2\2"+
|
||||
"\2\u014b\u014c\7k\2\2\u014c\u014d\7h\2\2\u014d.\3\2\2\2\u014e\u014f\7"+
|
||||
"g\2\2\u014f\u0150\7n\2\2\u0150\u0151\7u\2\2\u0151\u0152\7g\2\2\u0152\60"+
|
||||
"\3\2\2\2\u0153\u0154\7y\2\2\u0154\u0155\7j\2\2\u0155\u0156\7k\2\2\u0156"+
|
||||
"\u0157\7n\2\2\u0157\u0158\7g\2\2\u0158\62\3\2\2\2\u0159\u015a\7f\2\2\u015a"+
|
||||
"\u015b\7q\2\2\u015b\64\3\2\2\2\u015c\u015d\7h\2\2\u015d\u015e\7q\2\2\u015e"+
|
||||
"\u015f\7t\2\2\u015f\66\3\2\2\2\u0160\u0161\7t\2\2\u0161\u0162\7g\2\2\u0162"+
|
||||
"\u0163\7v\2\2\u0163\u0164\7w\2\2\u0164\u0165\7t\2\2\u0165\u0166\7p\2\2"+
|
||||
"\u01668\3\2\2\2\u0167\u0168\7d\2\2\u0168\u0169\7t\2\2\u0169\u016a\7g\2"+
|
||||
"\2\u016a\u016b\7c\2\2\u016b\u016c\7m\2\2\u016c:\3\2\2\2\u016d\u016e\7"+
|
||||
"e\2\2\u016e\u016f\7q\2\2\u016f\u0170\7p\2\2\u0170\u0171\7v\2\2\u0171\u0172"+
|
||||
"\7k\2\2\u0172\u0173\7p\2\2\u0173\u0174\7w\2\2\u0174\u0175\7g\2\2\u0175"+
|
||||
"<\3\2\2\2\u0176\u0177\7c\2\2\u0177\u0178\7u\2\2\u0178\u0179\7o\2\2\u0179"+
|
||||
">\3\2\2\2\u017a\u017b\7<\2\2\u017b@\3\2\2\2\u017c\u017d\7\60\2\2\u017d"+
|
||||
"\u017e\7\60\2\2\u017eB\3\2\2\2\u017f\u0180\7u\2\2\u0180\u0181\7k\2\2\u0181"+
|
||||
"\u0182\7i\2\2\u0182\u0183\7p\2\2\u0183\u0184\7g\2\2\u0184\u0185\7f\2\2"+
|
||||
"\u0185D\3\2\2\2\u0186\u0187\7w\2\2\u0187\u0188\7p\2\2\u0188\u0189\7u\2"+
|
||||
"\2\u0189\u018a\7k\2\2\u018a\u018b\7i\2\2\u018b\u018c\7p\2\2\u018c\u018d"+
|
||||
"\7g\2\2\u018d\u018e\7f\2\2\u018eF\3\2\2\2\u018f\u0190\7,\2\2\u0190H\3"+
|
||||
"\2\2\2\u0191\u0192\7]\2\2\u0192J\3\2\2\2\u0193\u0194\7_\2\2\u0194L\3\2"+
|
||||
"\2\2\u0195\u0196\7u\2\2\u0196\u0197\7v\2\2\u0197\u0198\7t\2\2\u0198\u0199"+
|
||||
"\7w\2\2\u0199\u019a\7e\2\2\u019a\u019b\7v\2\2\u019bN\3\2\2\2\u019c\u019d"+
|
||||
"\7g\2\2\u019d\u019e\7p\2\2\u019e\u019f\7w\2\2\u019f\u01a0\7o\2\2\u01a0"+
|
||||
"P\3\2\2\2\u01a1\u01a2\7\60\2\2\u01a2R\3\2\2\2\u01a3\u01a4\7/\2\2\u01a4"+
|
||||
"\u01a5\7@\2\2\u01a5T\3\2\2\2\u01a6\u01a7\7u\2\2\u01a7\u01a8\7k\2\2\u01a8"+
|
||||
"\u01a9\7|\2\2\u01a9\u01aa\7g\2\2\u01aa\u01ab\7q\2\2\u01ab\u01ac\7h\2\2"+
|
||||
"\u01acV\3\2\2\2\u01ad\u01ae\7v\2\2\u01ae\u01af\7{\2\2\u01af\u01b0\7r\2"+
|
||||
"\2\u01b0\u01b1\7g\2\2\u01b1\u01b2\7k\2\2\u01b2\u01b3\7f\2\2\u01b3X\3\2"+
|
||||
"\2\2\u01b4\u01b5\7/\2\2\u01b5\u01b6\7/\2\2\u01b6Z\3\2\2\2\u01b7\u01b8"+
|
||||
"\7-\2\2\u01b8\u01b9\7-\2\2\u01b9\\\3\2\2\2\u01ba\u01bb\7-\2\2\u01bb^\3"+
|
||||
"\2\2\2\u01bc\u01bd\7/\2\2\u01bd`\3\2\2\2\u01be\u01bf\7#\2\2\u01bfb\3\2"+
|
||||
"\2\2\u01c0\u01c1\7(\2\2\u01c1d\3\2\2\2\u01c2\u01c3\7\u0080\2\2\u01c3f"+
|
||||
"\3\2\2\2\u01c4\u01c5\7@\2\2\u01c5\u01c6\7@\2\2\u01c6h\3\2\2\2\u01c7\u01c8"+
|
||||
"\7>\2\2\u01c8\u01c9\7>\2\2\u01c9j\3\2\2\2\u01ca\u01cb\7\61\2\2\u01cbl"+
|
||||
"\3\2\2\2\u01cc\u01cd\7\'\2\2\u01cdn\3\2\2\2\u01ce\u01cf\7>\2\2\u01cfp"+
|
||||
"\3\2\2\2\u01d0\u01d1\7@\2\2\u01d1r\3\2\2\2\u01d2\u01d3\7?\2\2\u01d3\u01d4"+
|
||||
"\7?\2\2\u01d4t\3\2\2\2\u01d5\u01d6\7#\2\2\u01d6\u01d7\7?\2\2\u01d7v\3"+
|
||||
"\2\2\2\u01d8\u01d9\7>\2\2\u01d9\u01da\7?\2\2\u01dax\3\2\2\2\u01db\u01dc"+
|
||||
"\7@\2\2\u01dc\u01dd\7?\2\2\u01ddz\3\2\2\2\u01de\u01df\7`\2\2\u01df|\3"+
|
||||
"\2\2\2\u01e0\u01e1\7~\2\2\u01e1~\3\2\2\2\u01e2\u01e3\7(\2\2\u01e3\u01e4"+
|
||||
"\7(\2\2\u01e4\u0080\3\2\2\2\u01e5\u01e6\7~\2\2\u01e6\u01e7\7~\2\2\u01e7"+
|
||||
"\u0082\3\2\2\2\u01e8\u01e9\7A\2\2\u01e9\u0084\3\2\2\2\u01ea\u01eb\7-\2"+
|
||||
"\2\u01eb\u01ec\7?\2\2\u01ec\u0086\3\2\2\2\u01ed\u01ee\7/\2\2\u01ee\u01ef"+
|
||||
"\7?\2\2\u01ef\u0088\3\2\2\2\u01f0\u01f1\7,\2\2\u01f1\u01f2\7?\2\2\u01f2"+
|
||||
"\u008a\3\2\2\2\u01f3\u01f4\7\61\2\2\u01f4\u01f5\7?\2\2\u01f5\u008c\3\2"+
|
||||
"\2\2\u01f6\u01f7\7\'\2\2\u01f7\u01f8\7?\2\2\u01f8\u008e\3\2\2\2\u01f9"+
|
||||
"\u01fa\7>\2\2\u01fa\u01fb\7>\2\2\u01fb\u01fc\7?\2\2\u01fc\u0090\3\2\2"+
|
||||
"\2\u01fd\u01fe\7@\2\2\u01fe\u01ff\7@\2\2\u01ff\u0200\7?\2\2\u0200\u0092"+
|
||||
"\3\2\2\2\u0201\u0202\7(\2\2\u0202\u0203\7?\2\2\u0203\u0094\3\2\2\2\u0204"+
|
||||
"\u0205\7~\2\2\u0205\u0206\7?\2\2\u0206\u0096\3\2\2\2\u0207\u0208\7`\2"+
|
||||
"\2\u0208\u0209\7?\2\2\u0209\u0098\3\2\2\2\u020a\u020b\7m\2\2\u020b\u020c"+
|
||||
"\7k\2\2\u020c\u020d\7e\2\2\u020d\u020e\7m\2\2\u020e\u020f\7c\2\2\u020f"+
|
||||
"\u0210\7u\2\2\u0210\u0211\7o\2\2\u0211\u009a\3\2\2\2\u0212\u0213\7t\2"+
|
||||
"\2\u0213\u0214\7g\2\2\u0214\u0215\7u\2\2\u0215\u0216\7q\2\2\u0216\u0217"+
|
||||
"\7w\2\2\u0217\u0218\7t\2\2\u0218\u0219\7e\2\2\u0219\u021a\7g\2\2\u021a"+
|
||||
"\u009c\3\2\2\2\u021b\u021c\7w\2\2\u021c\u021d\7u\2\2\u021d\u021e\7g\2"+
|
||||
"\2\u021e\u021f\7u\2\2\u021f\u009e\3\2\2\2\u0220\u0221\7e\2\2\u0221\u0222"+
|
||||
"\7n\2\2\u0222\u0223\7q\2\2\u0223\u0224\7d\2\2\u0224\u0225\7d\2\2\u0225"+
|
||||
"\u0226\7g\2\2\u0226\u0227\7t\2\2\u0227\u0228\7u\2\2\u0228\u00a0\3\2\2"+
|
||||
"\2\u0229\u022a\7d\2\2\u022a\u022b\7{\2\2\u022b\u022c\7v\2\2\u022c\u022d"+
|
||||
"\7g\2\2\u022d\u022e\7u\2\2\u022e\u00a2\3\2\2\2\u022f\u0230\7e\2\2\u0230"+
|
||||
"\u0231\7{\2\2\u0231\u0232\7e\2\2\u0232\u0233\7n\2\2\u0233\u0234\7g\2\2"+
|
||||
"\u0234\u0235\7u\2\2\u0235\u00a4\3\2\2\2\u0236\u0237\7\60\2\2\u0237\u0238"+
|
||||
"\7d\2\2\u0238\u0239\7{\2\2\u0239\u023a\7v\2\2\u023a\u023b\7g\2\2\u023b"+
|
||||
"\u00a6\3\2\2\2\u023c\u023d\7d\2\2\u023d\u023e\7t\2\2\u023e\u031b\7m\2"+
|
||||
"\2\u023f\u0240\7q\2\2\u0240\u0241\7t\2\2\u0241\u031b\7c\2\2\u0242\u0243"+
|
||||
"\7m\2\2\u0243\u0244\7k\2\2\u0244\u031b\7n\2\2\u0245\u0246\7u\2\2\u0246"+
|
||||
"\u0247\7n\2\2\u0247\u031b\7q\2\2\u0248\u0249\7p\2\2\u0249\u024a\7q\2\2"+
|
||||
"\u024a\u031b\7r\2\2\u024b\u024c\7c\2\2\u024c\u024d\7u\2\2\u024d\u031b"+
|
||||
"\7n\2\2\u024e\u024f\7r\2\2\u024f\u0250\7j\2\2\u0250\u031b\7r\2\2\u0251"+
|
||||
"\u0252\7c\2\2\u0252\u0253\7p\2\2\u0253\u031b\7e\2\2\u0254\u0255\7d\2\2"+
|
||||
"\u0255\u0256\7r\2\2\u0256\u031b\7n\2\2\u0257\u0258\7e\2\2\u0258\u0259"+
|
||||
"\7n\2\2\u0259\u031b\7e\2\2\u025a\u025b\7l\2\2\u025b\u025c\7u\2\2\u025c"+
|
||||
"\u031b\7t\2\2\u025d\u025e\7c\2\2\u025e\u025f\7p\2\2\u025f\u031b\7f\2\2"+
|
||||
"\u0260\u0261\7t\2\2\u0261\u0262\7n\2\2\u0262\u031b\7c\2\2\u0263\u0264"+
|
||||
"\7d\2\2\u0264\u0265\7k\2\2\u0265\u031b\7v\2\2\u0266\u0267\7t\2\2\u0267"+
|
||||
"\u0268\7q\2\2\u0268\u031b\7n\2\2\u0269\u026a\7r\2\2\u026a\u026b\7n\2\2"+
|
||||
"\u026b\u031b\7c\2\2\u026c\u026d\7r\2\2\u026d\u026e\7n\2\2\u026e\u031b"+
|
||||
"\7r\2\2\u026f\u0270\7d\2\2\u0270\u0271\7o\2\2\u0271\u031b\7k\2\2\u0272"+
|
||||
"\u0273\7u\2\2\u0273\u0274\7g\2\2\u0274\u031b\7e\2\2\u0275\u0276\7t\2\2"+
|
||||
"\u0276\u0277\7v\2\2\u0277\u031b\7k\2\2\u0278\u0279\7g\2\2\u0279\u027a"+
|
||||
"\7q\2\2\u027a\u031b\7t\2\2\u027b\u027c\7u\2\2\u027c\u027d\7t\2\2\u027d"+
|
||||
"\u031b\7g\2\2\u027e\u027f\7n\2\2\u027f\u0280\7u\2\2\u0280\u031b\7t\2\2"+
|
||||
"\u0281\u0282\7r\2\2\u0282\u0283\7j\2\2\u0283\u031b\7c\2\2\u0284\u0285"+
|
||||
"\7c\2\2\u0285\u0286\7n\2\2\u0286\u031b\7t\2\2\u0287\u0288\7l\2\2\u0288"+
|
||||
"\u0289\7o\2\2\u0289\u031b\7r\2\2\u028a\u028b\7d\2\2\u028b\u028c\7x\2\2"+
|
||||
"\u028c\u031b\7e\2\2\u028d\u028e\7e\2\2\u028e\u028f\7n\2\2\u028f\u031b"+
|
||||
"\7k\2\2\u0290\u0291\7t\2\2\u0291\u0292\7v\2\2\u0292\u031b\7u\2\2\u0293"+
|
||||
"\u0294\7c\2\2\u0294\u0295\7f\2\2\u0295\u031b\7e\2\2\u0296\u0297\7t\2\2"+
|
||||
"\u0297\u0298\7t\2\2\u0298\u031b\7c\2\2\u0299\u029a\7d\2\2\u029a\u029b"+
|
||||
"\7x\2\2\u029b\u031b\7u\2\2\u029c\u029d\7u\2\2\u029d\u029e\7g\2\2\u029e"+
|
||||
"\u031b\7k\2\2\u029f\u02a0\7u\2\2\u02a0\u02a1\7c\2\2\u02a1\u031b\7z\2\2"+
|
||||
"\u02a2\u02a3\7u\2\2\u02a3\u02a4\7v\2\2\u02a4\u031b\7{\2\2\u02a5\u02a6"+
|
||||
"\7u\2\2\u02a6\u02a7\7v\2\2\u02a7\u031b\7c\2\2\u02a8\u02a9\7u\2\2\u02a9"+
|
||||
"\u02aa\7v\2\2\u02aa\u031b\7z\2\2\u02ab\u02ac\7f\2\2\u02ac\u02ad\7g\2\2"+
|
||||
"\u02ad\u031b\7{\2\2\u02ae\u02af\7v\2\2\u02af\u02b0\7z\2\2\u02b0\u031b"+
|
||||
"\7c\2\2\u02b1\u02b2\7z\2\2\u02b2\u02b3\7c\2\2\u02b3\u031b\7c\2\2\u02b4"+
|
||||
"\u02b5\7d\2\2\u02b5\u02b6\7e\2\2\u02b6\u031b\7e\2\2\u02b7\u02b8\7c\2\2"+
|
||||
"\u02b8\u02b9\7j\2\2\u02b9\u031b\7z\2\2\u02ba\u02bb\7v\2\2\u02bb\u02bc"+
|
||||
"\7{\2\2\u02bc\u031b\7c\2\2\u02bd\u02be\7v\2\2\u02be\u02bf\7z\2\2\u02bf"+
|
||||
"\u031b\7u\2\2\u02c0\u02c1\7v\2\2\u02c1\u02c2\7c\2\2\u02c2\u031b\7u\2\2"+
|
||||
"\u02c3\u02c4\7u\2\2\u02c4\u02c5\7j\2\2\u02c5\u031b\7{\2\2\u02c6\u02c7"+
|
||||
"\7u\2\2\u02c7\u02c8\7j\2\2\u02c8\u031b\7z\2\2\u02c9\u02ca\7n\2\2\u02ca"+
|
||||
"\u02cb\7f\2\2\u02cb\u031b\7{\2\2\u02cc\u02cd\7n\2\2\u02cd\u02ce\7f\2\2"+
|
||||
"\u02ce\u031b\7c\2\2\u02cf\u02d0\7n\2\2\u02d0\u02d1\7f\2\2\u02d1\u031b"+
|
||||
"\7z\2\2\u02d2\u02d3\7n\2\2\u02d3\u02d4\7c\2\2\u02d4\u031b\7z\2\2\u02d5"+
|
||||
"\u02d6\7v\2\2\u02d6\u02d7\7c\2\2\u02d7\u031b\7{\2\2\u02d8\u02d9\7v\2\2"+
|
||||
"\u02d9\u02da\7c\2\2\u02da\u031b\7z\2\2\u02db\u02dc\7d\2\2\u02dc\u02dd"+
|
||||
"\7e\2\2\u02dd\u031b\7u\2\2\u02de\u02df\7e\2\2\u02df\u02e0\7n\2\2\u02e0"+
|
||||
"\u031b\7x\2\2\u02e1\u02e2\7v\2\2\u02e2\u02e3\7u\2\2\u02e3\u031b\7z\2\2"+
|
||||
"\u02e4\u02e5\7n\2\2\u02e5\u02e6\7c\2\2\u02e6\u031b\7u\2\2\u02e7\u02e8"+
|
||||
"\7e\2\2\u02e8\u02e9\7r\2\2\u02e9\u031b\7{\2\2\u02ea\u02eb\7e\2\2\u02eb"+
|
||||
"\u02ec\7o\2\2\u02ec\u031b\7r\2\2\u02ed\u02ee\7e\2\2\u02ee\u02ef\7r\2\2"+
|
||||
"\u02ef\u031b\7z\2\2\u02f0\u02f1\7f\2\2\u02f1\u02f2\7e\2\2\u02f2\u031b"+
|
||||
"\7r\2\2\u02f3\u02f4\7f\2\2\u02f4\u02f5\7g\2\2\u02f5\u031b\7e\2\2\u02f6"+
|
||||
"\u02f7\7k\2\2\u02f7\u02f8\7p\2\2\u02f8\u031b\7e\2\2\u02f9\u02fa\7c\2\2"+
|
||||
"\u02fa\u02fb\7z\2\2\u02fb\u031b\7u\2\2\u02fc\u02fd\7d\2\2\u02fd\u02fe"+
|
||||
"\7p\2\2\u02fe\u031b\7g\2\2\u02ff\u0300\7e\2\2\u0300\u0301\7n\2\2\u0301"+
|
||||
"\u031b\7f\2\2\u0302\u0303\7u\2\2\u0303\u0304\7d\2\2\u0304\u031b\7e\2\2"+
|
||||
"\u0305\u0306\7k\2\2\u0306\u0307\7u\2\2\u0307\u031b\7e\2\2\u0308\u0309"+
|
||||
"\7k\2\2\u0309\u030a\7p\2\2\u030a\u031b\7z\2\2\u030b\u030c\7d\2\2\u030c"+
|
||||
"\u030d\7g\2\2\u030d\u031b\7s\2\2\u030e\u030f\7u\2\2\u030f\u0310\7g\2\2"+
|
||||
"\u0310\u031b\7f\2\2\u0311\u0312\7f\2\2\u0312\u0313\7g\2\2\u0313\u031b"+
|
||||
"\7z\2\2\u0314\u0315\7k\2\2\u0315\u0316\7p\2\2\u0316\u031b\7{\2\2\u0317"+
|
||||
"\u0318\7t\2\2\u0318\u0319\7q\2\2\u0319\u031b\7t\2\2\u031a\u023c\3\2\2"+
|
||||
"\2\u031a\u023f\3\2\2\2\u031a\u0242\3\2\2\2\u031a\u0245\3\2\2\2\u031a\u0248"+
|
||||
"\3\2\2\2\u031a\u024b\3\2\2\2\u031a\u024e\3\2\2\2\u031a\u0251\3\2\2\2\u031a"+
|
||||
"\u0254\3\2\2\2\u031a\u0257\3\2\2\2\u031a\u025a\3\2\2\2\u031a\u025d\3\2"+
|
||||
"\2\2\u031a\u0260\3\2\2\2\u031a\u0263\3\2\2\2\u031a\u0266\3\2\2\2\u031a"+
|
||||
"\u0269\3\2\2\2\u031a\u026c\3\2\2\2\u031a\u026f\3\2\2\2\u031a\u0272\3\2"+
|
||||
"\2\2\u031a\u0275\3\2\2\2\u031a\u0278\3\2\2\2\u031a\u027b\3\2\2\2\u031a"+
|
||||
"\u027e\3\2\2\2\u031a\u0281\3\2\2\2\u031a\u0284\3\2\2\2\u031a\u0287\3\2"+
|
||||
"\2\2\u031a\u028a\3\2\2\2\u031a\u028d\3\2\2\2\u031a\u0290\3\2\2\2\u031a"+
|
||||
"\u0293\3\2\2\2\u031a\u0296\3\2\2\2\u031a\u0299\3\2\2\2\u031a\u029c\3\2"+
|
||||
"\2\2\u031a\u029f\3\2\2\2\u031a\u02a2\3\2\2\2\u031a\u02a5\3\2\2\2\u031a"+
|
||||
"\u02a8\3\2\2\2\u031a\u02ab\3\2\2\2\u031a\u02ae\3\2\2\2\u031a\u02b1\3\2"+
|
||||
"\2\2\u031a\u02b4\3\2\2\2\u031a\u02b7\3\2\2\2\u031a\u02ba\3\2\2\2\u031a"+
|
||||
"\u02bd\3\2\2\2\u031a\u02c0\3\2\2\2\u031a\u02c3\3\2\2\2\u031a\u02c6\3\2"+
|
||||
"\2\2\u031a\u02c9\3\2\2\2\u031a\u02cc\3\2\2\2\u031a\u02cf\3\2\2\2\u031a"+
|
||||
"\u02d2\3\2\2\2\u031a\u02d5\3\2\2\2\u031a\u02d8\3\2\2\2\u031a\u02db\3\2"+
|
||||
"\2\2\u031a\u02de\3\2\2\2\u031a\u02e1\3\2\2\2\u031a\u02e4\3\2\2\2\u031a"+
|
||||
"\u02e7\3\2\2\2\u031a\u02ea\3\2\2\2\u031a\u02ed\3\2\2\2\u031a\u02f0\3\2"+
|
||||
"\2\2\u031a\u02f3\3\2\2\2\u031a\u02f6\3\2\2\2\u031a\u02f9\3\2\2\2\u031a"+
|
||||
"\u02fc\3\2\2\2\u031a\u02ff\3\2\2\2\u031a\u0302\3\2\2\2\u031a\u0305\3\2"+
|
||||
"\2\2\u031a\u0308\3\2\2\2\u031a\u030b\3\2\2\2\u031a\u030e\3\2\2\2\u031a"+
|
||||
"\u0311\3\2\2\2\u031a\u0314\3\2\2\2\u031a\u0317\3\2\2\2\u031b\u00a8\3\2"+
|
||||
"\2\2\u031c\u031d\7}\2\2\u031d\u031e\7}\2\2\u031e\u0322\3\2\2\2\u031f\u0321"+
|
||||
"\13\2\2\2\u0320\u031f\3\2\2\2\u0321\u0324\3\2\2\2\u0322\u0323\3\2\2\2"+
|
||||
"\u0322\u0320\3\2\2\2\u0323\u0325\3\2\2\2\u0324\u0322\3\2\2\2\u0325\u0326"+
|
||||
"\7\177\2\2\u0326\u0327\7\177\2\2\u0327\u00aa\3\2\2\2\u0328\u0329\7d\2"+
|
||||
"\2\u0329\u032a\7{\2\2\u032a\u032b\7v\2\2\u032b\u034e\7g\2\2\u032c\u032d"+
|
||||
"\7y\2\2\u032d\u032e\7q\2\2\u032e\u032f\7t\2\2\u032f\u034e\7f\2\2\u0330"+
|
||||
"\u0331\7f\2\2\u0331\u0332\7y\2\2\u0332\u0333\7q\2\2\u0333\u0334\7t\2\2"+
|
||||
"\u0334\u034e\7f\2\2\u0335\u0336\7d\2\2\u0336\u0337\7q\2\2\u0337\u0338"+
|
||||
"\7q\2\2\u0338\u034e\7n\2\2\u0339\u033a\7e\2\2\u033a\u033b\7j\2\2\u033b"+
|
||||
"\u033c\7c\2\2\u033c\u034e\7t\2\2\u033d\u033e\7u\2\2\u033e\u033f\7j\2\2"+
|
||||
"\u033f\u0340\7q\2\2\u0340\u0341\7t\2\2\u0341\u034e\7v\2\2\u0342\u0343"+
|
||||
"\7k\2\2\u0343\u0344\7p\2\2\u0344\u034e\7v\2\2\u0345\u0346\7n\2\2\u0346"+
|
||||
"\u0347\7q\2\2\u0347\u0348\7p\2\2\u0348\u034e\7i\2\2\u0349\u034a\7x\2\2"+
|
||||
"\u034a\u034b\7q\2\2\u034b\u034c\7k\2\2\u034c\u034e\7f\2\2\u034d\u0328"+
|
||||
"\3\2\2\2\u034d\u032c\3\2\2\2\u034d\u0330\3\2\2\2\u034d\u0335\3\2\2\2\u034d"+
|
||||
"\u0339\3\2\2\2\u034d\u033d\3\2\2\2\u034d\u0342\3\2\2\2\u034d\u0345\3\2"+
|
||||
"\2\2\u034d\u0349\3\2\2\2\u034e\u00ac\3\2\2\2\u034f\u0355\7$\2\2\u0350"+
|
||||
"\u0351\7^\2\2\u0351\u0354\7$\2\2\u0352\u0354\n\2\2\2\u0353\u0350\3\2\2"+
|
||||
"\2\u0353\u0352\3\2\2\2\u0354\u0357\3\2\2\2\u0355\u0353\3\2\2\2\u0355\u0356"+
|
||||
"\3\2\2\2\u0356\u0358\3\2\2\2\u0357\u0355\3\2\2\2\u0358\u035a\7$\2\2\u0359"+
|
||||
"\u035b\t\3\2\2\u035a\u0359\3\2\2\2\u035a\u035b\3\2\2\2\u035b\u0360\3\2"+
|
||||
"\2\2\u035c\u035e\t\4\2\2\u035d\u035f\t\5\2\2\u035e\u035d\3\2\2\2\u035e"+
|
||||
"\u035f\3\2\2\2\u035f\u0361\3\2\2\2\u0360\u035c\3\2\2\2\u0360\u0361\3\2"+
|
||||
"\2\2\u0361\u0363\3\2\2\2\u0362\u0364\t\3\2\2\u0363\u0362\3\2\2\2\u0363"+
|
||||
"\u0364\3\2\2\2\u0364\u00ae\3\2\2\2\u0365\u0369\7)\2\2\u0366\u0367\7^\2"+
|
||||
"\2\u0367\u036a\7)\2\2\u0368\u036a\n\6\2\2\u0369\u0366\3\2\2\2\u0369\u0368"+
|
||||
"\3\2\2\2\u036a\u036b\3\2\2\2\u036b\u036c\7)\2\2\u036c\u00b0\3\2\2\2\u036d"+
|
||||
"\u036e\7v\2\2\u036e\u036f\7t\2\2\u036f\u0370\7w\2\2\u0370\u0377\7g\2\2"+
|
||||
"\u0371\u0372\7h\2\2\u0372\u0373\7c\2\2\u0373\u0374\7n\2\2\u0374\u0375"+
|
||||
"\7u\2\2\u0375\u0377\7g\2\2\u0376\u036d\3\2\2\2\u0376\u0371\3\2\2\2\u0377"+
|
||||
"\u00b2\3\2\2\2\u0378\u037b\5\u00b5[\2\u0379\u037b\5\u00bd_\2\u037a\u0378"+
|
||||
"\3\2\2\2\u037a\u0379\3\2\2\2\u037b\u00b4\3\2\2\2\u037c\u0380\5\u00b7\\"+
|
||||
"\2\u037d\u0380\5\u00b9]\2\u037e\u0380\5\u00bb^\2\u037f\u037c\3\2\2\2\u037f"+
|
||||
"\u037d\3\2\2\2\u037f\u037e\3\2\2\2\u0380\u00b6\3\2\2\2\u0381\u0387\7\'"+
|
||||
"\2\2\u0382\u0383\7\62\2\2\u0383\u0387\7d\2\2\u0384\u0385\7\62\2\2\u0385"+
|
||||
"\u0387\7D\2\2\u0386\u0381\3\2\2\2\u0386\u0382\3\2\2\2\u0386\u0384\3\2"+
|
||||
"\2\2\u0387\u038b\3\2\2\2\u0388\u038a\5\u00c5c\2\u0389\u0388\3\2\2\2\u038a"+
|
||||
"\u038d\3\2\2\2\u038b\u0389\3\2\2\2\u038b\u038c\3\2\2\2\u038c\u038e\3\2"+
|
||||
"\2\2\u038d\u038b\3\2\2\2\u038e\u0390\7\60\2\2\u038f\u0391\5\u00c5c\2\u0390"+
|
||||
"\u038f\3\2\2\2\u0391\u0392\3\2\2\2\u0392\u0390\3\2\2\2\u0392\u0393\3\2"+
|
||||
"\2\2\u0393\u00b8\3\2\2\2\u0394\u0396\5\u00c7d\2\u0395\u0394\3\2\2\2\u0396"+
|
||||
"\u0399\3\2\2\2\u0397\u0395\3\2\2\2\u0397\u0398\3\2\2\2\u0398\u039a\3\2"+
|
||||
"\2\2\u0399\u0397\3\2\2\2\u039a\u039c\7\60\2\2\u039b\u039d\5\u00c7d\2\u039c"+
|
||||
"\u039b\3\2\2\2\u039d\u039e\3\2\2\2\u039e\u039c\3\2\2\2\u039e\u039f\3\2"+
|
||||
"\2\2\u039f\u00ba\3\2\2\2\u03a0\u03a6\7&\2\2\u03a1\u03a2\7\62\2\2\u03a2"+
|
||||
"\u03a6\7z\2\2\u03a3\u03a4\7\62\2\2\u03a4\u03a6\7Z\2\2\u03a5\u03a0\3\2"+
|
||||
"\2\2\u03a5\u03a1\3\2\2\2\u03a5\u03a3\3\2\2\2\u03a6\u03aa\3\2\2\2\u03a7"+
|
||||
"\u03a9\5\u00c9e\2\u03a8\u03a7\3\2\2\2\u03a9\u03ac\3\2\2\2\u03aa\u03a8"+
|
||||
"\3\2\2\2\u03aa\u03ab\3\2\2\2\u03ab\u03ad\3\2\2\2\u03ac\u03aa\3\2\2\2\u03ad"+
|
||||
"\u03af\7\60\2\2\u03ae\u03b0\5\u00c9e\2\u03af\u03ae\3\2\2\2\u03b0\u03b1"+
|
||||
"\3\2\2\2\u03b1\u03af\3\2\2\2\u03b1\u03b2\3\2\2\2\u03b2\u00bc\3\2\2\2\u03b3"+
|
||||
"\u03b7\5\u00c1a\2\u03b4\u03b7\5\u00c3b\2\u03b5\u03b7\5\u00bf`\2\u03b6"+
|
||||
"\u03b3\3\2\2\2\u03b6\u03b4\3\2\2\2\u03b6\u03b5\3\2\2\2\u03b7\u03bb\3\2"+
|
||||
"\2\2\u03b8\u03b9\t\7\2\2\u03b9\u03bc\t\b\2\2\u03ba\u03bc\7n\2\2\u03bb"+
|
||||
"\u03b8\3\2\2\2\u03bb\u03ba\3\2\2\2\u03bb\u03bc\3\2\2\2\u03bc\u00be\3\2"+
|
||||
"\2\2\u03bd\u03be\7\62\2\2\u03be\u03c0\t\t\2\2\u03bf\u03c1\5\u00c5c\2\u03c0"+
|
||||
"\u03bf\3\2\2\2\u03c1\u03c2\3\2\2\2\u03c2\u03c0\3\2\2\2\u03c2\u03c3\3\2"+
|
||||
"\2\2\u03c3\u03cb\3\2\2\2\u03c4\u03c6\7\'\2\2\u03c5\u03c7\5\u00c5c\2\u03c6"+
|
||||
"\u03c5\3\2\2\2\u03c7\u03c8\3\2\2\2\u03c8\u03c6\3\2\2\2\u03c8\u03c9\3\2"+
|
||||
"\2\2\u03c9\u03cb\3\2\2\2\u03ca\u03bd\3\2\2\2\u03ca\u03c4\3\2\2\2\u03cb"+
|
||||
"\u00c0\3\2\2\2\u03cc\u03ce\5\u00c7d\2\u03cd\u03cc\3\2\2\2\u03ce\u03cf"+
|
||||
"\3\2\2\2\u03cf\u03cd\3\2\2\2\u03cf\u03d0\3\2\2\2\u03d0\u00c2\3\2\2\2\u03d1"+
|
||||
"\u03d7\7&\2\2\u03d2\u03d3\7\62\2\2\u03d3\u03d7\7z\2\2\u03d4\u03d5\7\62"+
|
||||
"\2\2\u03d5\u03d7\7Z\2\2\u03d6\u03d1\3\2\2\2\u03d6\u03d2\3\2\2\2\u03d6"+
|
||||
"\u03d4\3\2\2\2\u03d7\u03d9\3\2\2\2\u03d8\u03da\5\u00c9e\2\u03d9\u03d8"+
|
||||
"\3\2\2\2\u03da\u03db\3\2\2\2\u03db\u03d9\3\2\2\2\u03db\u03dc\3\2\2\2\u03dc"+
|
||||
"\u00c4\3\2\2\2\u03dd\u03de\t\n\2\2\u03de\u00c6\3\2\2\2\u03df\u03e0\t\13"+
|
||||
"\2\2\u03e0\u00c8\3\2\2\2\u03e1\u03e2\t\f\2\2\u03e2\u00ca\3\2\2\2\u03e3"+
|
||||
"\u03e7\5\u00cdg\2\u03e4\u03e6\5\u00cfh\2\u03e5\u03e4\3\2\2\2\u03e6\u03e9"+
|
||||
"\3\2\2\2\u03e7\u03e5\3\2\2\2\u03e7\u03e8\3\2\2\2\u03e8\u00cc\3\2\2\2\u03e9"+
|
||||
"\u03e7\3\2\2\2\u03ea\u03eb\t\r\2\2\u03eb\u00ce\3\2\2\2\u03ec\u03ed\t\16"+
|
||||
"\2\2\u03ed\u00d0\3\2\2\2\u03ee\u03f2\7#\2\2\u03ef\u03f1\5\u00cfh\2\u03f0"+
|
||||
"\u03ef\3\2\2\2\u03f1\u03f4\3\2\2\2\u03f2\u03f0\3\2\2\2\u03f2\u03f3\3\2"+
|
||||
"\2\2\u03f3\u03f6\3\2\2\2\u03f4\u03f2\3\2\2\2\u03f5\u03f7\t\17\2\2\u03f6"+
|
||||
"\u03f5\3\2\2\2\u03f7\u03f8\3\2\2\2\u03f8\u03f6\3\2\2\2\u03f8\u03f9\3\2"+
|
||||
"\2\2\u03f9\u00d2\3\2\2\2\u03fa\u03fc\t\20\2\2\u03fb\u03fa\3\2\2\2\u03fc"+
|
||||
"\u03fd\3\2\2\2\u03fd\u03fb\3\2\2\2\u03fd\u03fe\3\2\2\2\u03fe\u03ff\3\2"+
|
||||
"\2\2\u03ff\u0400\bj\2\2\u0400\u00d4\3\2\2\2\u0401\u0402\7\61\2\2\u0402"+
|
||||
"\u0403\7\61\2\2\u0403\u0407\3\2\2\2\u0404\u0406\n\21\2\2\u0405\u0404\3"+
|
||||
"\2\2\2\u0406\u0409\3\2\2\2\u0407\u0405\3\2\2\2\u0407\u0408\3\2\2\2\u0408"+
|
||||
"\u040a\3\2\2\2\u0409\u0407\3\2\2\2\u040a\u040b\bk\3\2\u040b\u00d6\3\2"+
|
||||
"\2\2\u040c\u040d\7\61\2\2\u040d\u040e\7,\2\2\u040e\u0412\3\2\2\2\u040f"+
|
||||
"\u0411\13\2\2\2\u0410\u040f\3\2\2\2\u0411\u0414\3\2\2\2\u0412\u0413\3"+
|
||||
"\2\2\2\u0412\u0410\3\2\2\2\u0413\u0415\3\2\2\2\u0414\u0412\3\2\2\2\u0415"+
|
||||
"\u0416\7,\2\2\u0416\u0417\7\61\2\2\u0417\u0418\3\2\2\2\u0418\u0419\bl"+
|
||||
"\3\2\u0419\u00d8\3\2\2\2&\2\u031a\u0322\u034d\u0353\u0355\u035a\u035e"+
|
||||
"\u0360\u0363\u0369\u0376\u037a\u037f\u0386\u038b\u0392\u0397\u039e\u03a5"+
|
||||
"\u03aa\u03b1\u03b6\u03bb\u03c2\u03c8\u03ca\u03cf\u03d6\u03db\u03e7\u03f2"+
|
||||
"\u03f8\u03fd\u0407\u0412\4\2\3\2\2\4\2";
|
||||
public static final ATN _ATN =
|
||||
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
||||
static {
|
||||
|
@ -79,26 +79,27 @@ T__77=78
|
||||
T__78=79
|
||||
T__79=80
|
||||
T__80=81
|
||||
MNEMONIC=82
|
||||
KICKASM=83
|
||||
SIMPLETYPE=84
|
||||
STRING=85
|
||||
CHAR=86
|
||||
BOOLEAN=87
|
||||
NUMBER=88
|
||||
NUMFLOAT=89
|
||||
BINFLOAT=90
|
||||
DECFLOAT=91
|
||||
HEXFLOAT=92
|
||||
NUMINT=93
|
||||
BININTEGER=94
|
||||
DECINTEGER=95
|
||||
HEXINTEGER=96
|
||||
NAME=97
|
||||
ASMREL=98
|
||||
WS=99
|
||||
COMMENT_LINE=100
|
||||
COMMENT_BLOCK=101
|
||||
T__81=82
|
||||
MNEMONIC=83
|
||||
KICKASM=84
|
||||
SIMPLETYPE=85
|
||||
STRING=86
|
||||
CHAR=87
|
||||
BOOLEAN=88
|
||||
NUMBER=89
|
||||
NUMFLOAT=90
|
||||
BINFLOAT=91
|
||||
DECFLOAT=92
|
||||
HEXFLOAT=93
|
||||
NUMINT=94
|
||||
BININTEGER=95
|
||||
DECINTEGER=96
|
||||
HEXINTEGER=97
|
||||
NAME=98
|
||||
ASMREL=99
|
||||
WS=100
|
||||
COMMENT_LINE=101
|
||||
COMMENT_BLOCK=102
|
||||
'import'=1
|
||||
';'=2
|
||||
'typedef'=3
|
||||
@ -110,73 +111,74 @@ COMMENT_BLOCK=101
|
||||
'}'=9
|
||||
'#'=10
|
||||
'pc'=11
|
||||
'encoding'=12
|
||||
'const'=13
|
||||
'extern'=14
|
||||
'align'=15
|
||||
'register'=16
|
||||
'inline'=17
|
||||
'volatile'=18
|
||||
'interrupt'=19
|
||||
'reserve'=20
|
||||
'if'=21
|
||||
'else'=22
|
||||
'while'=23
|
||||
'do'=24
|
||||
'for'=25
|
||||
'return'=26
|
||||
'break'=27
|
||||
'continue'=28
|
||||
'asm'=29
|
||||
':'=30
|
||||
'..'=31
|
||||
'signed'=32
|
||||
'unsigned'=33
|
||||
'*'=34
|
||||
'['=35
|
||||
']'=36
|
||||
'struct'=37
|
||||
'enum'=38
|
||||
'.'=39
|
||||
'->'=40
|
||||
'sizeof'=41
|
||||
'typeid'=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
|
||||
'/='=68
|
||||
'%='=69
|
||||
'<<='=70
|
||||
'>>='=71
|
||||
'&='=72
|
||||
'|='=73
|
||||
'^='=74
|
||||
'kickasm'=75
|
||||
'resource'=76
|
||||
'uses'=77
|
||||
'clobbers'=78
|
||||
'bytes'=79
|
||||
'cycles'=80
|
||||
'.byte'=81
|
||||
'platform'=12
|
||||
'encoding'=13
|
||||
'const'=14
|
||||
'extern'=15
|
||||
'align'=16
|
||||
'register'=17
|
||||
'inline'=18
|
||||
'volatile'=19
|
||||
'interrupt'=20
|
||||
'reserve'=21
|
||||
'if'=22
|
||||
'else'=23
|
||||
'while'=24
|
||||
'do'=25
|
||||
'for'=26
|
||||
'return'=27
|
||||
'break'=28
|
||||
'continue'=29
|
||||
'asm'=30
|
||||
':'=31
|
||||
'..'=32
|
||||
'signed'=33
|
||||
'unsigned'=34
|
||||
'*'=35
|
||||
'['=36
|
||||
']'=37
|
||||
'struct'=38
|
||||
'enum'=39
|
||||
'.'=40
|
||||
'->'=41
|
||||
'sizeof'=42
|
||||
'typeid'=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
|
||||
'*='=68
|
||||
'/='=69
|
||||
'%='=70
|
||||
'<<='=71
|
||||
'>>='=72
|
||||
'&='=73
|
||||
'|='=74
|
||||
'^='=75
|
||||
'kickasm'=76
|
||||
'resource'=77
|
||||
'uses'=78
|
||||
'clobbers'=79
|
||||
'bytes'=80
|
||||
'cycles'=81
|
||||
'.byte'=82
|
||||
|
@ -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;
|
||||
|
||||
@ -199,6 +199,18 @@ public interface KickCListener extends ParseTreeListener {
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by the {@code globalDirectivePlatform}
|
||||
* labeled alternative in {@link KickCParser#globalDirective}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by the {@code globalDirectivePlatform}
|
||||
* labeled alternative in {@link KickCParser#globalDirective}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by the {@code globalDirectiveEncoding}
|
||||
* labeled alternative in {@link KickCParser#globalDirective}.
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -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;
|
||||
|
||||
@ -124,6 +124,13 @@ public interface KickCVisitor<T> extends ParseTreeVisitor<T> {
|
||||
* @return the visitor result
|
||||
*/
|
||||
T visitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx);
|
||||
/**
|
||||
* Visit a parse tree produced by the {@code globalDirectivePlatform}
|
||||
* labeled alternative in {@link KickCParser#globalDirective}.
|
||||
* @param ctx the parse tree
|
||||
* @return the visitor result
|
||||
*/
|
||||
T visitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx);
|
||||
/**
|
||||
* Visit a parse tree produced by the {@code globalDirectiveEncoding}
|
||||
* labeled alternative in {@link KickCParser#globalDirective}.
|
||||
|
@ -133,6 +133,19 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor<Object> {
|
||||
Number programPc = NumberParser.parseLiteral(ctx.NUMBER().getText());
|
||||
if(programPc != null) {
|
||||
program.setProgramPc(programPc);
|
||||
} else {
|
||||
throw new CompileError("Cannot parse #pc directive",new StatementSource(ctx));
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object visitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx) {
|
||||
TargetPlatform platform = TargetPlatform.getTargetPlatform(ctx.NAME().getText());
|
||||
if(platform != null) {
|
||||
program.setTargetPlatform(platform);
|
||||
} else {
|
||||
throw new CompileError("Unknown target platform in #platform directive",new StatementSource(ctx));
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
@ -77,12 +77,18 @@ public class Pass4CodeGeneration {
|
||||
if(program.getProgramPc() != null) {
|
||||
programPc = program.getProgramPc();
|
||||
} else {
|
||||
programPc = 0x080d;
|
||||
if(TargetPlatform.C64BASIC.equals(program.getTargetPlatform())) {
|
||||
programPc = 0x080d;
|
||||
} else {
|
||||
programPc = 0x1000;
|
||||
}
|
||||
}
|
||||
|
||||
asm.startSegment(currentScope, null, "Basic Upstart");
|
||||
asm.addLine(new AsmSetPc("Basic", AsmFormat.getAsmNumber(0x0801)));
|
||||
asm.addLine(new AsmBasicUpstart("bbegin"));
|
||||
asm.startSegment(currentScope, null, "Upstart");
|
||||
if(TargetPlatform.C64BASIC.equals(program.getTargetPlatform())) {
|
||||
asm.addLine(new AsmSetPc("Basic", AsmFormat.getAsmNumber(0x0801)));
|
||||
asm.addLine(new AsmBasicUpstart("bbegin"));
|
||||
}
|
||||
asm.addLine(new AsmSetPc("Program", AsmFormat.getAsmNumber(programPc)));
|
||||
|
||||
// Generate global ZP labels
|
||||
|
@ -35,6 +35,12 @@ public class TestPrograms {
|
||||
public TestPrograms() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPlatformAsm6502() throws IOException, URISyntaxException {
|
||||
compileAndCompare("platform-asm6502");
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testEuclid2() throws IOException, URISyntaxException {
|
||||
compileAndCompare("euclid-3");
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Find least common denominator using subtraction-based Euclidian algorithm
|
||||
* Find greatest common denominator using subtraction-based Euclidian algorithm
|
||||
* See https://en.wikipedia.org/wiki/Euclidean_algorithm
|
||||
* Based on facebook post from
|
||||
*/
|
||||
|
10
src/test/kc/platform-asm6502.kc
Normal file
10
src/test/kc/platform-asm6502.kc
Normal file
@ -0,0 +1,10 @@
|
||||
// Tests the target platform ASM6502
|
||||
|
||||
#platform(asm6502)
|
||||
|
||||
unsigned char[10] TABLE;
|
||||
|
||||
void main() {
|
||||
for(char i=0;i<10;i++)
|
||||
TABLE[i] = i;
|
||||
}
|
@ -145,9 +145,10 @@ Allocated zp ZP_BYTE:2 [ main::b#2 main::b#0 main::b#1 ]
|
||||
Allocated zp ZP_BYTE:3 [ main::c#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test address-of - use the pointer to get the value
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -223,7 +224,7 @@ Uplifting [main] best 368 combination zp ZP_BYTE:2 [ main::b#2 main::b#0 main::b
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test address-of - use the pointer to get the value
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -327,7 +328,7 @@ Score: 296
|
||||
|
||||
// File Comments
|
||||
// Test address-of - use the pointer to get the value
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -261,9 +261,10 @@ Allocated zp ZP_BYTE:6 [ main::b2#0 ]
|
||||
Allocated zp ZP_BYTE:7 [ main::b3#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test address-of - pass the pointer as parameter
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -414,7 +415,7 @@ Allocated (was zp ZP_BYTE:7) zp ZP_BYTE:6 [ main::b3#0 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test address-of - pass the pointer as parameter
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -595,7 +596,7 @@ Score: 108
|
||||
|
||||
// File Comments
|
||||
// Test address-of - pass the pointer as parameter
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -364,9 +364,10 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BYTE:2 [ val#0 val#1 val#2 val#12 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test address-of by assigning the affected variable in multiple ways
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -521,7 +522,7 @@ Uplifting [] best 175 combination zp ZP_BYTE:2 [ val#0 val#1 val#2 val#12 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test address-of by assigning the affected variable in multiple ways
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -703,7 +704,7 @@ Score: 154
|
||||
|
||||
// File Comments
|
||||
// Test address-of by assigning the affected variable in multiple ways
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
|
@ -143,9 +143,10 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BYTE:2 [ main::sub#2 main::sub#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Illustrates symbolic array lengths
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -215,7 +216,7 @@ Uplifting [] best 263 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Illustrates symbolic array lengths
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -317,7 +318,7 @@ Score: 161
|
||||
|
||||
// File Comments
|
||||
// Illustrates symbolic array lengths
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -285,9 +285,10 @@ Allocated zp ZP_BYTE:6 [ main::$2 ]
|
||||
Allocated zp ZP_BYTE:7 [ main::$3 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Illustrates symbolic array lengths
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -420,7 +421,7 @@ Allocated (was zp ZP_WORD:3) zp ZP_WORD:2 [ main::cur_item#4 main::cur_item#1 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Illustrates symbolic array lengths
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -587,7 +588,7 @@ Score: 3416
|
||||
|
||||
// File Comments
|
||||
// Illustrates symbolic array lengths
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -91,9 +91,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test initializing array using KickAssembler
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -143,7 +144,7 @@ Uplifting [] best 29 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test initializing array using KickAssembler
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -217,7 +218,7 @@ Score: 14
|
||||
|
||||
// File Comments
|
||||
// Test initializing array using KickAssembler
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -138,8 +138,9 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -199,7 +200,7 @@ Uplifting [] best 51 combination
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -285,7 +286,7 @@ FINAL ASSEMBLER
|
||||
Score: 32
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -149,9 +149,10 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BYTE:2 [ main::a#2 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests that chained assignments work as intended
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -222,7 +223,7 @@ Uplifting [] best 59 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests that chained assignments work as intended
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -312,7 +313,7 @@ Score: 38
|
||||
|
||||
// File Comments
|
||||
// Tests that chained assignments work as intended
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -744,9 +744,10 @@ Allocated zp ZP_BYTE:2 [ test::a#11 ]
|
||||
Allocated zp ZP_BYTE:3 [ test::i#11 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test compound assignment operators
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1010,7 +1011,7 @@ Uplifting [test] best 250 combination zp ZP_BYTE:2 [ test::a#11 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test compound assignment operators
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1342,7 +1343,7 @@ Score: 202
|
||||
|
||||
// File Comments
|
||||
// Test compound assignment operators
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -89,8 +89,9 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -137,7 +138,7 @@ Uplifting [] best 27 combination
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -207,7 +208,7 @@ FINAL ASSEMBLER
|
||||
Score: 12
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -1802,10 +1802,11 @@ Allocated zp ZP_BYTE:35 [ bitmap_init::$5 ]
|
||||
Allocated zp ZP_BYTE:36 [ bitmap_init::$6 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter - and counts plots per frame in an IRQ
|
||||
// Plots simple plots
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -2573,7 +2574,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter - and counts plots per frame in an IRQ
|
||||
// Plots simple plots
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -3448,7 +3449,7 @@ Score: 3147
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter - and counts plots per frame in an IRQ
|
||||
// Plots simple plots
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
|
@ -4021,10 +4021,11 @@ Allocated zp ZP_BYTE:224 [ divr16u::$2 ]
|
||||
Allocated zp ZP_WORD:225 [ rem16u#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter - and counts plots per frame in an IRQ
|
||||
// Plots a fullscreen elipsis
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -6376,7 +6377,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter - and counts plots per frame in an IRQ
|
||||
// Plots a fullscreen elipsis
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -8645,7 +8646,7 @@ Score: 20251
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter - and counts plots per frame in an IRQ
|
||||
// Plots a fullscreen elipsis
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
|
@ -4257,10 +4257,11 @@ Allocated zp ZP_BYTE:223 [ divr16u::$2 ]
|
||||
Allocated zp ZP_WORD:224 [ rem16u#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter - and counts plots per frame in an IRQ
|
||||
// Plots a spiral
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -6693,7 +6694,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter - and counts plots per frame in an IRQ
|
||||
// Plots a spiral
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -9054,7 +9055,7 @@ Score: 20436
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter - and counts plots per frame in an IRQ
|
||||
// Plots a spiral
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
|
@ -2493,10 +2493,11 @@ Allocated zp ZP_BYTE:72 [ bitmap_init::$5 ]
|
||||
Allocated zp ZP_BYTE:73 [ bitmap_init::$6 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter
|
||||
// Plots a few lines using the bresenham line algorithm
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -3717,7 +3718,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter
|
||||
// Plots a few lines using the bresenham line algorithm
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -4970,7 +4971,7 @@ Score: 27229
|
||||
// File Comments
|
||||
// Tests the simple bitmap plotter
|
||||
// Plots a few lines using the bresenham line algorithm
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -1020,8 +1020,9 @@ Allocated zp ZP_BYTE:32 [ init_plot_tables::$8 ]
|
||||
Allocated zp ZP_BYTE:33 [ init_plot_tables::$9 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1559,7 +1560,7 @@ Allocated (was zp ZP_BYTE:30) zp ZP_BYTE:14 [ init_plot_tables::$10 ]
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -2149,7 +2150,7 @@ FINAL ASSEMBLER
|
||||
Score: 6171
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -124,8 +124,9 @@ Allocated zp ZP_BYTE:2 [ main::c#2 main::c#1 ]
|
||||
Allocated zp ZP_BYTE:3 [ main::$0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -204,7 +205,7 @@ Uplifting [] best 289 combination
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -304,7 +305,7 @@ FINAL ASSEMBLER
|
||||
Score: 187
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -386,9 +386,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// A Minimal test of boolean constants.
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -508,7 +509,7 @@ Uplifting [] best 180 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// A Minimal test of boolean constants.
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -680,7 +681,7 @@ Score: 60
|
||||
|
||||
// File Comments
|
||||
// A Minimal test of boolean constants.
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -275,9 +275,10 @@ Allocated zp ZP_BOOL:9 [ isSet::$1 ]
|
||||
Allocated zp ZP_BOOL:10 [ isSet::return#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test a function taking boolean parameter and returning boolean result
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -447,7 +448,7 @@ Allocated (was zp ZP_BOOL:4) zp ZP_BOOL:2 [ isSet::b#0 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test a function taking boolean parameter and returning boolean result
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -631,7 +632,7 @@ Score: 540
|
||||
|
||||
// File Comments
|
||||
// Test a function taking boolean parameter and returning boolean result
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -657,9 +657,10 @@ Allocated zp ZP_BYTE:8 [ bool_or::$1 ]
|
||||
Allocated zp ZP_BYTE:9 [ bool_and::$1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// A test of boolean conditions using && || and !
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1031,7 +1032,7 @@ Uplifting [] best 2488 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// A test of boolean conditions using && || and !
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1474,7 +1475,7 @@ Score: 1684
|
||||
|
||||
// File Comments
|
||||
// A test of boolean conditions using && || and !
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -139,9 +139,10 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BOOL:2 [ framedone#2 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Some bool code that causes a NullPointerException
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -203,7 +204,7 @@ Uplifting [main] best 892 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Some bool code that causes a NullPointerException
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -290,7 +291,7 @@ Score: 820
|
||||
|
||||
// File Comments
|
||||
// Some bool code that causes a NullPointerException
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -133,9 +133,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests a pointer to a boolean
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -200,7 +201,7 @@ Uplifting [] best 56 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests a pointer to a boolean
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -286,7 +287,7 @@ Score: 40
|
||||
|
||||
// File Comments
|
||||
// Tests a pointer to a boolean
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -710,9 +710,10 @@ Allocated zp ZP_BYTE:10 [ bool_or::$1 ]
|
||||
Allocated zp ZP_BYTE:11 [ bool_and::$1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// A test of boolean conditions using && || and !
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1120,7 +1121,7 @@ Allocated (was zp ZP_BOOL:8) zp ZP_BOOL:3 [ bool_complex::o2#0 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// A test of boolean conditions using && || and !
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1598,7 +1599,7 @@ Score: 2059
|
||||
|
||||
// File Comments
|
||||
// A test of boolean conditions using && || and !
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -390,8 +390,9 @@ Allocated zp ZP_BYTE:5 [ main::e#3 main::e#5 main::e#1 main::e#2 ]
|
||||
Allocated zp ZP_BYTE:6 [ main::y#2 main::y#4 main::y#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -547,7 +548,7 @@ Allocated (was zp ZP_BYTE:6) zp ZP_BYTE:5 [ main::y#2 main::y#4 main::y#1 ]
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -744,7 +745,7 @@ FINAL ASSEMBLER
|
||||
Score: 926
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -401,8 +401,9 @@ Allocated zp ZP_BYTE:6 [ main::y#2 main::y#4 main::y#1 ]
|
||||
Allocated zp ZP_WORD:7 [ main::$15 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -569,7 +570,7 @@ Allocated (was zp ZP_WORD:7) zp ZP_WORD:6 [ main::$15 ]
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -777,7 +778,7 @@ FINAL ASSEMBLER
|
||||
Score: 1111
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -2275,9 +2275,10 @@ Allocated zp ZP_BYTE:24 [ print_byte::$0 ]
|
||||
Allocated zp ZP_BYTE:25 [ print_byte::$2 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests the different standard C types
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -3341,7 +3342,7 @@ Allocated (was zp ZP_WORD:22) zp ZP_WORD:14 [ memset::dst#2 memset::dst#1 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests the different standard C types
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -4685,7 +4686,7 @@ Score: 2166
|
||||
|
||||
// File Comments
|
||||
// Tests the different standard C types
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -1603,9 +1603,10 @@ Allocated zp ZP_BYTE:25 [ gfx_init_screen0::$2 ]
|
||||
Allocated zp ZP_BYTE:26 [ gfx_init_screen0::$3 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// C64DTV 8bpp charmode stretcher
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -2388,7 +2389,7 @@ Allocated (was zp ZP_BYTE:24) zp ZP_BYTE:13 [ gfx_init_screen0::$1 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// C64DTV 8bpp charmode stretcher
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -3269,7 +3270,7 @@ Score: 75375
|
||||
|
||||
// File Comments
|
||||
// C64DTV 8bpp charmode stretcher
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -1134,9 +1134,10 @@ Allocated zp ZP_WORD:14 [ gfx_init_chunky::$8 ]
|
||||
Allocated zp ZP_BYTE:16 [ gfx_init_chunky::c#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// C64DTV 8bpp charmode stretcher
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1691,7 +1692,7 @@ Allocated (was zp ZP_WORD:14) zp ZP_WORD:7 [ gfx_init_chunky::$8 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// C64DTV 8bpp charmode stretcher
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -2328,7 +2329,7 @@ Score: 19882
|
||||
|
||||
// File Comments
|
||||
// C64DTV 8bpp charmode stretcher
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -641,9 +641,10 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BYTE:2 [ main::$13 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Fill a box on the screen using the blitter
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -904,7 +905,7 @@ Uplifting [] best 348 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Fill a box on the screen using the blitter
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1247,7 +1248,7 @@ Score: 291
|
||||
|
||||
// File Comments
|
||||
// Fill a box on the screen using the blitter
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -683,8 +683,9 @@ Allocated zp ZP_BYTE:2 [ main::r#2 main::r#1 ]
|
||||
Allocated zp ZP_BYTE:3 [ main::$9 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1006,7 +1007,7 @@ Uplifting [] best 2515 combination
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1390,7 +1391,7 @@ FINAL ASSEMBLER
|
||||
Score: 1553
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -329,9 +329,10 @@ Allocated zp ZP_BYTE:2 [ main::r#2 main::r#1 ]
|
||||
Allocated zp ZP_BYTE:3 [ main::c#2 main::c#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test C64DTV v2 256-colors and the 16-color redefinable palette
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -490,7 +491,7 @@ Uplifting [] best 11689 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test C64DTV v2 256-colors and the 16-color redefinable palette
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -691,7 +692,7 @@ Score: 10174
|
||||
|
||||
// File Comments
|
||||
// Test C64DTV v2 256-colors and the 16-color redefinable palette
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -15133,9 +15133,10 @@ Allocated zp ZP_BYTE:341 [ gfx_init_screen0::$2 ]
|
||||
Allocated zp ZP_BYTE:342 [ gfx_init_screen0::$3 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Interactive Explorer for C64DTV Screen Modes
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -22544,7 +22545,7 @@ Allocated (was zp ZP_BYTE:340) zp ZP_BYTE:139 [ gfx_init_screen0::$1 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Interactive Explorer for C64DTV Screen Modes
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -30424,7 +30425,7 @@ Score: 10127070
|
||||
|
||||
// File Comments
|
||||
// Interactive Explorer for C64DTV Screen Modes
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -14063,9 +14063,10 @@ Allocated zp ZP_BYTE:293 [ mode_stdchar::$30 ]
|
||||
Allocated zp ZP_BYTE:294 [ print_str_lines::ch#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Exploring C64DTV Screen Modes
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -20970,7 +20971,7 @@ Allocated (was zp ZP_BYTE:291) zp ZP_BYTE:128 [ mode_stdchar::$28 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Exploring C64DTV Screen Modes
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -28102,7 +28103,7 @@ Score: 2305541
|
||||
|
||||
// File Comments
|
||||
// Exploring C64DTV Screen Modes
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -260,9 +260,10 @@ Allocated zp ZP_WORD:3 [ print::w#3 ]
|
||||
Allocated zp ZP_BYTE:5 [ print::$0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test auto-casting of call-parameters
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -384,7 +385,7 @@ Allocated (was zp ZP_WORD:3) zp ZP_WORD:2 [ print::w#3 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test auto-casting of call-parameters
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -540,7 +541,7 @@ Score: 86
|
||||
|
||||
// File Comments
|
||||
// Test auto-casting of call-parameters
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -251,11 +251,12 @@ Allocated zp ZP_BYTE:3 [ line::x#2 line::x#0 line::x#1 ]
|
||||
Allocated zp ZP_WORD:4 [ screen#10 screen#14 screen#11 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Multiple calls with different (constant?) parameters should yield different values at runtime
|
||||
// Currently the same constant parameter is passed on every call.
|
||||
// Reason: Multiple versioned parameter constants x0#0, x0#1 are only output as a single constant in the ASM .const x0 = 0
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -378,7 +379,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// Multiple calls with different (constant?) parameters should yield different values at runtime
|
||||
// Currently the same constant parameter is passed on every call.
|
||||
// Reason: Multiple versioned parameter constants x0#0, x0#1 are only output as a single constant in the ASM .const x0 = 0
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -535,7 +536,7 @@ Score: 348
|
||||
// Multiple calls with different (constant?) parameters should yield different values at runtime
|
||||
// Currently the same constant parameter is passed on every call.
|
||||
// Reason: Multiple versioned parameter constants x0#0, x0#1 are only output as a single constant in the ASM .const x0 = 0
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -136,9 +136,10 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BYTE:2 [ main::i#2 main::i#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Example of NOP-casting a dereferenced signed byte to a byte
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -210,7 +211,7 @@ Uplifting [] best 288 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Example of NOP-casting a dereferenced signed byte to a byte
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -310,7 +311,7 @@ Score: 186
|
||||
|
||||
// File Comments
|
||||
// Example of NOP-casting a dereferenced signed byte to a byte
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -226,9 +226,10 @@ Allocated zp ZP_WORD:2 [ main::getScreen1_return#0 ]
|
||||
Allocated zp ZP_WORD:4 [ main::spritePtr1_return#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests a cast that is not needed
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -306,7 +307,7 @@ Coalescing zero page register with common assignment [ zp ZP_WORD:2 [ main::getS
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests a cast that is not needed
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -421,7 +422,7 @@ Score: 48
|
||||
|
||||
// File Comments
|
||||
// Tests a cast that is not needed
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -231,9 +231,10 @@ Allocated zp ZP_WORD:4 [ main::spritePtr1_$0#0 ]
|
||||
Allocated zp ZP_BYTE:6 [ main::spritePtr1_return#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests a cast that is not needed
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -317,7 +318,7 @@ Coalescing zero page register with common assignment [ zp ZP_WORD:2 [ main::getS
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests a cast that is not needed
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -437,7 +438,7 @@ Score: 49
|
||||
|
||||
// File Comments
|
||||
// Tests a cast that is not needed
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -120,9 +120,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests a cast that is not needed
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -170,7 +171,7 @@ Uplifting [] best 27 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests a cast that is not needed
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -243,7 +244,7 @@ Score: 12
|
||||
|
||||
// File Comments
|
||||
// Tests a cast that is not needed
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -233,9 +233,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests that casting inside constants in the output handles precedence between cast and + correctly - should generate the following KA-expression ($ff & sumw>>1)+1
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -311,7 +312,7 @@ Uplifting [] best 61 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests that casting inside constants in the output handles precedence between cast and + correctly - should generate the following KA-expression ($ff & sumw>>1)+1
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -424,7 +425,7 @@ Score: 46
|
||||
|
||||
// File Comments
|
||||
// Tests that casting inside constants in the output handles precedence between cast and + correctly - should generate the following KA-expression ($ff & sumw>>1)+1
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -362,8 +362,9 @@ Allocated zp ZP_BYTE:5 [ main::sb#0 ]
|
||||
Allocated zp ZP_BYTE:6 [ w::b2#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -520,7 +521,7 @@ Uplifting [] best 816 combination
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -716,7 +717,7 @@ FINAL ASSEMBLER
|
||||
Score: 648
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -381,8 +381,9 @@ Allocated zp ZP_BYTE:7 [ main::c#2 ]
|
||||
Allocated zp ZP_BYTE:8 [ main::$1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -567,7 +568,7 @@ Uplifting [main] best 7232 combination zp ZP_BYTE:2 [ main::y#2 main::y#1 ]
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -799,7 +800,7 @@ FINAL ASSEMBLER
|
||||
Score: 5627
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -284,9 +284,10 @@ Allocated zp ZP_BYTE:7 [ main::column#2 main::column#1 ]
|
||||
Allocated zp ZP_BYTE:8 [ main::color#3 main::color#5 main::color#2 main::color#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Draws a chess board in the upper left corner of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -445,7 +446,7 @@ Uplifting [main] best 4863 combination zp ZP_BYTE:6 [ main::row#4 main::row#1 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Draws a chess board in the upper left corner of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -634,7 +635,7 @@ Score: 3861
|
||||
|
||||
// File Comments
|
||||
// Draws a chess board in the upper left corner of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -716,9 +716,10 @@ Allocated zp ZP_BYTE:29 [ print_byte_at::$2 ]
|
||||
Allocated zp ZP_DWORD:30 [ clock::return#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Counting cycles using a CIA timer
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1144,7 +1145,7 @@ Allocated (was zp ZP_DWORD:12) zp ZP_DWORD:9 [ clock::return#2 main::$1 clock::r
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Counting cycles using a CIA timer
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1585,7 +1586,7 @@ Score: 869
|
||||
|
||||
// File Comments
|
||||
// Counting cycles using a CIA timer
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -684,9 +684,10 @@ Allocated zp ZP_BYTE:21 [ print_byte_at::$2 ]
|
||||
Allocated zp ZP_DWORD:22 [ clock::return#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Setup and run a simple CIA-timer
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1071,7 +1072,7 @@ Allocated (was zp ZP_DWORD:12) zp ZP_DWORD:9 [ clock::return#2 print_dword_at::d
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Setup and run a simple CIA-timer
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1479,7 +1480,7 @@ Score: 455
|
||||
|
||||
// File Comments
|
||||
// Setup and run a simple CIA-timer
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -244,8 +244,9 @@ Allocated zp ZP_BYTE:3 [ irq_raster_next#0 irq_raster_next#1 ]
|
||||
Allocated zp ZP_BYTE:4 [ irq::$0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -377,7 +378,7 @@ Removing interrupt register storage ldy #00 in SEG30 [16] return - exit interru
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -537,7 +538,7 @@ FINAL ASSEMBLER
|
||||
Score: 159
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
|
@ -133,9 +133,10 @@ Allocated zp ZP_BYTE:2 [ main::j#2 main::j#1 ]
|
||||
Allocated zp ZP_BYTE:3 [ main::i#2 main::i#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests comma-separated declarations inside for()
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -211,7 +212,7 @@ Uplifting [] best 303 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests comma-separated declarations inside for()
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -317,7 +318,7 @@ Score: 201
|
||||
|
||||
// File Comments
|
||||
// Tests comma-separated declarations inside for()
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -131,9 +131,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests comma-separated declarations
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -190,7 +191,7 @@ Uplifting [] best 39 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests comma-separated declarations
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -272,7 +273,7 @@ Score: 24
|
||||
|
||||
// File Comments
|
||||
// Tests comma-separated declarations
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -106,9 +106,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests simple comma-expression (in parenthesis)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -156,7 +157,7 @@ Uplifting [] best 27 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests simple comma-expression (in parenthesis)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -229,7 +230,7 @@ Score: 12
|
||||
|
||||
// File Comments
|
||||
// Tests simple comma-expression (in parenthesis)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -93,9 +93,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests simple comma-expressions (without parenthesis)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -142,7 +143,7 @@ Uplifting [] best 27 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests simple comma-expressions (without parenthesis)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -212,7 +213,7 @@ Score: 12
|
||||
|
||||
// File Comments
|
||||
// Tests simple comma-expressions (without parenthesis)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -137,9 +137,10 @@ Allocated zp ZP_BYTE:2 [ main::j#2 main::j#1 ]
|
||||
Allocated zp ZP_BYTE:3 [ main::i#2 main::i#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests comma-expressions in for()-statement
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -215,7 +216,7 @@ Uplifting [] best 303 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests comma-expressions in for()-statement
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -321,7 +322,7 @@ Score: 201
|
||||
|
||||
// File Comments
|
||||
// Tests comma-expressions in for()-statement
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -185,9 +185,10 @@ Allocated zp ZP_WORD:2 [ main::sc#2 main::sc#1 ]
|
||||
Allocated zp ZP_WORD:4 [ main::cc#2 main::cc#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test rewriting of constant comparisons for pointers
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -306,7 +307,7 @@ Uplifting [] best 1198 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test rewriting of constant comparisons for pointers
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -466,7 +467,7 @@ Score: 1036
|
||||
|
||||
// File Comments
|
||||
// Test rewriting of constant comparisons for pointers
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -485,9 +485,10 @@ Allocated zp ZP_BYTE:7 [ main::i1#10 main::i1#1 ]
|
||||
Allocated zp ZP_BYTE:8 [ main::$3 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test rewriting of constant comparisons
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -732,7 +733,7 @@ Allocated (was zp ZP_WORD:5) zp ZP_WORD:4 [ main::screen#4 main::screen#1 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test rewriting of constant comparisons
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -1016,7 +1017,7 @@ Score: 1931
|
||||
|
||||
// File Comments
|
||||
// Test rewriting of constant comparisons
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -180,9 +180,10 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BYTE:2 [ main::key#2 main::key#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test to provoke Exception when using complex || condition
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -263,7 +264,7 @@ Uplifting [] best 382 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test to provoke Exception when using complex || condition
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -382,7 +383,7 @@ Score: 220
|
||||
|
||||
// File Comments
|
||||
// Test to provoke Exception when using complex || condition
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -5182,9 +5182,10 @@ Allocated zp ZP_BYTE:184 [ processChars::$39 ]
|
||||
Allocated zp ZP_BYTE:185 [ processChars::$33 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Clears start screen throwing around the letters (by turning them into sprites)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -8231,7 +8232,7 @@ Allocated (was zp ZP_BYTE:176) zp ZP_BYTE:79 [ processChars::ypos#0 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Clears start screen throwing around the letters (by turning them into sprites)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -11147,7 +11148,7 @@ Score: 1113582
|
||||
|
||||
// File Comments
|
||||
// Clears start screen throwing around the letters (by turning them into sprites)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
|
@ -384,10 +384,11 @@ Allocated zp ZP_WORD:8 [ memcpy::dst#2 memcpy::dst#4 memcpy::dst#1 ]
|
||||
Allocated zp ZP_WORD:10 [ memcpy::src_end#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Display MEDUSA PETSCII by Buzz_clik
|
||||
// https://csdb.dk/release/?id=178673
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -566,7 +567,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Display MEDUSA PETSCII by Buzz_clik
|
||||
// https://csdb.dk/release/?id=178673
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -792,7 +793,7 @@ Score: 797
|
||||
// File Comments
|
||||
// Display MEDUSA PETSCII by Buzz_clik
|
||||
// https://csdb.dk/release/?id=178673
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -8002,9 +8002,10 @@ Allocated zp ZP_BYTE:310 [ mulf_init::$10 ]
|
||||
Allocated zp ZP_BYTE:311 [ mulf_init::$11 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Show a few simple splines using the splines library
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -12185,7 +12186,7 @@ Allocated (was zp ZP_BYTE:305) zp ZP_BYTE:93 [ bitmap_init::$7 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Show a few simple splines using the splines library
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -15840,7 +15841,7 @@ Score: 678994
|
||||
|
||||
// File Comments
|
||||
// Show a few simple splines using the splines library
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -2136,8 +2136,9 @@ Allocated zp ZP_BYTE:25 [ sprites_irq::ptr#1 ]
|
||||
Allocated zp ZP_BYTE:26 [ sprites_irq::ptr#2 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -3015,7 +3016,7 @@ Removing interrupt register storage ldy #00 in SEG166 [98] return - exit interr
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -4000,7 +4001,7 @@ FINAL ASSEMBLER
|
||||
Score: 11662
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
|
@ -13834,11 +13834,12 @@ Allocated zp ZP_BYTE:222 [ sprites_irq::ptr#1 ]
|
||||
Allocated zp ZP_BYTE:223 [ sprites_irq::ptr#2 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tetris Game for the Commodore 64
|
||||
// The tetris game tries to match NES tetris gameplay pretty closely
|
||||
// Source: https://meatfighter.com/nintendotetrisai/
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -18973,7 +18974,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// Tetris Game for the Commodore 64
|
||||
// The tetris game tries to match NES tetris gameplay pretty closely
|
||||
// Source: https://meatfighter.com/nintendotetrisai/
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -24454,7 +24455,7 @@ Score: 3353852
|
||||
// Tetris Game for the Commodore 64
|
||||
// The tetris game tries to match NES tetris gameplay pretty closely
|
||||
// Source: https://meatfighter.com/nintendotetrisai/
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
|
@ -383,10 +383,11 @@ Allocated zp ZP_WORD:4 [ main::i1#2 main::i1#1 ]
|
||||
Allocated zp ZP_BYTE:6 [ main::idx#12 main::idx#17 main::idx#5 main::idx#6 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests using integer conditions in if()
|
||||
// This should produce '+ ++ ++' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -579,7 +580,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests using integer conditions in if()
|
||||
// This should produce '+ ++ ++' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -817,7 +818,7 @@ Score: 862
|
||||
// File Comments
|
||||
// Tests using integer conditions in if()
|
||||
// This should produce '+ ++ ++' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -385,10 +385,11 @@ Allocated zp ZP_WORD:4 [ main::i1#2 main::i1#1 ]
|
||||
Allocated zp ZP_BYTE:6 [ main::idx#12 main::idx#17 main::idx#5 main::idx#6 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests using integer conditions in if()
|
||||
// This should produce '0 0 0' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -580,7 +581,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests using integer conditions in if()
|
||||
// This should produce '0 0 0' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -818,7 +819,7 @@ Score: 862
|
||||
// File Comments
|
||||
// Tests using integer conditions in if()
|
||||
// This should produce '0 0 0' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -309,10 +309,11 @@ Allocated zp ZP_BYTE:6 [ main::k#2 main::k#1 ]
|
||||
Allocated zp ZP_BYTE:7 [ idx#12 idx#4 idx#13 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests using integer conditions in while() / for() / do..while
|
||||
// This should produce 'ba ba ba' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -484,7 +485,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests using integer conditions in while() / for() / do..while
|
||||
// This should produce 'ba ba ba' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -689,7 +690,7 @@ Score: 599
|
||||
// File Comments
|
||||
// Tests using integer conditions in while() / for() / do..while
|
||||
// This should produce 'ba ba ba' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -210,10 +210,11 @@ Allocated zp ZP_BYTE:3 [ main::idx#2 main::idx#1 ]
|
||||
Allocated zp ZP_BYTE:4 [ main::j#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests using integer conditions in ternary operator
|
||||
// This should produce '++0++' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -315,7 +316,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests using integer conditions in ternary operator
|
||||
// This should produce '++0++' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -452,7 +453,7 @@ Score: 296
|
||||
// File Comments
|
||||
// Tests using integer conditions in ternary operator
|
||||
// This should produce '++0++' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -411,10 +411,11 @@ Allocated zp ZP_BYTE:8 [ main::$11 ]
|
||||
Allocated zp ZP_BYTE:9 [ main::$12 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests using integer conditions in && and || operator
|
||||
// This should produce '01010101', '00110011', '00010001', '01110111' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -629,7 +630,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests using integer conditions in && and || operator
|
||||
// This should produce '01010101', '00110011', '00010001', '01110111' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -863,7 +864,7 @@ Score: 1121
|
||||
// File Comments
|
||||
// Tests using integer conditions in && and || operator
|
||||
// This should produce '01010101', '00110011', '00010001', '01110111' at the top of the screen
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -112,9 +112,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests a condition type mismatch (not boolean)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -165,7 +166,7 @@ Uplifting [] best 57 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests a condition type mismatch (not boolean)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -242,7 +243,7 @@ Score: 12
|
||||
|
||||
// File Comments
|
||||
// Tests a condition type mismatch (not boolean)
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -158,8 +158,9 @@ Allocated zp ZP_BYTE:2 [ main::x#2 main::x#1 ]
|
||||
Allocated zp ZP_BYTE:3 [ main::y#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -245,7 +246,7 @@ Uplifting [] best 393 combination
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -357,7 +358,7 @@ FINAL ASSEMBLER
|
||||
Score: 291
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -226,8 +226,9 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -292,7 +293,7 @@ Uplifting [] best 78 combination
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -388,7 +389,7 @@ FINAL ASSEMBLER
|
||||
Score: 24
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -103,9 +103,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Ensure that if()'s with constant comparisons are identified and eliminated
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -156,7 +157,7 @@ Uplifting [] best 57 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Ensure that if()'s with constant comparisons are identified and eliminated
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -232,7 +233,7 @@ Score: 12
|
||||
|
||||
// File Comments
|
||||
// Ensure that if()'s with constant comparisons are identified and eliminated
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -184,9 +184,10 @@ Allocated zp ZP_BYTE:2 [ A#0 ]
|
||||
Allocated zp ZP_BYTE:3 [ sub::D#0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Tests that constants are identified early
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -277,7 +278,7 @@ Uplifting [] best 77 combination zp ZP_BYTE:2 [ A#0 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Tests that constants are identified early
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -389,7 +390,7 @@ Score: 71
|
||||
|
||||
// File Comments
|
||||
// Tests that constants are identified early
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
|
@ -336,8 +336,9 @@ Allocated zp ZP_BYTE:5 [ plot::idx#0 ]
|
||||
Allocated zp ZP_BYTE:6 [ plot::$0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -491,7 +492,7 @@ Uplifting [line] best 3018 combination reg byte y [ line::x#2 line::x#1 ]
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -684,7 +685,7 @@ FINAL ASSEMBLER
|
||||
Score: 1713
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -151,9 +151,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Constant if() contains call to (unused) function - should be optimized away
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -204,7 +205,7 @@ Uplifting [] best 57 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Constant if() contains call to (unused) function - should be optimized away
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -281,7 +282,7 @@ Score: 12
|
||||
|
||||
// File Comments
|
||||
// Constant if() contains call to (unused) function - should be optimized away
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -129,9 +129,10 @@ Allocated zp ZP_BYTE:2 [ main::i#2 main::i#1 ]
|
||||
Allocated zp ZP_BYTE:3 [ main::$0 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test a problem with converting casted constant numbers to fixed type constant integers
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -211,7 +212,7 @@ Uplifting [] best 343 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test a problem with converting casted constant numbers to fixed type constant integers
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -315,7 +316,7 @@ Score: 241
|
||||
|
||||
// File Comments
|
||||
// Test a problem with converting casted constant numbers to fixed type constant integers
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -90,9 +90,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test a constant with multiplication and division
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -139,7 +140,7 @@ Uplifting [] best 27 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test a constant with multiplication and division
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -209,7 +210,7 @@ Score: 12
|
||||
|
||||
// File Comments
|
||||
// Test a constant with multiplication and division
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -258,9 +258,10 @@ Allocated zp ZP_BYTE:8 [ main::$2 ]
|
||||
Allocated zp ZP_BYTE:9 [ sum::return#3 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test that the compiler optimizes when the same parameter value is passed into a function in all calls
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -396,7 +397,7 @@ Uplifting [sum] best 79 combination reg byte a [ sum::return#3 ]
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test that the compiler optimizes when the same parameter value is passed into a function in all calls
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -552,7 +553,7 @@ Score: 52
|
||||
|
||||
// File Comments
|
||||
// Test that the compiler optimizes when the same parameter value is passed into a function in all calls
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -126,9 +126,10 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
//Test that constant pointers are detected correctly
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -179,7 +180,7 @@ Uplifting [] best 57 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
//Test that constant pointers are detected correctly
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -257,7 +258,7 @@ Score: 12
|
||||
|
||||
// File Comments
|
||||
//Test that constant pointers are detected correctly
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -166,9 +166,10 @@ Allocated zp ZP_BYTE:2 [ main::i#2 main::i#1 ]
|
||||
Allocated zp ZP_BYTE:3 [ main::$1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test fragment promotion of a constant (400) to signed word even if it also matches an unsigned word
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -260,7 +261,7 @@ Uplifting [] best 412 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test fragment promotion of a constant (400) to signed word even if it also matches an unsigned word
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -379,7 +380,7 @@ Score: 307
|
||||
|
||||
// File Comments
|
||||
// Test fragment promotion of a constant (400) to signed word even if it also matches an unsigned word
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -157,10 +157,11 @@ Allocated zp ZP_BYTE:6 [ main::$3 ]
|
||||
Allocated zp ZP_BYTE:7 [ main::$4 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Test a constant word pointers (pointing to a word placed on zeropage).
|
||||
// The result when running is "CML!" on the screen.
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -251,7 +252,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Test a constant word pointers (pointing to a word placed on zeropage).
|
||||
// The result when running is "CML!" on the screen.
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -357,7 +358,7 @@ Score: 60
|
||||
// File Comments
|
||||
// Test a constant word pointers (pointing to a word placed on zeropage).
|
||||
// The result when running is "CML!" on the screen.
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -78,8 +78,9 @@ Initial phi equivalence classes
|
||||
Complete equivalence classes
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -124,7 +125,7 @@ Uplifting [] best 27 combination
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -190,7 +191,7 @@ FINAL ASSEMBLER
|
||||
Score: 12
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -126,9 +126,10 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BYTE:2 [ main::i#2 main::i#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Concatenates string constants in different ways
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -203,7 +204,7 @@ Uplifting [] best 333 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Concatenates string constants in different ways
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -304,7 +305,7 @@ Score: 231
|
||||
|
||||
// File Comments
|
||||
// Concatenates string constants in different ways
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -125,9 +125,10 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BYTE:2 [ main::i#2 main::i#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Concatenates string constants in different ways
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -199,7 +200,7 @@ Uplifting [] best 288 combination
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Concatenates string constants in different ways
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -299,7 +300,7 @@ Score: 186
|
||||
|
||||
// File Comments
|
||||
// Concatenates string constants in different ways
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -188,8 +188,9 @@ Complete equivalence classes
|
||||
Allocated zp ZP_BYTE:2 [ main::i#2 main::i#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -270,7 +271,7 @@ Uplifting [] best 275 combination
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -379,7 +380,7 @@ FINAL ASSEMBLER
|
||||
Score: 173
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -1604,8 +1604,9 @@ Allocated zp ZP_BYTE:15 [ assert_byte::c#3 ]
|
||||
Allocated zp ZP_WORD:16 [ memset::dst#2 memset::dst#1 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -2266,7 +2267,7 @@ Allocated (was zp ZP_WORD:16) zp ZP_WORD:10 [ memset::dst#2 memset::dst#1 ]
|
||||
|
||||
ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -3079,7 +3080,7 @@ FINAL ASSEMBLER
|
||||
Score: 1852
|
||||
|
||||
// File Comments
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
@ -2425,10 +2425,11 @@ Allocated zp ZP_BYTE:67 [ init_font_hex::$2 ]
|
||||
Allocated zp ZP_BYTE:68 [ init_font_hex::idx#3 ]
|
||||
|
||||
INITIAL ASM
|
||||
Target platform is c64basic
|
||||
// File Comments
|
||||
// Find atan2(x, y) using the CORDIC method
|
||||
// See http://bsvi.ru/uploads/CORDIC--_10EBA/cordic.pdf
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -3573,7 +3574,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
||||
// File Comments
|
||||
// Find atan2(x, y) using the CORDIC method
|
||||
// See http://bsvi.ru/uploads/CORDIC--_10EBA/cordic.pdf
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(bbegin)
|
||||
.pc = $80d "Program"
|
||||
@ -4826,7 +4827,7 @@ Score: 1044367
|
||||
// File Comments
|
||||
// Find atan2(x, y) using the CORDIC method
|
||||
// See http://bsvi.ru/uploads/CORDIC--_10EBA/cordic.pdf
|
||||
// Basic Upstart
|
||||
// Upstart
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user