mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-04-05 07:40:39 +00:00
parent
cb1b9bece1
commit
3692797650
16
.idea/misc.xml
generated
16
.idea/misc.xml
generated
@ -1,5 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ANTLRGenerationPreferences">
|
||||
<option name="perGrammarGenerationSettings">
|
||||
<list>
|
||||
<PerGrammarGenerationSettings>
|
||||
<option name="fileName" value="$PROJECT_DIR$/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4" />
|
||||
<option name="autoGen" value="true" />
|
||||
<option name="outputDir" value="$PROJECT_DIR$/src/main/java" />
|
||||
<option name="libDir" value="" />
|
||||
<option name="encoding" value="" />
|
||||
<option name="pkg" value="" />
|
||||
<option name="language" value="" />
|
||||
<option name="generateVisitor" value="true" />
|
||||
</PerGrammarGenerationSettings>
|
||||
</list>
|
||||
</option>
|
||||
</component>
|
||||
<component name="MavenProjectsManager">
|
||||
<option name="originalFiles">
|
||||
<list>
|
||||
|
@ -692,28 +692,6 @@ public interface ProgramValue {
|
||||
|
||||
}
|
||||
|
||||
/** Location inside inline kickasm code. */
|
||||
class ProgramValueKickAsmLocation implements ProgramValue {
|
||||
|
||||
private StatementKickAsm statementKickAsm;
|
||||
|
||||
ProgramValueKickAsmLocation(StatementKickAsm statementKickAsm) {
|
||||
super();
|
||||
this.statementKickAsm = statementKickAsm;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Value get() {
|
||||
return statementKickAsm.getLocation();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void set(Value value) {
|
||||
statementKickAsm.setLocation((RValue) value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class ProgramValueListElement implements ProgramValue {
|
||||
private ValueList list;
|
||||
private int idx;
|
||||
|
@ -144,10 +144,6 @@ public class ProgramValueIterator {
|
||||
}
|
||||
} else if(statement instanceof StatementKickAsm) {
|
||||
StatementKickAsm statementKickAsm = (StatementKickAsm) statement;
|
||||
RValue location = statementKickAsm.getLocation();
|
||||
if(location != null) {
|
||||
execute(new ProgramValue.ProgramValueKickAsmLocation(statementKickAsm), handler, statement, statementsIt, block);
|
||||
}
|
||||
RValue bytes = statementKickAsm.getBytes();
|
||||
if(bytes != null) {
|
||||
execute(new ProgramValue.ProgramValueKickAsmBytes(statementKickAsm), handler, statement, statementsIt, block);
|
||||
|
@ -15,9 +15,6 @@ public class StatementKickAsm extends StatementBase {
|
||||
/** KickAssembler code. */
|
||||
private String kickAsmCode;
|
||||
|
||||
/** The absolute address to generate the kick-assembler code at. If null it is generated inline. */
|
||||
private RValue location;
|
||||
|
||||
/** The number of bytes generated by the kick-assembler code. */
|
||||
private RValue bytes;
|
||||
|
||||
@ -36,10 +33,9 @@ public class StatementKickAsm extends StatementBase {
|
||||
this.uses = new ArrayList<>();
|
||||
}
|
||||
|
||||
public StatementKickAsm(String kickAsmCode, RValue location, RValue bytes, RValue cycles, List<SymbolRef> uses, AsmClobber declaredClobber, StatementSource source, List<Comment> comments) {
|
||||
public StatementKickAsm(String kickAsmCode, RValue bytes, RValue cycles, List<SymbolRef> uses, AsmClobber declaredClobber, StatementSource source, List<Comment> comments) {
|
||||
super(source, comments);
|
||||
this.kickAsmCode = kickAsmCode;
|
||||
this.location = location;
|
||||
this.bytes = bytes;
|
||||
this.cycles = cycles;
|
||||
this.uses = uses;
|
||||
@ -54,14 +50,6 @@ public class StatementKickAsm extends StatementBase {
|
||||
this.declaredClobber = declaredClobber;
|
||||
}
|
||||
|
||||
public RValue getLocation() {
|
||||
return location;
|
||||
}
|
||||
|
||||
public void setLocation(RValue location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public List<SymbolRef> getUses() {
|
||||
return uses;
|
||||
}
|
||||
@ -74,10 +62,6 @@ public class StatementKickAsm extends StatementBase {
|
||||
public String toString(Program program, boolean aliveInfo) {
|
||||
StringBuilder txt = new StringBuilder();
|
||||
txt.append("kickasm(");
|
||||
if(location!=null) {
|
||||
txt.append("location ");
|
||||
txt.append(location.toString(program));
|
||||
}
|
||||
for(SymbolRef use : uses) {
|
||||
txt.append(" uses ");
|
||||
txt.append(use.getFullName());
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 by ANTLR 4.7.2
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 by ANTLR 4.8
|
||||
package dk.camelot64.kickc.parser;
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@ import org.antlr.v4.runtime.misc.*;
|
||||
|
||||
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
|
||||
public class KickCLexer extends Lexer {
|
||||
static { RuntimeMetaData.checkVersion("4.7.2", RuntimeMetaData.VERSION); }
|
||||
static { RuntimeMetaData.checkVersion("4.8", RuntimeMetaData.VERSION); }
|
||||
|
||||
protected static final DFA[] _decisionToDFA;
|
||||
protected static final PredictionContextCache _sharedContextCache =
|
||||
|
@ -269,7 +269,6 @@ asmDirective
|
||||
| CLOBBERS STRING #asmDirectiveClobber
|
||||
| BYTES expr #asmDirectiveBytes
|
||||
| CYCLES expr #asmDirectiveCycles
|
||||
| PC ( INLINE | expr ) #asmDirectiveAddress
|
||||
;
|
||||
|
||||
asmLines
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
|
||||
package dk.camelot64.kickc.parser;
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@ import java.util.ArrayList;
|
||||
|
||||
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
|
||||
public class KickCParser extends Parser {
|
||||
static { RuntimeMetaData.checkVersion("4.7.2", RuntimeMetaData.VERSION); }
|
||||
static { RuntimeMetaData.checkVersion("4.8", RuntimeMetaData.VERSION); }
|
||||
|
||||
protected static final DFA[] _decisionToDFA;
|
||||
protected static final PredictionContextCache _sharedContextCache =
|
||||
@ -6131,27 +6131,6 @@ public class KickCParser extends Parser {
|
||||
else return visitor.visitChildren(this);
|
||||
}
|
||||
}
|
||||
public static class AsmDirectiveAddressContext extends AsmDirectiveContext {
|
||||
public TerminalNode PC() { return getToken(KickCParser.PC, 0); }
|
||||
public TerminalNode INLINE() { return getToken(KickCParser.INLINE, 0); }
|
||||
public ExprContext expr() {
|
||||
return getRuleContext(ExprContext.class,0);
|
||||
}
|
||||
public AsmDirectiveAddressContext(AsmDirectiveContext ctx) { copyFrom(ctx); }
|
||||
@Override
|
||||
public void enterRule(ParseTreeListener listener) {
|
||||
if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterAsmDirectiveAddress(this);
|
||||
}
|
||||
@Override
|
||||
public void exitRule(ParseTreeListener listener) {
|
||||
if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitAsmDirectiveAddress(this);
|
||||
}
|
||||
@Override
|
||||
public <T> T accept(ParseTreeVisitor<? extends T> visitor) {
|
||||
if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor<? extends T>)visitor).visitAsmDirectiveAddress(this);
|
||||
else return visitor.visitChildren(this);
|
||||
}
|
||||
}
|
||||
public static class AsmDirectiveClobberContext extends AsmDirectiveContext {
|
||||
public TerminalNode CLOBBERS() { return getToken(KickCParser.CLOBBERS, 0); }
|
||||
public TerminalNode STRING() { return getToken(KickCParser.STRING, 0); }
|
||||
@ -6213,7 +6192,7 @@ public class KickCParser extends Parser {
|
||||
AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState());
|
||||
enterRule(_localctx, 76, RULE_asmDirective);
|
||||
try {
|
||||
setState(805);
|
||||
setState(800);
|
||||
_errHandler.sync(this);
|
||||
switch (_input.LA(1)) {
|
||||
case RESOURCE:
|
||||
@ -6266,51 +6245,6 @@ public class KickCParser extends Parser {
|
||||
expr(0);
|
||||
}
|
||||
break;
|
||||
case PC:
|
||||
_localctx = new AsmDirectiveAddressContext(_localctx);
|
||||
enterOuterAlt(_localctx, 6);
|
||||
{
|
||||
setState(800);
|
||||
match(PC);
|
||||
setState(803);
|
||||
_errHandler.sync(this);
|
||||
switch (_input.LA(1)) {
|
||||
case INLINE:
|
||||
{
|
||||
setState(801);
|
||||
match(INLINE);
|
||||
}
|
||||
break;
|
||||
case CURLY_BEGIN:
|
||||
case PAR_BEGIN:
|
||||
case PLUS:
|
||||
case MINUS:
|
||||
case ASTERISK:
|
||||
case INC:
|
||||
case DEC:
|
||||
case AND:
|
||||
case BIT_NOT:
|
||||
case LESS_THAN:
|
||||
case GREATER_THAN:
|
||||
case SIZEOF:
|
||||
case TYPEID:
|
||||
case DEFINED:
|
||||
case LOGIC_NOT:
|
||||
case BOOLEAN:
|
||||
case NUMBER:
|
||||
case NAME:
|
||||
case STRING:
|
||||
case CHAR:
|
||||
{
|
||||
setState(802);
|
||||
expr(0);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
throw new NoViableAltException(this);
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
throw new NoViableAltException(this);
|
||||
}
|
||||
@ -6359,17 +6293,17 @@ public class KickCParser extends Parser {
|
||||
try {
|
||||
enterOuterAlt(_localctx, 1);
|
||||
{
|
||||
setState(810);
|
||||
setState(805);
|
||||
_errHandler.sync(this);
|
||||
_la = _input.LA(1);
|
||||
while (((((_la - 125)) & ~0x3f) == 0 && ((1L << (_la - 125)) & ((1L << (ASM_BYTE - 125)) | (1L << (ASM_MNEMONIC - 125)) | (1L << (ASM_MULTI_NAME - 125)) | (1L << (ASM_NAME - 125)))) != 0)) {
|
||||
{
|
||||
{
|
||||
setState(807);
|
||||
setState(802);
|
||||
asmLine();
|
||||
}
|
||||
}
|
||||
setState(812);
|
||||
setState(807);
|
||||
_errHandler.sync(this);
|
||||
_la = _input.LA(1);
|
||||
}
|
||||
@ -6419,28 +6353,28 @@ public class KickCParser extends Parser {
|
||||
AsmLineContext _localctx = new AsmLineContext(_ctx, getState());
|
||||
enterRule(_localctx, 80, RULE_asmLine);
|
||||
try {
|
||||
setState(816);
|
||||
setState(811);
|
||||
_errHandler.sync(this);
|
||||
switch (_input.LA(1)) {
|
||||
case ASM_MULTI_NAME:
|
||||
case ASM_NAME:
|
||||
enterOuterAlt(_localctx, 1);
|
||||
{
|
||||
setState(813);
|
||||
setState(808);
|
||||
asmLabel();
|
||||
}
|
||||
break;
|
||||
case ASM_MNEMONIC:
|
||||
enterOuterAlt(_localctx, 2);
|
||||
{
|
||||
setState(814);
|
||||
setState(809);
|
||||
asmInstruction();
|
||||
}
|
||||
break;
|
||||
case ASM_BYTE:
|
||||
enterOuterAlt(_localctx, 3);
|
||||
{
|
||||
setState(815);
|
||||
setState(810);
|
||||
asmBytes();
|
||||
}
|
||||
break;
|
||||
@ -6511,16 +6445,16 @@ public class KickCParser extends Parser {
|
||||
AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState());
|
||||
enterRule(_localctx, 82, RULE_asmLabel);
|
||||
try {
|
||||
setState(822);
|
||||
setState(817);
|
||||
_errHandler.sync(this);
|
||||
switch (_input.LA(1)) {
|
||||
case ASM_NAME:
|
||||
_localctx = new AsmLabelNameContext(_localctx);
|
||||
enterOuterAlt(_localctx, 1);
|
||||
{
|
||||
setState(818);
|
||||
setState(813);
|
||||
match(ASM_NAME);
|
||||
setState(819);
|
||||
setState(814);
|
||||
match(ASM_COLON);
|
||||
}
|
||||
break;
|
||||
@ -6528,9 +6462,9 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmLabelMultiContext(_localctx);
|
||||
enterOuterAlt(_localctx, 2);
|
||||
{
|
||||
setState(820);
|
||||
setState(815);
|
||||
match(ASM_MULTI_NAME);
|
||||
setState(821);
|
||||
setState(816);
|
||||
match(ASM_COLON);
|
||||
}
|
||||
break;
|
||||
@ -6579,14 +6513,14 @@ public class KickCParser extends Parser {
|
||||
try {
|
||||
enterOuterAlt(_localctx, 1);
|
||||
{
|
||||
setState(824);
|
||||
setState(819);
|
||||
match(ASM_MNEMONIC);
|
||||
setState(826);
|
||||
setState(821);
|
||||
_errHandler.sync(this);
|
||||
switch ( getInterpreter().adaptivePredict(_input,81,_ctx) ) {
|
||||
switch ( getInterpreter().adaptivePredict(_input,80,_ctx) ) {
|
||||
case 1:
|
||||
{
|
||||
setState(825);
|
||||
setState(820);
|
||||
asmParamMode();
|
||||
}
|
||||
break;
|
||||
@ -6642,23 +6576,23 @@ public class KickCParser extends Parser {
|
||||
try {
|
||||
enterOuterAlt(_localctx, 1);
|
||||
{
|
||||
setState(828);
|
||||
setState(823);
|
||||
match(ASM_BYTE);
|
||||
setState(829);
|
||||
setState(824);
|
||||
asmExpr(0);
|
||||
setState(834);
|
||||
setState(829);
|
||||
_errHandler.sync(this);
|
||||
_la = _input.LA(1);
|
||||
while (_la==ASM_COMMA) {
|
||||
{
|
||||
{
|
||||
setState(830);
|
||||
setState(825);
|
||||
match(ASM_COMMA);
|
||||
setState(831);
|
||||
setState(826);
|
||||
asmExpr(0);
|
||||
}
|
||||
}
|
||||
setState(836);
|
||||
setState(831);
|
||||
_errHandler.sync(this);
|
||||
_la = _input.LA(1);
|
||||
}
|
||||
@ -6818,14 +6752,14 @@ public class KickCParser extends Parser {
|
||||
AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState());
|
||||
enterRule(_localctx, 88, RULE_asmParamMode);
|
||||
try {
|
||||
setState(860);
|
||||
setState(855);
|
||||
_errHandler.sync(this);
|
||||
switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) {
|
||||
switch ( getInterpreter().adaptivePredict(_input,82,_ctx) ) {
|
||||
case 1:
|
||||
_localctx = new AsmModeAbsContext(_localctx);
|
||||
enterOuterAlt(_localctx, 1);
|
||||
{
|
||||
setState(837);
|
||||
setState(832);
|
||||
asmExpr(0);
|
||||
}
|
||||
break;
|
||||
@ -6833,9 +6767,9 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmModeImmContext(_localctx);
|
||||
enterOuterAlt(_localctx, 2);
|
||||
{
|
||||
setState(838);
|
||||
setState(833);
|
||||
match(ASM_IMM);
|
||||
setState(839);
|
||||
setState(834);
|
||||
asmExpr(0);
|
||||
}
|
||||
break;
|
||||
@ -6843,11 +6777,11 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmModeAbsXYContext(_localctx);
|
||||
enterOuterAlt(_localctx, 3);
|
||||
{
|
||||
setState(840);
|
||||
setState(835);
|
||||
asmExpr(0);
|
||||
setState(841);
|
||||
setState(836);
|
||||
match(ASM_COMMA);
|
||||
setState(842);
|
||||
setState(837);
|
||||
match(ASM_NAME);
|
||||
}
|
||||
break;
|
||||
@ -6855,15 +6789,15 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmModeIndIdxXYContext(_localctx);
|
||||
enterOuterAlt(_localctx, 4);
|
||||
{
|
||||
setState(844);
|
||||
setState(839);
|
||||
match(ASM_PAR_BEGIN);
|
||||
setState(845);
|
||||
setState(840);
|
||||
asmExpr(0);
|
||||
setState(846);
|
||||
setState(841);
|
||||
match(ASM_PAR_END);
|
||||
setState(847);
|
||||
setState(842);
|
||||
match(ASM_COMMA);
|
||||
setState(848);
|
||||
setState(843);
|
||||
match(ASM_NAME);
|
||||
}
|
||||
break;
|
||||
@ -6871,15 +6805,15 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmModeIdxIndXYContext(_localctx);
|
||||
enterOuterAlt(_localctx, 5);
|
||||
{
|
||||
setState(850);
|
||||
setState(845);
|
||||
match(ASM_PAR_BEGIN);
|
||||
setState(851);
|
||||
setState(846);
|
||||
asmExpr(0);
|
||||
setState(852);
|
||||
setState(847);
|
||||
match(ASM_COMMA);
|
||||
setState(853);
|
||||
setState(848);
|
||||
match(ASM_NAME);
|
||||
setState(854);
|
||||
setState(849);
|
||||
match(ASM_PAR_END);
|
||||
}
|
||||
break;
|
||||
@ -6887,11 +6821,11 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmModeIndContext(_localctx);
|
||||
enterOuterAlt(_localctx, 6);
|
||||
{
|
||||
setState(856);
|
||||
setState(851);
|
||||
match(ASM_PAR_BEGIN);
|
||||
setState(857);
|
||||
setState(852);
|
||||
asmExpr(0);
|
||||
setState(858);
|
||||
setState(853);
|
||||
match(ASM_PAR_END);
|
||||
}
|
||||
break;
|
||||
@ -7096,7 +7030,7 @@ public class KickCParser extends Parser {
|
||||
int _alt;
|
||||
enterOuterAlt(_localctx, 1);
|
||||
{
|
||||
setState(876);
|
||||
setState(871);
|
||||
_errHandler.sync(this);
|
||||
switch (_input.LA(1)) {
|
||||
case ASM_BRACKET_BEGIN:
|
||||
@ -7105,11 +7039,11 @@ public class KickCParser extends Parser {
|
||||
_ctx = _localctx;
|
||||
_prevctx = _localctx;
|
||||
|
||||
setState(863);
|
||||
setState(858);
|
||||
match(ASM_BRACKET_BEGIN);
|
||||
setState(864);
|
||||
setState(859);
|
||||
asmExpr(0);
|
||||
setState(865);
|
||||
setState(860);
|
||||
match(ASM_BRACKET_END);
|
||||
}
|
||||
break;
|
||||
@ -7121,7 +7055,7 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmExprUnaryContext(_localctx);
|
||||
_ctx = _localctx;
|
||||
_prevctx = _localctx;
|
||||
setState(867);
|
||||
setState(862);
|
||||
_la = _input.LA(1);
|
||||
if ( !(((((_la - 137)) & ~0x3f) == 0 && ((1L << (_la - 137)) & ((1L << (ASM_PLUS - 137)) | (1L << (ASM_MINUS - 137)) | (1L << (ASM_LESS_THAN - 137)) | (1L << (ASM_GREATER_THAN - 137)))) != 0)) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
@ -7131,7 +7065,7 @@ public class KickCParser extends Parser {
|
||||
_errHandler.reportMatch(this);
|
||||
consume();
|
||||
}
|
||||
setState(868);
|
||||
setState(863);
|
||||
asmExpr(8);
|
||||
}
|
||||
break;
|
||||
@ -7140,7 +7074,7 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmExprLabelContext(_localctx);
|
||||
_ctx = _localctx;
|
||||
_prevctx = _localctx;
|
||||
setState(869);
|
||||
setState(864);
|
||||
match(ASM_NAME);
|
||||
}
|
||||
break;
|
||||
@ -7149,7 +7083,7 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmExprLabelRelContext(_localctx);
|
||||
_ctx = _localctx;
|
||||
_prevctx = _localctx;
|
||||
setState(870);
|
||||
setState(865);
|
||||
match(ASM_MULTI_REL);
|
||||
}
|
||||
break;
|
||||
@ -7158,11 +7092,11 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmExprReplaceContext(_localctx);
|
||||
_ctx = _localctx;
|
||||
_prevctx = _localctx;
|
||||
setState(871);
|
||||
setState(866);
|
||||
match(ASM_CURLY_BEGIN);
|
||||
setState(872);
|
||||
setState(867);
|
||||
match(ASM_NAME);
|
||||
setState(873);
|
||||
setState(868);
|
||||
match(ASM_CURLY_END);
|
||||
}
|
||||
break;
|
||||
@ -7171,7 +7105,7 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmExprIntContext(_localctx);
|
||||
_ctx = _localctx;
|
||||
_prevctx = _localctx;
|
||||
setState(874);
|
||||
setState(869);
|
||||
match(ASM_NUMBER);
|
||||
}
|
||||
break;
|
||||
@ -7180,7 +7114,7 @@ public class KickCParser extends Parser {
|
||||
_localctx = new AsmExprCharContext(_localctx);
|
||||
_ctx = _localctx;
|
||||
_prevctx = _localctx;
|
||||
setState(875);
|
||||
setState(870);
|
||||
match(ASM_CHAR);
|
||||
}
|
||||
break;
|
||||
@ -7188,28 +7122,28 @@ public class KickCParser extends Parser {
|
||||
throw new NoViableAltException(this);
|
||||
}
|
||||
_ctx.stop = _input.LT(-1);
|
||||
setState(892);
|
||||
setState(887);
|
||||
_errHandler.sync(this);
|
||||
_alt = getInterpreter().adaptivePredict(_input,86,_ctx);
|
||||
_alt = getInterpreter().adaptivePredict(_input,85,_ctx);
|
||||
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
|
||||
if ( _alt==1 ) {
|
||||
if ( _parseListeners!=null ) triggerExitRuleEvent();
|
||||
_prevctx = _localctx;
|
||||
{
|
||||
setState(890);
|
||||
setState(885);
|
||||
_errHandler.sync(this);
|
||||
switch ( getInterpreter().adaptivePredict(_input,85,_ctx) ) {
|
||||
switch ( getInterpreter().adaptivePredict(_input,84,_ctx) ) {
|
||||
case 1:
|
||||
{
|
||||
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
|
||||
setState(878);
|
||||
setState(873);
|
||||
if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)");
|
||||
{
|
||||
setState(879);
|
||||
setState(874);
|
||||
match(ASM_DOT);
|
||||
}
|
||||
setState(880);
|
||||
setState(875);
|
||||
asmExpr(11);
|
||||
}
|
||||
break;
|
||||
@ -7217,9 +7151,9 @@ public class KickCParser extends Parser {
|
||||
{
|
||||
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
|
||||
setState(881);
|
||||
setState(876);
|
||||
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
|
||||
setState(882);
|
||||
setState(877);
|
||||
_la = _input.LA(1);
|
||||
if ( !(_la==ASM_SHIFT_LEFT || _la==ASM_SHIFT_RIGHT) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
@ -7229,7 +7163,7 @@ public class KickCParser extends Parser {
|
||||
_errHandler.reportMatch(this);
|
||||
consume();
|
||||
}
|
||||
setState(883);
|
||||
setState(878);
|
||||
asmExpr(10);
|
||||
}
|
||||
break;
|
||||
@ -7237,9 +7171,9 @@ public class KickCParser extends Parser {
|
||||
{
|
||||
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
|
||||
setState(884);
|
||||
setState(879);
|
||||
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
|
||||
setState(885);
|
||||
setState(880);
|
||||
_la = _input.LA(1);
|
||||
if ( !(_la==ASM_MULTIPLY || _la==ASM_DIVIDE) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
@ -7249,7 +7183,7 @@ public class KickCParser extends Parser {
|
||||
_errHandler.reportMatch(this);
|
||||
consume();
|
||||
}
|
||||
setState(886);
|
||||
setState(881);
|
||||
asmExpr(8);
|
||||
}
|
||||
break;
|
||||
@ -7257,9 +7191,9 @@ public class KickCParser extends Parser {
|
||||
{
|
||||
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
|
||||
setState(887);
|
||||
setState(882);
|
||||
if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
|
||||
setState(888);
|
||||
setState(883);
|
||||
_la = _input.LA(1);
|
||||
if ( !(_la==ASM_PLUS || _la==ASM_MINUS) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
@ -7269,16 +7203,16 @@ public class KickCParser extends Parser {
|
||||
_errHandler.reportMatch(this);
|
||||
consume();
|
||||
}
|
||||
setState(889);
|
||||
setState(884);
|
||||
asmExpr(7);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
setState(894);
|
||||
setState(889);
|
||||
_errHandler.sync(this);
|
||||
_alt = getInterpreter().adaptivePredict(_input,86,_ctx);
|
||||
_alt = getInterpreter().adaptivePredict(_input,85,_ctx);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -7405,7 +7339,7 @@ public class KickCParser extends Parser {
|
||||
}
|
||||
|
||||
public static final String _serializedATN =
|
||||
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u00a7\u0382\4\2\t"+
|
||||
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u00a7\u037d\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"+
|
||||
@ -7464,75 +7398,75 @@ public class KickCParser extends Parser {
|
||||
"\3$\3$\3$\3$\3$\5$\u02f1\n$\3$\3$\3$\3$\3$\3$\3$\3$\7$\u02fb\n$\f$\16"+
|
||||
"$\u02fe\13$\3%\3%\3%\7%\u0303\n%\f%\16%\u0306\13%\3&\3&\5&\u030a\n&\3"+
|
||||
"&\3&\3\'\3\'\3\'\3\'\7\'\u0312\n\'\f\'\16\'\u0315\13\'\3\'\3\'\3(\3(\3"+
|
||||
"(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\5(\u0326\n(\5(\u0328\n(\3)\7)\u032b\n"+
|
||||
")\f)\16)\u032e\13)\3*\3*\3*\5*\u0333\n*\3+\3+\3+\3+\5+\u0339\n+\3,\3,"+
|
||||
"\5,\u033d\n,\3-\3-\3-\3-\7-\u0343\n-\f-\16-\u0346\13-\3.\3.\3.\3.\3.\3"+
|
||||
".\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\5.\u035f\n.\3/\3"+
|
||||
"/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\5/\u036f\n/\3/\3/\3/\3/\3/\3/\3"+
|
||||
"/\3/\3/\3/\3/\3/\7/\u037d\n/\f/\16/\u0380\13/\3/\2\t\f\30\32&DF\\\60\2"+
|
||||
"\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJL"+
|
||||
"NPRTVXZ\\\2\r\3\2\27\30\5\2\22\23\31\32^^\4\2!!$$\3\2\35\36\3\2\24\26"+
|
||||
"\3\2\22\23\3\2\37$\3\2\u008b\u008e\3\2\u0089\u008a\3\2\u008f\u0090\3\2"+
|
||||
"\u008b\u008c\2\u0406\2^\3\2\2\2\4a\3\2\2\2\6g\3\2\2\2\by\3\2\2\2\n{\3"+
|
||||
"\2\2\2\f~\3\2\2\2\16\u0095\3\2\2\2\20\u00ba\3\2\2\2\22\u00bf\3\2\2\2\24"+
|
||||
"\u00c9\3\2\2\2\26\u00d0\3\2\2\2\30\u00d6\3\2\2\2\32\u00f5\3\2\2\2\34\u0105"+
|
||||
"\3\2\2\2\36\u0108\3\2\2\2 \u0114\3\2\2\2\"\u0117\3\2\2\2$\u011a\3\2\2"+
|
||||
"\2&\u0122\3\2\2\2(\u012d\3\2\2\2*\u0132\3\2\2\2,\u0143\3\2\2\2.\u0149"+
|
||||
"\3\2\2\2\60\u015c\3\2\2\2\62\u01b5\3\2\2\2\64\u01b7\3\2\2\2\66\u01e8\3"+
|
||||
"\2\2\28\u01eb\3\2\2\2:\u0243\3\2\2\2<\u0246\3\2\2\2>\u0251\3\2\2\2@\u026d"+
|
||||
"\3\2\2\2B\u0273\3\2\2\2D\u0275\3\2\2\2F\u02be\3\2\2\2H\u02ff\3\2\2\2J"+
|
||||
"\u0307\3\2\2\2L\u030d\3\2\2\2N\u0327\3\2\2\2P\u032c\3\2\2\2R\u0332\3\2"+
|
||||
"\2\2T\u0338\3\2\2\2V\u033a\3\2\2\2X\u033e\3\2\2\2Z\u035e\3\2\2\2\\\u036e"+
|
||||
"\3\2\2\2^_\5\6\4\2_`\7\2\2\3`\3\3\2\2\2ab\5P)\2bc\7\2\2\3c\5\3\2\2\2d"+
|
||||
"f\5\b\5\2ed\3\2\2\2fi\3\2\2\2ge\3\2\2\2gh\3\2\2\2h\7\3\2\2\2ig\3\2\2\2"+
|
||||
"jk\5\n\6\2kl\7\n\2\2lz\3\2\2\2mn\5\36\20\2no\7\n\2\2oz\3\2\2\2pq\5$\23"+
|
||||
"\2qr\7\n\2\2rz\3\2\2\2sz\5*\26\2tz\5J&\2uz\5\62\32\2vw\5\16\b\2wx\7\n"+
|
||||
"\2\2xz\3\2\2\2yj\3\2\2\2ym\3\2\2\2yp\3\2\2\2ys\3\2\2\2yt\3\2\2\2yu\3\2"+
|
||||
"\2\2yv\3\2\2\2z\t\3\2\2\2{|\5\22\n\2|}\5\f\7\2}\13\3\2\2\2~\u0082\b\7"+
|
||||
"\1\2\177\u0081\5\24\13\2\u0080\177\3\2\2\2\u0081\u0084\3\2\2\2\u0082\u0080"+
|
||||
"\3\2\2\2\u0082\u0083\3\2\2\2\u0083\u0085\3\2\2\2\u0084\u0082\3\2\2\2\u0085"+
|
||||
"\u0086\5\20\t\2\u0086\u0092\3\2\2\2\u0087\u0088\f\3\2\2\u0088\u008c\7"+
|
||||
"\f\2\2\u0089\u008b\5\24\13\2\u008a\u0089\3\2\2\2\u008b\u008e\3\2\2\2\u008c"+
|
||||
"\u008a\3\2\2\2\u008c\u008d\3\2\2\2\u008d\u008f\3\2\2\2\u008e\u008c\3\2"+
|
||||
"\2\2\u008f\u0091\5\20\t\2\u0090\u0087\3\2\2\2\u0091\u0094\3\2\2\2\u0092"+
|
||||
"\u0090\3\2\2\2\u0092\u0093\3\2\2\2\u0093\r\3\2\2\2\u0094\u0092\3\2\2\2"+
|
||||
"\u0095\u0096\7)\2\2\u0096\u009a\5\22\n\2\u0097\u0099\5\24\13\2\u0098\u0097"+
|
||||
"\3\2\2\2\u0099\u009c\3\2\2\2\u009a\u0098\3\2\2\2\u009a\u009b\3\2\2\2\u009b"+
|
||||
"\u009d\3\2\2\2\u009c\u009a\3\2\2\2\u009d\u00a1\7y\2\2\u009e\u00a0\5\26"+
|
||||
"\f\2\u009f\u009e\3\2\2\2\u00a0\u00a3\3\2\2\2\u00a1\u009f\3\2\2\2\u00a1"+
|
||||
"\u00a2\3\2\2\2\u00a2\u00a4\3\2\2\2\u00a3\u00a1\3\2\2\2\u00a4\u00a5\b\b"+
|
||||
"\1\2\u00a5\17\3\2\2\2\u00a6\u00aa\7y\2\2\u00a7\u00a9\5\26\f\2\u00a8\u00a7"+
|
||||
"\3\2\2\2\u00a9\u00ac\3\2\2\2\u00aa\u00a8\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab"+
|
||||
"\u00af\3\2\2\2\u00ac\u00aa\3\2\2\2\u00ad\u00ae\7\'\2\2\u00ae\u00b0\5F"+
|
||||
"$\2\u00af\u00ad\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0\u00bb\3\2\2\2\u00b1"+
|
||||
"\u00b5\7y\2\2\u00b2\u00b4\5\26\f\2\u00b3\u00b2\3\2\2\2\u00b4\u00b7\3\2"+
|
||||
"\2\2\u00b5\u00b3\3\2\2\2\u00b5\u00b6\3\2\2\2\u00b6\u00b8\3\2\2\2\u00b7"+
|
||||
"\u00b5\3\2\2\2\u00b8\u00b9\7\'\2\2\u00b9\u00bb\5J&\2\u00ba\u00a6\3\2\2"+
|
||||
"\2\u00ba\u00b1\3\2\2\2\u00bb\21\3\2\2\2\u00bc\u00be\5\66\34\2\u00bd\u00bc"+
|
||||
"\3\2\2\2\u00be\u00c1\3\2\2\2\u00bf\u00bd\3\2\2\2\u00bf\u00c0\3\2\2\2\u00c0"+
|
||||
"\u00c2\3\2\2\2\u00c1\u00bf\3\2\2\2\u00c2\u00c6\5\32\16\2\u00c3\u00c5\5"+
|
||||
"\66\34\2\u00c4\u00c3\3\2\2\2\u00c5\u00c8\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6"+
|
||||
"\u00c7\3\2\2\2\u00c7\23\3\2\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cd\7\24\2"+
|
||||
"\2\u00ca\u00cc\5\66\34\2\u00cb\u00ca\3\2\2\2\u00cc\u00cf\3\2\2\2\u00cd"+
|
||||
"\u00cb\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\25\3\2\2\2\u00cf\u00cd\3\2\2"+
|
||||
"\2\u00d0\u00d2\7\6\2\2\u00d1\u00d3\5F$\2\u00d2\u00d1\3\2\2\2\u00d2\u00d3"+
|
||||
"\3\2\2\2\u00d3\u00d4\3\2\2\2\u00d4\u00d5\7\7\2\2\u00d5\27\3\2\2\2\u00d6"+
|
||||
"\u00d7\b\r\1\2\u00d7\u00d8\5\32\16\2\u00d8\u00e3\3\2\2\2\u00d9\u00da\f"+
|
||||
"\4\2\2\u00da\u00e2\7\24\2\2\u00db\u00dc\f\3\2\2\u00dc\u00de\7\6\2\2\u00dd"+
|
||||
"\u00df\5F$\2\u00de\u00dd\3\2\2\2\u00de\u00df\3\2\2\2\u00df\u00e0\3\2\2"+
|
||||
"\2\u00e0\u00e2\7\7\2\2\u00e1\u00d9\3\2\2\2\u00e1\u00db\3\2\2\2\u00e2\u00e5"+
|
||||
"\3\2\2\2\u00e3\u00e1\3\2\2\2\u00e3\u00e4\3\2\2\2\u00e4\31\3\2\2\2\u00e5"+
|
||||
"\u00e3\3\2\2\2\u00e6\u00e7\b\16\1\2\u00e7\u00e8\7\b\2\2\u00e8\u00e9\5"+
|
||||
"\32\16\2\u00e9\u00ea\7\t\2\2\u00ea\u00f6\3\2\2\2\u00eb\u00f6\7`\2\2\u00ec"+
|
||||
"\u00ee\7_\2\2\u00ed\u00ef\7`\2\2\u00ee\u00ed\3\2\2\2\u00ee\u00ef\3\2\2"+
|
||||
"\2\u00ef\u00f6\3\2\2\2\u00f0\u00f6\5\36\20\2\u00f1\u00f6\5\34\17\2\u00f2"+
|
||||
"\u00f6\5$\23\2\u00f3\u00f6\5\"\22\2\u00f4\u00f6\7\3\2\2\u00f5\u00e6\3"+
|
||||
"\2\2\2\u00f5\u00eb\3\2\2\2\u00f5\u00ec\3\2\2\2\u00f5\u00f0\3\2\2\2\u00f5"+
|
||||
"\u00f1\3\2\2\2\u00f5\u00f2\3\2\2\2\u00f5\u00f3\3\2\2\2\u00f5\u00f4\3\2"+
|
||||
"\2\2\u00f6\u0102\3\2\2\2\u00f7\u00f8\f\t\2\2\u00f8\u00fa\7\6\2\2\u00f9"+
|
||||
"\u00fb\5F$\2\u00fa\u00f9\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2\2"+
|
||||
"\2\u00fc\u0101\7\7\2\2\u00fd\u00fe\f\b\2\2\u00fe\u00ff\7\b\2\2\u00ff\u0101"+
|
||||
"\7\t\2\2\u0100\u00f7\3\2\2\2\u0100\u00fd\3\2\2\2\u0101\u0104\3\2\2\2\u0102"+
|
||||
"(\3(\3(\3(\3(\3(\3(\3(\5(\u0323\n(\3)\7)\u0326\n)\f)\16)\u0329\13)\3*"+
|
||||
"\3*\3*\5*\u032e\n*\3+\3+\3+\3+\5+\u0334\n+\3,\3,\5,\u0338\n,\3-\3-\3-"+
|
||||
"\3-\7-\u033e\n-\f-\16-\u0341\13-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+
|
||||
".\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\5.\u035a\n.\3/\3/\3/\3/\3/\3/\3/\3/\3"+
|
||||
"/\3/\3/\3/\3/\3/\5/\u036a\n/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\7/\u0378"+
|
||||
"\n/\f/\16/\u037b\13/\3/\2\t\f\30\32&DF\\\60\2\4\6\b\n\f\16\20\22\24\26"+
|
||||
"\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\\2\r\3\2\27\30\5"+
|
||||
"\2\22\23\31\32^^\4\2!!$$\3\2\35\36\3\2\24\26\3\2\22\23\3\2\37$\3\2\u008b"+
|
||||
"\u008e\3\2\u0089\u008a\3\2\u008f\u0090\3\2\u008b\u008c\2\u03ff\2^\3\2"+
|
||||
"\2\2\4a\3\2\2\2\6g\3\2\2\2\by\3\2\2\2\n{\3\2\2\2\f~\3\2\2\2\16\u0095\3"+
|
||||
"\2\2\2\20\u00ba\3\2\2\2\22\u00bf\3\2\2\2\24\u00c9\3\2\2\2\26\u00d0\3\2"+
|
||||
"\2\2\30\u00d6\3\2\2\2\32\u00f5\3\2\2\2\34\u0105\3\2\2\2\36\u0108\3\2\2"+
|
||||
"\2 \u0114\3\2\2\2\"\u0117\3\2\2\2$\u011a\3\2\2\2&\u0122\3\2\2\2(\u012d"+
|
||||
"\3\2\2\2*\u0132\3\2\2\2,\u0143\3\2\2\2.\u0149\3\2\2\2\60\u015c\3\2\2\2"+
|
||||
"\62\u01b5\3\2\2\2\64\u01b7\3\2\2\2\66\u01e8\3\2\2\28\u01eb\3\2\2\2:\u0243"+
|
||||
"\3\2\2\2<\u0246\3\2\2\2>\u0251\3\2\2\2@\u026d\3\2\2\2B\u0273\3\2\2\2D"+
|
||||
"\u0275\3\2\2\2F\u02be\3\2\2\2H\u02ff\3\2\2\2J\u0307\3\2\2\2L\u030d\3\2"+
|
||||
"\2\2N\u0322\3\2\2\2P\u0327\3\2\2\2R\u032d\3\2\2\2T\u0333\3\2\2\2V\u0335"+
|
||||
"\3\2\2\2X\u0339\3\2\2\2Z\u0359\3\2\2\2\\\u0369\3\2\2\2^_\5\6\4\2_`\7\2"+
|
||||
"\2\3`\3\3\2\2\2ab\5P)\2bc\7\2\2\3c\5\3\2\2\2df\5\b\5\2ed\3\2\2\2fi\3\2"+
|
||||
"\2\2ge\3\2\2\2gh\3\2\2\2h\7\3\2\2\2ig\3\2\2\2jk\5\n\6\2kl\7\n\2\2lz\3"+
|
||||
"\2\2\2mn\5\36\20\2no\7\n\2\2oz\3\2\2\2pq\5$\23\2qr\7\n\2\2rz\3\2\2\2s"+
|
||||
"z\5*\26\2tz\5J&\2uz\5\62\32\2vw\5\16\b\2wx\7\n\2\2xz\3\2\2\2yj\3\2\2\2"+
|
||||
"ym\3\2\2\2yp\3\2\2\2ys\3\2\2\2yt\3\2\2\2yu\3\2\2\2yv\3\2\2\2z\t\3\2\2"+
|
||||
"\2{|\5\22\n\2|}\5\f\7\2}\13\3\2\2\2~\u0082\b\7\1\2\177\u0081\5\24\13\2"+
|
||||
"\u0080\177\3\2\2\2\u0081\u0084\3\2\2\2\u0082\u0080\3\2\2\2\u0082\u0083"+
|
||||
"\3\2\2\2\u0083\u0085\3\2\2\2\u0084\u0082\3\2\2\2\u0085\u0086\5\20\t\2"+
|
||||
"\u0086\u0092\3\2\2\2\u0087\u0088\f\3\2\2\u0088\u008c\7\f\2\2\u0089\u008b"+
|
||||
"\5\24\13\2\u008a\u0089\3\2\2\2\u008b\u008e\3\2\2\2\u008c\u008a\3\2\2\2"+
|
||||
"\u008c\u008d\3\2\2\2\u008d\u008f\3\2\2\2\u008e\u008c\3\2\2\2\u008f\u0091"+
|
||||
"\5\20\t\2\u0090\u0087\3\2\2\2\u0091\u0094\3\2\2\2\u0092\u0090\3\2\2\2"+
|
||||
"\u0092\u0093\3\2\2\2\u0093\r\3\2\2\2\u0094\u0092\3\2\2\2\u0095\u0096\7"+
|
||||
")\2\2\u0096\u009a\5\22\n\2\u0097\u0099\5\24\13\2\u0098\u0097\3\2\2\2\u0099"+
|
||||
"\u009c\3\2\2\2\u009a\u0098\3\2\2\2\u009a\u009b\3\2\2\2\u009b\u009d\3\2"+
|
||||
"\2\2\u009c\u009a\3\2\2\2\u009d\u00a1\7y\2\2\u009e\u00a0\5\26\f\2\u009f"+
|
||||
"\u009e\3\2\2\2\u00a0\u00a3\3\2\2\2\u00a1\u009f\3\2\2\2\u00a1\u00a2\3\2"+
|
||||
"\2\2\u00a2\u00a4\3\2\2\2\u00a3\u00a1\3\2\2\2\u00a4\u00a5\b\b\1\2\u00a5"+
|
||||
"\17\3\2\2\2\u00a6\u00aa\7y\2\2\u00a7\u00a9\5\26\f\2\u00a8\u00a7\3\2\2"+
|
||||
"\2\u00a9\u00ac\3\2\2\2\u00aa\u00a8\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab\u00af"+
|
||||
"\3\2\2\2\u00ac\u00aa\3\2\2\2\u00ad\u00ae\7\'\2\2\u00ae\u00b0\5F$\2\u00af"+
|
||||
"\u00ad\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0\u00bb\3\2\2\2\u00b1\u00b5\7y"+
|
||||
"\2\2\u00b2\u00b4\5\26\f\2\u00b3\u00b2\3\2\2\2\u00b4\u00b7\3\2\2\2\u00b5"+
|
||||
"\u00b3\3\2\2\2\u00b5\u00b6\3\2\2\2\u00b6\u00b8\3\2\2\2\u00b7\u00b5\3\2"+
|
||||
"\2\2\u00b8\u00b9\7\'\2\2\u00b9\u00bb\5J&\2\u00ba\u00a6\3\2\2\2\u00ba\u00b1"+
|
||||
"\3\2\2\2\u00bb\21\3\2\2\2\u00bc\u00be\5\66\34\2\u00bd\u00bc\3\2\2\2\u00be"+
|
||||
"\u00c1\3\2\2\2\u00bf\u00bd\3\2\2\2\u00bf\u00c0\3\2\2\2\u00c0\u00c2\3\2"+
|
||||
"\2\2\u00c1\u00bf\3\2\2\2\u00c2\u00c6\5\32\16\2\u00c3\u00c5\5\66\34\2\u00c4"+
|
||||
"\u00c3\3\2\2\2\u00c5\u00c8\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6\u00c7\3\2"+
|
||||
"\2\2\u00c7\23\3\2\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cd\7\24\2\2\u00ca\u00cc"+
|
||||
"\5\66\34\2\u00cb\u00ca\3\2\2\2\u00cc\u00cf\3\2\2\2\u00cd\u00cb\3\2\2\2"+
|
||||
"\u00cd\u00ce\3\2\2\2\u00ce\25\3\2\2\2\u00cf\u00cd\3\2\2\2\u00d0\u00d2"+
|
||||
"\7\6\2\2\u00d1\u00d3\5F$\2\u00d2\u00d1\3\2\2\2\u00d2\u00d3\3\2\2\2\u00d3"+
|
||||
"\u00d4\3\2\2\2\u00d4\u00d5\7\7\2\2\u00d5\27\3\2\2\2\u00d6\u00d7\b\r\1"+
|
||||
"\2\u00d7\u00d8\5\32\16\2\u00d8\u00e3\3\2\2\2\u00d9\u00da\f\4\2\2\u00da"+
|
||||
"\u00e2\7\24\2\2\u00db\u00dc\f\3\2\2\u00dc\u00de\7\6\2\2\u00dd\u00df\5"+
|
||||
"F$\2\u00de\u00dd\3\2\2\2\u00de\u00df\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0"+
|
||||
"\u00e2\7\7\2\2\u00e1\u00d9\3\2\2\2\u00e1\u00db\3\2\2\2\u00e2\u00e5\3\2"+
|
||||
"\2\2\u00e3\u00e1\3\2\2\2\u00e3\u00e4\3\2\2\2\u00e4\31\3\2\2\2\u00e5\u00e3"+
|
||||
"\3\2\2\2\u00e6\u00e7\b\16\1\2\u00e7\u00e8\7\b\2\2\u00e8\u00e9\5\32\16"+
|
||||
"\2\u00e9\u00ea\7\t\2\2\u00ea\u00f6\3\2\2\2\u00eb\u00f6\7`\2\2\u00ec\u00ee"+
|
||||
"\7_\2\2\u00ed\u00ef\7`\2\2\u00ee\u00ed\3\2\2\2\u00ee\u00ef\3\2\2\2\u00ef"+
|
||||
"\u00f6\3\2\2\2\u00f0\u00f6\5\36\20\2\u00f1\u00f6\5\34\17\2\u00f2\u00f6"+
|
||||
"\5$\23\2\u00f3\u00f6\5\"\22\2\u00f4\u00f6\7\3\2\2\u00f5\u00e6\3\2\2\2"+
|
||||
"\u00f5\u00eb\3\2\2\2\u00f5\u00ec\3\2\2\2\u00f5\u00f0\3\2\2\2\u00f5\u00f1"+
|
||||
"\3\2\2\2\u00f5\u00f2\3\2\2\2\u00f5\u00f3\3\2\2\2\u00f5\u00f4\3\2\2\2\u00f6"+
|
||||
"\u0102\3\2\2\2\u00f7\u00f8\f\t\2\2\u00f8\u00fa\7\6\2\2\u00f9\u00fb\5F"+
|
||||
"$\2\u00fa\u00f9\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc"+
|
||||
"\u0101\7\7\2\2\u00fd\u00fe\f\b\2\2\u00fe\u00ff\7\b\2\2\u00ff\u0101\7\t"+
|
||||
"\2\2\u0100\u00f7\3\2\2\2\u0100\u00fd\3\2\2\2\u0101\u0104\3\2\2\2\u0102"+
|
||||
"\u0100\3\2\2\2\u0102\u0103\3\2\2\2\u0103\33\3\2\2\2\u0104\u0102\3\2\2"+
|
||||
"\2\u0105\u0106\7S\2\2\u0106\u0107\7y\2\2\u0107\35\3\2\2\2\u0108\u010a"+
|
||||
"\7S\2\2\u0109\u010b\7y\2\2\u010a\u0109\3\2\2\2\u010a\u010b\3\2\2\2\u010b"+
|
||||
@ -7713,52 +7647,50 @@ public class KickCParser extends Parser {
|
||||
"\u030c\7b\2\2\u030cK\3\2\2\2\u030d\u030e\7\b\2\2\u030e\u0313\5N(\2\u030f"+
|
||||
"\u0310\7\f\2\2\u0310\u0312\5N(\2\u0311\u030f\3\2\2\2\u0312\u0315\3\2\2"+
|
||||
"\2\u0313\u0311\3\2\2\2\u0313\u0314\3\2\2\2\u0314\u0316\3\2\2\2\u0315\u0313"+
|
||||
"\3\2\2\2\u0316\u0317\7\t\2\2\u0317M\3\2\2\2\u0318\u0319\7Y\2\2\u0319\u0328"+
|
||||
"\7z\2\2\u031a\u031b\7Z\2\2\u031b\u0328\7y\2\2\u031c\u031d\7[\2\2\u031d"+
|
||||
"\u0328\7z\2\2\u031e\u031f\7\\\2\2\u031f\u0328\5F$\2\u0320\u0321\7]\2\2"+
|
||||
"\u0321\u0328\5F$\2\u0322\u0325\7+\2\2\u0323\u0326\78\2\2\u0324\u0326\5"+
|
||||
"F$\2\u0325\u0323\3\2\2\2\u0325\u0324\3\2\2\2\u0326\u0328\3\2\2\2\u0327"+
|
||||
"\u0318\3\2\2\2\u0327\u031a\3\2\2\2\u0327\u031c\3\2\2\2\u0327\u031e\3\2"+
|
||||
"\2\2\u0327\u0320\3\2\2\2\u0327\u0322\3\2\2\2\u0328O\3\2\2\2\u0329\u032b"+
|
||||
"\5R*\2\u032a\u0329\3\2\2\2\u032b\u032e\3\2\2\2\u032c\u032a\3\2\2\2\u032c"+
|
||||
"\u032d\3\2\2\2\u032dQ\3\2\2\2\u032e\u032c\3\2\2\2\u032f\u0333\5T+\2\u0330"+
|
||||
"\u0333\5V,\2\u0331\u0333\5X-\2\u0332\u032f\3\2\2\2\u0332\u0330\3\2\2\2"+
|
||||
"\u0332\u0331\3\2\2\2\u0333S\3\2\2\2\u0334\u0335\7\u009f\2\2\u0335\u0339"+
|
||||
"\7\u0082\2\2\u0336\u0337\7\u009e\2\2\u0337\u0339\7\u0082\2\2\u0338\u0334"+
|
||||
"\3\2\2\2\u0338\u0336\3\2\2\2\u0339U\3\2\2\2\u033a\u033c\7\u0080\2\2\u033b"+
|
||||
"\u033d\5Z.\2\u033c\u033b\3\2\2\2\u033c\u033d\3\2\2\2\u033dW\3\2\2\2\u033e"+
|
||||
"\u033f\7\177\2\2\u033f\u0344\5\\/\2\u0340\u0341\7\u0083\2\2\u0341\u0343"+
|
||||
"\5\\/\2\u0342\u0340\3\2\2\2\u0343\u0346\3\2\2\2\u0344\u0342\3\2\2\2\u0344"+
|
||||
"\u0345\3\2\2\2\u0345Y\3\2\2\2\u0346\u0344\3\2\2\2\u0347\u035f\5\\/\2\u0348"+
|
||||
"\u0349\7\u0081\2\2\u0349\u035f\5\\/\2\u034a\u034b\5\\/\2\u034b\u034c\7"+
|
||||
"\u0083\2\2\u034c\u034d\7\u009f\2\2\u034d\u035f\3\2\2\2\u034e\u034f\7\u0084"+
|
||||
"\2\2\u034f\u0350\5\\/\2\u0350\u0351\7\u0085\2\2\u0351\u0352\7\u0083\2"+
|
||||
"\2\u0352\u0353\7\u009f\2\2\u0353\u035f\3\2\2\2\u0354\u0355\7\u0084\2\2"+
|
||||
"\u0355\u0356\5\\/\2\u0356\u0357\7\u0083\2\2\u0357\u0358\7\u009f\2\2\u0358"+
|
||||
"\u0359\7\u0085\2\2\u0359\u035f\3\2\2\2\u035a\u035b\7\u0084\2\2\u035b\u035c"+
|
||||
"\5\\/\2\u035c\u035d\7\u0085\2\2\u035d\u035f\3\2\2\2\u035e\u0347\3\2\2"+
|
||||
"\2\u035e\u0348\3\2\2\2\u035e\u034a\3\2\2\2\u035e\u034e\3\2\2\2\u035e\u0354"+
|
||||
"\3\2\2\2\u035e\u035a\3\2\2\2\u035f[\3\2\2\2\u0360\u0361\b/\1\2\u0361\u0362"+
|
||||
"\7\u0086\2\2\u0362\u0363\5\\/\2\u0363\u0364\7\u0087\2\2\u0364\u036f\3"+
|
||||
"\2\2\2\u0365\u0366\t\t\2\2\u0366\u036f\5\\/\n\u0367\u036f\7\u009f\2\2"+
|
||||
"\u0368\u036f\7\u009d\2\2\u0369\u036a\7\u0091\2\2\u036a\u036b\7\u009f\2"+
|
||||
"\2\u036b\u036f\7\u0092\2\2\u036c\u036f\7\u0093\2\2\u036d\u036f\7\u009c"+
|
||||
"\2\2\u036e\u0360\3\2\2\2\u036e\u0365\3\2\2\2\u036e\u0367\3\2\2\2\u036e"+
|
||||
"\u0368\3\2\2\2\u036e\u0369\3\2\2\2\u036e\u036c\3\2\2\2\u036e\u036d\3\2"+
|
||||
"\2\2\u036f\u037e\3\2\2\2\u0370\u0371\f\f\2\2\u0371\u0372\7\u0088\2\2\u0372"+
|
||||
"\u037d\5\\/\r\u0373\u0374\f\13\2\2\u0374\u0375\t\n\2\2\u0375\u037d\5\\"+
|
||||
"/\f\u0376\u0377\f\t\2\2\u0377\u0378\t\13\2\2\u0378\u037d\5\\/\n\u0379"+
|
||||
"\u037a\f\b\2\2\u037a\u037b\t\f\2\2\u037b\u037d\5\\/\t\u037c\u0370\3\2"+
|
||||
"\2\2\u037c\u0373\3\2\2\2\u037c\u0376\3\2\2\2\u037c\u0379\3\2\2\2\u037d"+
|
||||
"\u0380\3\2\2\2\u037e\u037c\3\2\2\2\u037e\u037f\3\2\2\2\u037f]\3\2\2\2"+
|
||||
"\u0380\u037e\3\2\2\2Ygy\u0082\u008c\u0092\u009a\u00a1\u00aa\u00af\u00b5"+
|
||||
"\u00ba\u00bf\u00c6\u00cd\u00d2\u00de\u00e1\u00e3\u00ee\u00f5\u00fa\u0100"+
|
||||
"\u0102\u010a\u0110\u011c\u012a\u0130\u0136\u013c\u0141\u0145\u014e\u0155"+
|
||||
"\u015c\u0185\u01b1\u01b5\u01ba\u01c5\u01d9\u01e2\u01e8\u01ed\u01f4\u0201"+
|
||||
"\u0206\u0212\u0220\u0233\u023c\u0243\u0248\u024d\u024f\u0255\u025c\u0262"+
|
||||
"\u0265\u026d\u0270\u0273\u027d\u0289\u0291\u0297\u029b\u02b0\u02ba\u02be"+
|
||||
"\u02f0\u02fa\u02fc\u0304\u0309\u0313\u0325\u0327\u032c\u0332\u0338\u033c"+
|
||||
"\u0344\u035e\u036e\u037c\u037e";
|
||||
"\3\2\2\2\u0316\u0317\7\t\2\2\u0317M\3\2\2\2\u0318\u0319\7Y\2\2\u0319\u0323"+
|
||||
"\7z\2\2\u031a\u031b\7Z\2\2\u031b\u0323\7y\2\2\u031c\u031d\7[\2\2\u031d"+
|
||||
"\u0323\7z\2\2\u031e\u031f\7\\\2\2\u031f\u0323\5F$\2\u0320\u0321\7]\2\2"+
|
||||
"\u0321\u0323\5F$\2\u0322\u0318\3\2\2\2\u0322\u031a\3\2\2\2\u0322\u031c"+
|
||||
"\3\2\2\2\u0322\u031e\3\2\2\2\u0322\u0320\3\2\2\2\u0323O\3\2\2\2\u0324"+
|
||||
"\u0326\5R*\2\u0325\u0324\3\2\2\2\u0326\u0329\3\2\2\2\u0327\u0325\3\2\2"+
|
||||
"\2\u0327\u0328\3\2\2\2\u0328Q\3\2\2\2\u0329\u0327\3\2\2\2\u032a\u032e"+
|
||||
"\5T+\2\u032b\u032e\5V,\2\u032c\u032e\5X-\2\u032d\u032a\3\2\2\2\u032d\u032b"+
|
||||
"\3\2\2\2\u032d\u032c\3\2\2\2\u032eS\3\2\2\2\u032f\u0330\7\u009f\2\2\u0330"+
|
||||
"\u0334\7\u0082\2\2\u0331\u0332\7\u009e\2\2\u0332\u0334\7\u0082\2\2\u0333"+
|
||||
"\u032f\3\2\2\2\u0333\u0331\3\2\2\2\u0334U\3\2\2\2\u0335\u0337\7\u0080"+
|
||||
"\2\2\u0336\u0338\5Z.\2\u0337\u0336\3\2\2\2\u0337\u0338\3\2\2\2\u0338W"+
|
||||
"\3\2\2\2\u0339\u033a\7\177\2\2\u033a\u033f\5\\/\2\u033b\u033c\7\u0083"+
|
||||
"\2\2\u033c\u033e\5\\/\2\u033d\u033b\3\2\2\2\u033e\u0341\3\2\2\2\u033f"+
|
||||
"\u033d\3\2\2\2\u033f\u0340\3\2\2\2\u0340Y\3\2\2\2\u0341\u033f\3\2\2\2"+
|
||||
"\u0342\u035a\5\\/\2\u0343\u0344\7\u0081\2\2\u0344\u035a\5\\/\2\u0345\u0346"+
|
||||
"\5\\/\2\u0346\u0347\7\u0083\2\2\u0347\u0348\7\u009f\2\2\u0348\u035a\3"+
|
||||
"\2\2\2\u0349\u034a\7\u0084\2\2\u034a\u034b\5\\/\2\u034b\u034c\7\u0085"+
|
||||
"\2\2\u034c\u034d\7\u0083\2\2\u034d\u034e\7\u009f\2\2\u034e\u035a\3\2\2"+
|
||||
"\2\u034f\u0350\7\u0084\2\2\u0350\u0351\5\\/\2\u0351\u0352\7\u0083\2\2"+
|
||||
"\u0352\u0353\7\u009f\2\2\u0353\u0354\7\u0085\2\2\u0354\u035a\3\2\2\2\u0355"+
|
||||
"\u0356\7\u0084\2\2\u0356\u0357\5\\/\2\u0357\u0358\7\u0085\2\2\u0358\u035a"+
|
||||
"\3\2\2\2\u0359\u0342\3\2\2\2\u0359\u0343\3\2\2\2\u0359\u0345\3\2\2\2\u0359"+
|
||||
"\u0349\3\2\2\2\u0359\u034f\3\2\2\2\u0359\u0355\3\2\2\2\u035a[\3\2\2\2"+
|
||||
"\u035b\u035c\b/\1\2\u035c\u035d\7\u0086\2\2\u035d\u035e\5\\/\2\u035e\u035f"+
|
||||
"\7\u0087\2\2\u035f\u036a\3\2\2\2\u0360\u0361\t\t\2\2\u0361\u036a\5\\/"+
|
||||
"\n\u0362\u036a\7\u009f\2\2\u0363\u036a\7\u009d\2\2\u0364\u0365\7\u0091"+
|
||||
"\2\2\u0365\u0366\7\u009f\2\2\u0366\u036a\7\u0092\2\2\u0367\u036a\7\u0093"+
|
||||
"\2\2\u0368\u036a\7\u009c\2\2\u0369\u035b\3\2\2\2\u0369\u0360\3\2\2\2\u0369"+
|
||||
"\u0362\3\2\2\2\u0369\u0363\3\2\2\2\u0369\u0364\3\2\2\2\u0369\u0367\3\2"+
|
||||
"\2\2\u0369\u0368\3\2\2\2\u036a\u0379\3\2\2\2\u036b\u036c\f\f\2\2\u036c"+
|
||||
"\u036d\7\u0088\2\2\u036d\u0378\5\\/\r\u036e\u036f\f\13\2\2\u036f\u0370"+
|
||||
"\t\n\2\2\u0370\u0378\5\\/\f\u0371\u0372\f\t\2\2\u0372\u0373\t\13\2\2\u0373"+
|
||||
"\u0378\5\\/\n\u0374\u0375\f\b\2\2\u0375\u0376\t\f\2\2\u0376\u0378\5\\"+
|
||||
"/\t\u0377\u036b\3\2\2\2\u0377\u036e\3\2\2\2\u0377\u0371\3\2\2\2\u0377"+
|
||||
"\u0374\3\2\2\2\u0378\u037b\3\2\2\2\u0379\u0377\3\2\2\2\u0379\u037a\3\2"+
|
||||
"\2\2\u037a]\3\2\2\2\u037b\u0379\3\2\2\2Xgy\u0082\u008c\u0092\u009a\u00a1"+
|
||||
"\u00aa\u00af\u00b5\u00ba\u00bf\u00c6\u00cd\u00d2\u00de\u00e1\u00e3\u00ee"+
|
||||
"\u00f5\u00fa\u0100\u0102\u010a\u0110\u011c\u012a\u0130\u0136\u013c\u0141"+
|
||||
"\u0145\u014e\u0155\u015c\u0185\u01b1\u01b5\u01ba\u01c5\u01d9\u01e2\u01e8"+
|
||||
"\u01ed\u01f4\u0201\u0206\u0212\u0220\u0233\u023c\u0243\u0248\u024d\u024f"+
|
||||
"\u0255\u025c\u0262\u0265\u026d\u0270\u0273\u027d\u0289\u0291\u0297\u029b"+
|
||||
"\u02b0\u02ba\u02be\u02f0\u02fa\u02fc\u0304\u0309\u0313\u0322\u0327\u032d"+
|
||||
"\u0333\u0337\u033f\u0359\u0369\u0377\u0379";
|
||||
public static final ATN _ATN =
|
||||
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
||||
static {
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
|
||||
package dk.camelot64.kickc.parser;
|
||||
|
||||
|
||||
@ -1465,18 +1465,6 @@ public class KickCParserBaseListener implements KickCParserListener {
|
||||
* <p>The default implementation does nothing.</p>
|
||||
*/
|
||||
@Override public void exitAsmDirectiveCycles(KickCParser.AsmDirectiveCyclesContext ctx) { }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* <p>The default implementation does nothing.</p>
|
||||
*/
|
||||
@Override public void enterAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx) { }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* <p>The default implementation does nothing.</p>
|
||||
*/
|
||||
@Override public void exitAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx) { }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
|
||||
package dk.camelot64.kickc.parser;
|
||||
|
||||
|
||||
@ -860,13 +860,6 @@ public class KickCParserBaseVisitor<T> extends AbstractParseTreeVisitor<T> imple
|
||||
* {@link #visitChildren} on {@code ctx}.</p>
|
||||
*/
|
||||
@Override public T visitAsmDirectiveCycles(KickCParser.AsmDirectiveCyclesContext ctx) { return visitChildren(ctx); }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* <p>The default implementation returns the result of calling
|
||||
* {@link #visitChildren} on {@code ctx}.</p>
|
||||
*/
|
||||
@Override public T visitAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx) { return visitChildren(ctx); }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
|
||||
package dk.camelot64.kickc.parser;
|
||||
|
||||
|
||||
@ -1407,18 +1407,6 @@ public interface KickCParserListener extends ParseTreeListener {
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitAsmDirectiveCycles(KickCParser.AsmDirectiveCyclesContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by the {@code asmDirectiveAddress}
|
||||
* labeled alternative in {@link KickCParser#asmDirective}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by the {@code asmDirectiveAddress}
|
||||
* labeled alternative in {@link KickCParser#asmDirective}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link KickCParser#asmLines}.
|
||||
* @param ctx the parse tree
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
|
||||
package dk.camelot64.kickc.parser;
|
||||
|
||||
|
||||
@ -832,13 +832,6 @@ public interface KickCParserVisitor<T> extends ParseTreeVisitor<T> {
|
||||
* @return the visitor result
|
||||
*/
|
||||
T visitAsmDirectiveCycles(KickCParser.AsmDirectiveCyclesContext ctx);
|
||||
/**
|
||||
* Visit a parse tree produced by the {@code asmDirectiveAddress}
|
||||
* labeled alternative in {@link KickCParser#asmDirective}.
|
||||
* @param ctx the parse tree
|
||||
* @return the visitor result
|
||||
*/
|
||||
T visitAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx);
|
||||
/**
|
||||
* Visit a parse tree produced by {@link KickCParser#asmLines}.
|
||||
* @param ctx the parse tree
|
||||
|
@ -82,7 +82,7 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor<Objec
|
||||
|
||||
/**
|
||||
* Add an intermediate variable to the current scope.
|
||||
*
|
||||
* <p>
|
||||
* If the current scope is global the variable is added to the _init() scope.
|
||||
*
|
||||
* @return The new intermediate variable
|
||||
@ -451,10 +451,7 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor<Objec
|
||||
if(ctx.asmDirectives() != null) {
|
||||
List<AsmDirective> asmDirectives = this.visitAsmDirectives(ctx.asmDirectives());
|
||||
for(AsmDirective asmDirective : asmDirectives) {
|
||||
if(asmDirective instanceof AsmDirectiveLocation) {
|
||||
statementKickAsm.setLocation(((AsmDirectiveLocation) asmDirective).getAddress());
|
||||
throw new RuntimeException("KickAsm pc directive no longer supported!");
|
||||
} else if(asmDirective instanceof AsmDirectiveBytes) {
|
||||
if(asmDirective instanceof AsmDirectiveBytes) {
|
||||
statementKickAsm.setBytes(((AsmDirectiveBytes) asmDirective).getBytes());
|
||||
} else if(asmDirective instanceof AsmDirectiveCycles) {
|
||||
statementKickAsm.setCycles(((AsmDirectiveCycles) asmDirective).getCycles());
|
||||
@ -489,36 +486,6 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor<Objec
|
||||
return asmDirectives;
|
||||
}
|
||||
|
||||
/** KickAssembler directive specifying an absolute address for the generated code/data. */
|
||||
public static class AsmDirectiveLocation implements AsmDirective {
|
||||
/** will contain the address to generate the KickAssembler-code to. */
|
||||
private RValue address;
|
||||
|
||||
AsmDirectiveLocation(RValue address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public RValue getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "pc";
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object visitAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx) {
|
||||
if(ctx.expr() != null) {
|
||||
RValue expr = (RValue) visit(ctx.expr());
|
||||
return new AsmDirectiveLocation(expr);
|
||||
} else {
|
||||
// PLace inline
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/** KickAssembler directive specifying the number of bytes for generated code/data. */
|
||||
public static class AsmDirectiveBytes implements AsmDirective {
|
||||
/** bytes for the KickAssembler-code. */
|
||||
@ -1037,9 +1004,6 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor<Objec
|
||||
}
|
||||
// Add KickAsm statement
|
||||
StatementKickAsm kasm = (StatementKickAsm) this.visit(ctx.declKasm());
|
||||
if(kasm.getLocation() != null) {
|
||||
throw new CompileError("KickAsm initializers does not support 'location' directive.", statementSource);
|
||||
}
|
||||
if(kasm.getCycles() != null) {
|
||||
throw new CompileError("KickAsm initializers does not support 'cycles' directive.", statementSource);
|
||||
}
|
||||
|
@ -201,7 +201,7 @@ public class Pass1ProcedureInline extends Pass1Base {
|
||||
inlinedStatement = inlinedAsm;
|
||||
} else if(procStatement instanceof StatementKickAsm) {
|
||||
StatementKickAsm procKasm = (StatementKickAsm) procStatement;
|
||||
StatementKickAsm inlinedAsm = new StatementKickAsm(procKasm.getKickAsmCode(), procKasm.getLocation(), procKasm.getBytes(), procKasm.getCycles(), procKasm.getUses(), procKasm.getDeclaredClobber(), procKasm.getSource(), Comment.NO_COMMENTS);
|
||||
StatementKickAsm inlinedAsm = new StatementKickAsm(procKasm.getKickAsmCode(), procKasm.getBytes(), procKasm.getCycles(), procKasm.getUses(), procKasm.getDeclaredClobber(), procKasm.getSource(), Comment.NO_COMMENTS);
|
||||
inlinedStatement = inlinedAsm;
|
||||
} else if(procStatement instanceof StatementConditionalJump) {
|
||||
StatementConditionalJump procConditional = (StatementConditionalJump) procStatement;
|
||||
|
@ -36,10 +36,6 @@ public class Pass3AssertConstants extends Pass2SsaAssertion {
|
||||
for(ControlFlowBlock block : getProgram().getGraph().getAllBlocks()) {
|
||||
for(Statement statement : block.getStatements()) {
|
||||
if(statement instanceof StatementKickAsm) {
|
||||
RValue location = ((StatementKickAsm) statement).getLocation();
|
||||
if(location != null && !(location instanceof ConstantValue)) {
|
||||
throw new CompileError("Error! KickAssembler location is not constant " + location.toString(), statement);
|
||||
}
|
||||
RValue bytes = ((StatementKickAsm) statement).getBytes();
|
||||
if(bytes != null && !(bytes instanceof ConstantValue)) {
|
||||
throw new CompileError("Error! KickAssembler bytes is not constant " + bytes.toString(), statement);
|
||||
|
@ -86,7 +86,8 @@ public class Pass4CodeGeneration {
|
||||
linkScriptBody = linkScriptBody.replace("%O", outputFileName);
|
||||
linkScriptBody = linkScriptBody.replace("%_O", outputFileName.toLowerCase());
|
||||
linkScriptBody = linkScriptBody.replace("%^O", outputFileName.toUpperCase());
|
||||
String entryName = program.getStartProcedure().getFullName();;
|
||||
String entryName = program.getStartProcedure().getFullName();
|
||||
;
|
||||
linkScriptBody = linkScriptBody.replace("%E", entryName);
|
||||
Number programPc = program.getProgramPc();
|
||||
if(programPc == null) programPc = 0x080d;
|
||||
@ -165,23 +166,6 @@ public class Pass4CodeGeneration {
|
||||
asm.startChunk(currentScope, null, "File Data");
|
||||
addData(asm, ScopeRef.ROOT);
|
||||
addAbsoluteAddressData(asm, ScopeRef.ROOT);
|
||||
// Add all absolutely placed inline KickAsm
|
||||
for(ControlFlowBlock block : getGraph().getAllBlocks()) {
|
||||
for(Statement statement : block.getStatements()) {
|
||||
if(statement instanceof StatementKickAsm) {
|
||||
StatementKickAsm statementKasm = (StatementKickAsm) statement;
|
||||
if(statementKasm.getLocation() != null) {
|
||||
String asmLocation = AsmFormat.getAsmConstant(program, (ConstantValue) statementKasm.getLocation(), 99, ScopeRef.ROOT);
|
||||
String chunkName = "Inline";
|
||||
if(asmLocation.matches("[a-zA-Z_][a-zA-Z0-9_]*")) {
|
||||
chunkName = asmLocation;
|
||||
}
|
||||
asm.addLine(new AsmSetPc(chunkName, asmLocation));
|
||||
addKickAsm(asm, statementKasm);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
program.setAsm(asm);
|
||||
}
|
||||
|
||||
@ -510,7 +494,7 @@ public class Pass4CodeGeneration {
|
||||
continue;
|
||||
}
|
||||
// Skip if address is not absolute
|
||||
if(constantVar.getMemoryAddress()==null)
|
||||
if(constantVar.getMemoryAddress() == null)
|
||||
continue;
|
||||
// Set segment
|
||||
setCurrentSegment(constantVar.getDataSegment(), asm);
|
||||
@ -538,13 +522,13 @@ public class Pass4CodeGeneration {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Add constants with data and memory variables with data for a scope.
|
||||
* Added after the the code of the scope.
|
||||
*
|
||||
* @param asm The ASM program
|
||||
* @param scopeRef The scope
|
||||
*/
|
||||
/**
|
||||
* Add constants with data and memory variables with data for a scope.
|
||||
* Added after the the code of the scope.
|
||||
*
|
||||
* @param asm The ASM program
|
||||
* @param scopeRef The scope
|
||||
*/
|
||||
private void addData(AsmProgram asm, ScopeRef scopeRef) {
|
||||
Scope scope = program.getScope().getScope(scopeRef);
|
||||
Collection<Variable> scopeConstants = scope.getAllConstants(false);
|
||||
@ -558,7 +542,7 @@ public class Pass4CodeGeneration {
|
||||
continue;
|
||||
}
|
||||
// Skip if address is absolute
|
||||
if(constantVar.getMemoryAddress()!=null)
|
||||
if(constantVar.getMemoryAddress() != null)
|
||||
continue;
|
||||
// Set segment
|
||||
setCurrentSegment(constantVar.getDataSegment(), asm);
|
||||
@ -941,9 +925,7 @@ public class Pass4CodeGeneration {
|
||||
}
|
||||
} else if(statement instanceof StatementKickAsm) {
|
||||
StatementKickAsm statementKasm = (StatementKickAsm) statement;
|
||||
if(statementKasm.getLocation() == null) {
|
||||
addKickAsm(asm, statementKasm);
|
||||
}
|
||||
addKickAsm(asm, statementKasm);
|
||||
if(statementKasm.getDeclaredClobber() != null) {
|
||||
asm.getCurrentChunk().setClobberOverwrite(statementKasm.getDeclaredClobber());
|
||||
}
|
||||
|
@ -2,12 +2,14 @@
|
||||
|
||||
void main() {
|
||||
while(true) {
|
||||
// KickAsm inline code
|
||||
kickasm {{
|
||||
inc $d020
|
||||
}}
|
||||
}
|
||||
}
|
||||
|
||||
kickasm {{
|
||||
// KickAsm data initializer
|
||||
export char A[] = kickasm {{
|
||||
.byte 1, 2, 3
|
||||
}}
|
137
src/test/ref/examples/krillload/krillload.asm
Normal file
137
src/test/ref/examples/krillload/krillload.asm
Normal file
@ -0,0 +1,137 @@
|
||||
// Tests Krill Loader
|
||||
// Load a file to memory using the Krill loader
|
||||
// The krillload.ld link file creates a D64 disk image containing the executable and the sprite.
|
||||
// To execute the program succesfully you must mount the D64 disk image and execute the krillload.PRG program
|
||||
// Create a D64 disk containing the program and a sprite file
|
||||
.disk [filename="krillload.d64", name="DISK", id=1] {
|
||||
[name="KRILLLOAD", type="prg", segments="Program"],
|
||||
[name="SPRITE", type="prg", segments="Sprite"]
|
||||
}
|
||||
.segmentdef Program [segments="Basic, Code, Data"]
|
||||
.segmentdef Basic [start=$0801]
|
||||
.segmentdef Code [start=$080d]
|
||||
.segmentdef Data [startAfter="Code"]
|
||||
.segmentdef Sprite
|
||||
.segment Basic
|
||||
:BasicUpstart(main)
|
||||
.segment Code
|
||||
.const KRILL_OK = 0
|
||||
// The offset of the sprite pointers from the screen start address
|
||||
.const SPRITE_PTRS = $3f8
|
||||
.const GREEN = 5
|
||||
.const OFFSET_STRUCT_MOS6569_VICII_BORDER_COLOR = $20
|
||||
.const OFFSET_STRUCT_MOS6569_VICII_SPRITES_ENABLE = $15
|
||||
.label SPRITES_XPOS = $d000
|
||||
.label SPRITES_YPOS = $d001
|
||||
.label SPRITES_COLOR = $d027
|
||||
// The VIC-II MOS 6567/6569
|
||||
.label VICII = $d000
|
||||
.label SCREEN = $400
|
||||
.label SPRITES_PTR = SCREEN+SPRITE_PTRS
|
||||
.segment Code
|
||||
main: {
|
||||
.const toSpritePtr1_return = $ff&SPRITE/$40
|
||||
// krill_install()
|
||||
jsr krill_install
|
||||
// status = krill_install()
|
||||
// if(status!=KRILL_OK)
|
||||
cmp #KRILL_OK
|
||||
beq __b1
|
||||
// VICII->BORDER_COLOR = 0x02
|
||||
lda #2
|
||||
sta VICII+OFFSET_STRUCT_MOS6569_VICII_BORDER_COLOR
|
||||
// }
|
||||
rts
|
||||
__b1:
|
||||
// krill_loadraw("sprite")
|
||||
jsr krill_loadraw
|
||||
// status = krill_loadraw("sprite")
|
||||
// if(status!=KRILL_OK)
|
||||
cmp #KRILL_OK
|
||||
beq __b2
|
||||
// VICII->BORDER_COLOR = 0x02
|
||||
lda #2
|
||||
sta VICII+OFFSET_STRUCT_MOS6569_VICII_BORDER_COLOR
|
||||
rts
|
||||
__b2:
|
||||
// VICII->SPRITES_ENABLE = %00000001
|
||||
// Show the loaded sprite on screen
|
||||
lda #1
|
||||
sta VICII+OFFSET_STRUCT_MOS6569_VICII_SPRITES_ENABLE
|
||||
// SPRITES_PTR[0] = toSpritePtr(SPRITE)
|
||||
lda #toSpritePtr1_return
|
||||
sta SPRITES_PTR
|
||||
// SPRITES_COLOR[0] = GREEN
|
||||
lda #GREEN
|
||||
sta SPRITES_COLOR
|
||||
// SPRITES_XPOS[0] = 0x15
|
||||
lda #$15
|
||||
sta SPRITES_XPOS
|
||||
// SPRITES_YPOS[0] = 0x33
|
||||
lda #$33
|
||||
sta SPRITES_YPOS
|
||||
rts
|
||||
.segment Data
|
||||
.encoding "petscii_mixed"
|
||||
filename: .text "sprite"
|
||||
.byte 0
|
||||
}
|
||||
.segment Code
|
||||
// Load a file from the active drive without decompression.
|
||||
// While loading using filenames with wildcards ("?" and "*") is not possible,
|
||||
// subsequent files following the previously-loaded file can be loaded via a
|
||||
// zero-length filename
|
||||
// - filename - The name of the file to load (zero-terminated in petscii encoding)
|
||||
// Returns the status of the load
|
||||
krill_loadraw: {
|
||||
.label status = $ff
|
||||
.label fname = $fe
|
||||
// *fname = filename
|
||||
lda #<main.filename
|
||||
sta fname
|
||||
lda #>main.filename
|
||||
sta fname+1
|
||||
// asm
|
||||
ldx fname
|
||||
tay
|
||||
jsr KRILL_LOADER
|
||||
sta status
|
||||
// return *status;
|
||||
// }
|
||||
rts
|
||||
}
|
||||
// Install drive-side code portion(s) must be installed in the active drive.
|
||||
// Before the loader can operate, its drive-side code portion(s) must be installed in the drive(s).
|
||||
// The drive-side portion remains resident in the drive. After successful
|
||||
// installation, the install routine is not needed any more and may be overwritten.
|
||||
// The KERNAL ROM may be disabled and zeropage variables clobbered.
|
||||
// Returns the status of the installation
|
||||
krill_install: {
|
||||
.label status = $ff
|
||||
// asm
|
||||
jsr KRILL_INSTALL
|
||||
sta status
|
||||
// return *status;
|
||||
// }
|
||||
rts
|
||||
}
|
||||
.segment Data
|
||||
.pc = $3000 "KRILL_LOADER"
|
||||
// The Krill loader routine that can load files.
|
||||
KRILL_LOADER:
|
||||
.import c64 "loader-c64.prg"
|
||||
|
||||
.pc = $3400 "KRILL_INSTALL"
|
||||
// The Krill Install routine that can install the drive-side code
|
||||
KRILL_INSTALL:
|
||||
.import c64 "install-c64.prg"
|
||||
|
||||
.segment Sprite
|
||||
.pc = $2040 "SPRITE"
|
||||
// The sprite data
|
||||
SPRITE:
|
||||
.var pic = LoadPicture("sprite.png", List().add($000000, $ffffff))
|
||||
.for (var y=0; y<21; y++)
|
||||
.for (var x=0;x<3; x++)
|
||||
.byte pic.getSinglecolorByte(x,y)
|
||||
|
Loading…
x
Reference in New Issue
Block a user