mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-02-21 07:29:14 +00:00
Added support for specifying that inline kickasm uses a procedure - preventing it from being culled. Closes #294
This commit is contained in:
parent
452b9d2ae6
commit
00c9b47481
@ -288,7 +288,7 @@ public interface ProgramValue {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void set(Value value) {
|
public void set(Value value) {
|
||||||
statementKickAsm.getUses().set(idx, (SymbolVariableRef) value);
|
statementKickAsm.getUses().set(idx, (SymbolRef) value);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -35,6 +35,7 @@ public class Pass1EliminateUncalledProcedures extends Pass1Base {
|
|||||||
Set<ProcedureRef> unusedProcedures = new LinkedHashSet<>();
|
Set<ProcedureRef> unusedProcedures = new LinkedHashSet<>();
|
||||||
Collection<Procedure> allProcedures = getProgram().getScope().getAllProcedures(true);
|
Collection<Procedure> allProcedures = getProgram().getScope().getAllProcedures(true);
|
||||||
for(Procedure procedure : allProcedures) {
|
for(Procedure procedure : allProcedures) {
|
||||||
|
// TODO Also look at kickasm/asm uses! (Maybe also look at some directive like "export" )
|
||||||
if(!calledProcedures.contains(procedure.getRef()) && !Pass2ConstantIdentification.isAddressOfUsed(procedure.getRef(), getProgram())) {
|
if(!calledProcedures.contains(procedure.getRef()) && !Pass2ConstantIdentification.isAddressOfUsed(procedure.getRef(), getProgram())) {
|
||||||
// The procedure is not used - mark for removal!
|
// The procedure is not used - mark for removal!
|
||||||
unusedProcedures.add(procedure.getRef());
|
unusedProcedures.add(procedure.getRef());
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
package dk.camelot64.kickc.passes;
|
package dk.camelot64.kickc.passes;
|
||||||
|
|
||||||
import dk.camelot64.kickc.model.*;
|
import dk.camelot64.kickc.model.CompileError;
|
||||||
|
import dk.camelot64.kickc.model.ConstantNotLiteral;
|
||||||
|
import dk.camelot64.kickc.model.ControlFlowBlock;
|
||||||
|
import dk.camelot64.kickc.model.Program;
|
||||||
import dk.camelot64.kickc.model.iterator.ProgramValueIterator;
|
import dk.camelot64.kickc.model.iterator.ProgramValueIterator;
|
||||||
import dk.camelot64.kickc.model.operators.OperatorBinary;
|
import dk.camelot64.kickc.model.operators.OperatorBinary;
|
||||||
import dk.camelot64.kickc.model.operators.OperatorUnary;
|
import dk.camelot64.kickc.model.operators.OperatorUnary;
|
||||||
@ -77,7 +80,7 @@ public class Pass2ConstantIdentification extends Pass2SsaOptimization {
|
|||||||
variableType,
|
variableType,
|
||||||
constVal,
|
constVal,
|
||||||
variable.getDataSegment()
|
variable.getDataSegment()
|
||||||
);
|
);
|
||||||
|
|
||||||
constantVar.setInferredType(variable.isInferredType());
|
constantVar.setInferredType(variable.isInferredType());
|
||||||
constantVar.setDeclaredAlignment(variable.getDeclaredAlignment());
|
constantVar.setDeclaredAlignment(variable.getDeclaredAlignment());
|
||||||
@ -286,11 +289,8 @@ public class Pass2ConstantIdentification extends Pass2SsaOptimization {
|
|||||||
// Examine all program values in expressions
|
// Examine all program values in expressions
|
||||||
ProgramValueIterator.execute(program, (programValue, currentStmt, stmtIt, currentBlock) -> {
|
ProgramValueIterator.execute(program, (programValue, currentStmt, stmtIt, currentBlock) -> {
|
||||||
Value value = programValue.get();
|
Value value = programValue.get();
|
||||||
if(value instanceof ConstantSymbolPointer) {
|
if(value instanceof ProcedureRef && value.equals(procedureRef)) {
|
||||||
ConstantSymbolPointer constantSymbolPointer = (ConstantSymbolPointer) value;
|
found[0] = true;
|
||||||
if(constantSymbolPointer.getToSymbol().equals(procedureRef)) {
|
|
||||||
found[0] = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if(found[0]) {
|
if(found[0]) {
|
||||||
|
@ -36,6 +36,11 @@ public class TestPrograms {
|
|||||||
public TestPrograms() {
|
public TestPrograms() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testKickasmUsesPreventDeletion() throws IOException, URISyntaxException {
|
||||||
|
compileAndCompare("kickasm-uses-prevent-deletion");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testBitmapCircle() throws IOException, URISyntaxException {
|
public void testBitmapCircle() throws IOException, URISyntaxException {
|
||||||
compileAndCompare("bitmap-circle");
|
compileAndCompare("bitmap-circle");
|
||||||
|
28
src/test/kc/kickasm-uses-prevent-deletion.kc
Normal file
28
src/test/kc/kickasm-uses-prevent-deletion.kc
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
// Ensure that an inline kickasm uses-clause is anough to prevent a function from being deleted
|
||||||
|
|
||||||
|
// The vector used when the KERNAL serves IRQ interrupts
|
||||||
|
const void()** KERNEL_IRQ = $0314;
|
||||||
|
const byte* BGCOL = $d021;
|
||||||
|
const byte BLACK = $0;
|
||||||
|
const byte WHITE = $1;
|
||||||
|
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
kickasm(uses irq, uses KERNEL_IRQ) {{
|
||||||
|
sei
|
||||||
|
lda #<irq;
|
||||||
|
sta KERNEL_IRQ
|
||||||
|
lda #>irq;
|
||||||
|
sta KERNEL_IRQ+1
|
||||||
|
cli
|
||||||
|
}}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// The Interrupt Handler
|
||||||
|
interrupt(kernel_keyboard) void irq() {
|
||||||
|
*BGCOL = WHITE;
|
||||||
|
*BGCOL = BLACK;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
27
src/test/ref/kickasm-uses-prevent-deletion.asm
Normal file
27
src/test/ref/kickasm-uses-prevent-deletion.asm
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
// Ensure that an inline kickasm uses-clause is anough to prevent a function from being deleted
|
||||||
|
.pc = $801 "Basic"
|
||||||
|
:BasicUpstart(main)
|
||||||
|
.pc = $80d "Program"
|
||||||
|
// The vector used when the KERNAL serves IRQ interrupts
|
||||||
|
.label KERNEL_IRQ = $314
|
||||||
|
.label BGCOL = $d021
|
||||||
|
.const BLACK = 0
|
||||||
|
.const WHITE = 1
|
||||||
|
main: {
|
||||||
|
sei
|
||||||
|
lda #<irq;
|
||||||
|
sta KERNEL_IRQ
|
||||||
|
lda #>irq;
|
||||||
|
sta KERNEL_IRQ+1
|
||||||
|
cli
|
||||||
|
|
||||||
|
rts
|
||||||
|
}
|
||||||
|
// The Interrupt Handler
|
||||||
|
irq: {
|
||||||
|
lda #WHITE
|
||||||
|
sta BGCOL
|
||||||
|
lda #BLACK
|
||||||
|
sta BGCOL
|
||||||
|
jmp $ea31
|
||||||
|
}
|
28
src/test/ref/kickasm-uses-prevent-deletion.cfg
Normal file
28
src/test/ref/kickasm-uses-prevent-deletion.cfg
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
@begin: scope:[] from
|
||||||
|
[0] phi()
|
||||||
|
to:@1
|
||||||
|
@1: scope:[] from @begin
|
||||||
|
[1] phi()
|
||||||
|
[2] call main
|
||||||
|
to:@end
|
||||||
|
@end: scope:[] from @1
|
||||||
|
[3] phi()
|
||||||
|
main: scope:[main] from @1
|
||||||
|
kickasm( uses irq uses KERNEL_IRQ#0) {{ sei
|
||||||
|
lda #<irq;
|
||||||
|
sta KERNEL_IRQ
|
||||||
|
lda #>irq;
|
||||||
|
sta KERNEL_IRQ+1
|
||||||
|
cli
|
||||||
|
}}
|
||||||
|
to:main::@return
|
||||||
|
main::@return: scope:[main] from main
|
||||||
|
[5] return
|
||||||
|
to:@return
|
||||||
|
irq: scope:[irq] from
|
||||||
|
[6] *((const byte*) BGCOL#0) ← (const byte) WHITE#0
|
||||||
|
[7] *((const byte*) BGCOL#0) ← (const byte) BLACK#0
|
||||||
|
to:irq::@return
|
||||||
|
irq::@return: scope:[irq] from irq
|
||||||
|
[8] return
|
||||||
|
to:@return
|
363
src/test/ref/kickasm-uses-prevent-deletion.log
Normal file
363
src/test/ref/kickasm-uses-prevent-deletion.log
Normal file
@ -0,0 +1,363 @@
|
|||||||
|
Resolved forward reference irq to interrupt(KERNEL_KEYBOARD)(void()) irq()
|
||||||
|
Culled Empty Block (label) @1
|
||||||
|
|
||||||
|
CONTROL FLOW GRAPH SSA
|
||||||
|
@begin: scope:[] from
|
||||||
|
(void()**) KERNEL_IRQ#0 ← ((void()**)) (number) $314
|
||||||
|
(byte*) BGCOL#0 ← ((byte*)) (number) $d021
|
||||||
|
(byte) BLACK#0 ← (number) 0
|
||||||
|
(byte) WHITE#0 ← (number) 1
|
||||||
|
to:@2
|
||||||
|
main: scope:[main] from @2
|
||||||
|
kickasm( uses irq uses KERNEL_IRQ#0) {{ sei
|
||||||
|
lda #<irq;
|
||||||
|
sta KERNEL_IRQ
|
||||||
|
lda #>irq;
|
||||||
|
sta KERNEL_IRQ+1
|
||||||
|
cli
|
||||||
|
}}
|
||||||
|
to:main::@return
|
||||||
|
main::@return: scope:[main] from main
|
||||||
|
return
|
||||||
|
to:@return
|
||||||
|
irq: scope:[irq] from
|
||||||
|
*((byte*) BGCOL#0) ← (byte) WHITE#0
|
||||||
|
*((byte*) BGCOL#0) ← (byte) BLACK#0
|
||||||
|
to:irq::@return
|
||||||
|
irq::@return: scope:[irq] from irq
|
||||||
|
return
|
||||||
|
to:@return
|
||||||
|
@2: scope:[] from @begin
|
||||||
|
call main
|
||||||
|
to:@3
|
||||||
|
@3: scope:[] from @2
|
||||||
|
to:@end
|
||||||
|
@end: scope:[] from @3
|
||||||
|
|
||||||
|
SYMBOL TABLE SSA
|
||||||
|
(label) @2
|
||||||
|
(label) @3
|
||||||
|
(label) @begin
|
||||||
|
(label) @end
|
||||||
|
(byte*) BGCOL
|
||||||
|
(byte*) BGCOL#0
|
||||||
|
(byte) BLACK
|
||||||
|
(byte) BLACK#0
|
||||||
|
(void()**) KERNEL_IRQ
|
||||||
|
(void()**) KERNEL_IRQ#0
|
||||||
|
(byte) WHITE
|
||||||
|
(byte) WHITE#0
|
||||||
|
interrupt(KERNEL_KEYBOARD)(void()) irq()
|
||||||
|
(label) irq::@return
|
||||||
|
(void()) main()
|
||||||
|
(label) main::@return
|
||||||
|
|
||||||
|
Adding number conversion cast (unumber) 0 in (byte) BLACK#0 ← (number) 0
|
||||||
|
Adding number conversion cast (unumber) 1 in (byte) WHITE#0 ← (number) 1
|
||||||
|
Successful SSA optimization PassNAddNumberTypeConversions
|
||||||
|
Inlining cast (void()**) KERNEL_IRQ#0 ← (void()**)(number) $314
|
||||||
|
Inlining cast (byte*) BGCOL#0 ← (byte*)(number) $d021
|
||||||
|
Inlining cast (byte) BLACK#0 ← (unumber)(number) 0
|
||||||
|
Inlining cast (byte) WHITE#0 ← (unumber)(number) 1
|
||||||
|
Successful SSA optimization Pass2InlineCast
|
||||||
|
Simplifying constant pointer cast (void()**) 788
|
||||||
|
Simplifying constant pointer cast (byte*) 53281
|
||||||
|
Simplifying constant integer cast 0
|
||||||
|
Simplifying constant integer cast 1
|
||||||
|
Successful SSA optimization PassNCastSimplification
|
||||||
|
Finalized unsigned number type (byte) 0
|
||||||
|
Finalized unsigned number type (byte) 1
|
||||||
|
Successful SSA optimization PassNFinalizeNumberTypeConversions
|
||||||
|
Constant (const void()**) KERNEL_IRQ#0 = (void()**) 788
|
||||||
|
Constant (const byte*) BGCOL#0 = (byte*) 53281
|
||||||
|
Constant (const byte) BLACK#0 = 0
|
||||||
|
Constant (const byte) WHITE#0 = 1
|
||||||
|
Successful SSA optimization Pass2ConstantIdentification
|
||||||
|
Adding NOP phi() at start of @begin
|
||||||
|
Adding NOP phi() at start of @2
|
||||||
|
Adding NOP phi() at start of @3
|
||||||
|
Adding NOP phi() at start of @end
|
||||||
|
CALL GRAPH
|
||||||
|
Calls in [] to main:2
|
||||||
|
|
||||||
|
Created 0 initial phi equivalence classes
|
||||||
|
Coalesced down to 0 phi equivalence classes
|
||||||
|
Culled Empty Block (label) @3
|
||||||
|
Renumbering block @2 to @1
|
||||||
|
Adding NOP phi() at start of @begin
|
||||||
|
Adding NOP phi() at start of @1
|
||||||
|
Adding NOP phi() at start of @end
|
||||||
|
|
||||||
|
FINAL CONTROL FLOW GRAPH
|
||||||
|
@begin: scope:[] from
|
||||||
|
[0] phi()
|
||||||
|
to:@1
|
||||||
|
@1: scope:[] from @begin
|
||||||
|
[1] phi()
|
||||||
|
[2] call main
|
||||||
|
to:@end
|
||||||
|
@end: scope:[] from @1
|
||||||
|
[3] phi()
|
||||||
|
main: scope:[main] from @1
|
||||||
|
kickasm( uses irq uses KERNEL_IRQ#0) {{ sei
|
||||||
|
lda #<irq;
|
||||||
|
sta KERNEL_IRQ
|
||||||
|
lda #>irq;
|
||||||
|
sta KERNEL_IRQ+1
|
||||||
|
cli
|
||||||
|
}}
|
||||||
|
to:main::@return
|
||||||
|
main::@return: scope:[main] from main
|
||||||
|
[5] return
|
||||||
|
to:@return
|
||||||
|
irq: scope:[irq] from
|
||||||
|
[6] *((const byte*) BGCOL#0) ← (const byte) WHITE#0
|
||||||
|
[7] *((const byte*) BGCOL#0) ← (const byte) BLACK#0
|
||||||
|
to:irq::@return
|
||||||
|
irq::@return: scope:[irq] from irq
|
||||||
|
[8] return
|
||||||
|
to:@return
|
||||||
|
|
||||||
|
|
||||||
|
VARIABLE REGISTER WEIGHTS
|
||||||
|
(byte*) BGCOL
|
||||||
|
(byte) BLACK
|
||||||
|
(void()**) KERNEL_IRQ
|
||||||
|
(byte) WHITE
|
||||||
|
interrupt(KERNEL_KEYBOARD)(void()) irq()
|
||||||
|
(void()) main()
|
||||||
|
|
||||||
|
Initial phi equivalence classes
|
||||||
|
Complete equivalence classes
|
||||||
|
|
||||||
|
INITIAL ASM
|
||||||
|
Target platform is c64basic
|
||||||
|
// File Comments
|
||||||
|
// Ensure that an inline kickasm uses-clause is anough to prevent a function from being deleted
|
||||||
|
// Upstart
|
||||||
|
.pc = $801 "Basic"
|
||||||
|
:BasicUpstart(bbegin)
|
||||||
|
.pc = $80d "Program"
|
||||||
|
// Global Constants & labels
|
||||||
|
// The vector used when the KERNAL serves IRQ interrupts
|
||||||
|
.label KERNEL_IRQ = $314
|
||||||
|
.label BGCOL = $d021
|
||||||
|
.const BLACK = 0
|
||||||
|
.const WHITE = 1
|
||||||
|
// @begin
|
||||||
|
bbegin:
|
||||||
|
// [1] phi from @begin to @1 [phi:@begin->@1]
|
||||||
|
b1_from_bbegin:
|
||||||
|
jmp b1
|
||||||
|
// @1
|
||||||
|
b1:
|
||||||
|
// [2] call main
|
||||||
|
jsr main
|
||||||
|
// [3] phi from @1 to @end [phi:@1->@end]
|
||||||
|
bend_from_b1:
|
||||||
|
jmp bend
|
||||||
|
// @end
|
||||||
|
bend:
|
||||||
|
// main
|
||||||
|
main: {
|
||||||
|
// kickasm( uses irq uses KERNEL_IRQ#0) {{ sei lda #<irq; sta KERNEL_IRQ lda #>irq; sta KERNEL_IRQ+1 cli }}
|
||||||
|
sei
|
||||||
|
lda #<irq;
|
||||||
|
sta KERNEL_IRQ
|
||||||
|
lda #>irq;
|
||||||
|
sta KERNEL_IRQ+1
|
||||||
|
cli
|
||||||
|
|
||||||
|
jmp breturn
|
||||||
|
// main::@return
|
||||||
|
breturn:
|
||||||
|
// [5] return
|
||||||
|
rts
|
||||||
|
}
|
||||||
|
// irq
|
||||||
|
// The Interrupt Handler
|
||||||
|
irq: {
|
||||||
|
// entry interrupt(KERNEL_KEYBOARD)
|
||||||
|
// [6] *((const byte*) BGCOL#0) ← (const byte) WHITE#0 -- _deref_pbuc1=vbuc2
|
||||||
|
lda #WHITE
|
||||||
|
sta BGCOL
|
||||||
|
// [7] *((const byte*) BGCOL#0) ← (const byte) BLACK#0 -- _deref_pbuc1=vbuc2
|
||||||
|
lda #BLACK
|
||||||
|
sta BGCOL
|
||||||
|
jmp breturn
|
||||||
|
// irq::@return
|
||||||
|
breturn:
|
||||||
|
// [8] return - exit interrupt(KERNEL_KEYBOARD)
|
||||||
|
jmp $ea31
|
||||||
|
}
|
||||||
|
// File Data
|
||||||
|
|
||||||
|
REGISTER UPLIFT POTENTIAL REGISTERS
|
||||||
|
Statement [6] *((const byte*) BGCOL#0) ← (const byte) WHITE#0 [ ] ( [ ] ) always clobbers reg byte a
|
||||||
|
Statement [7] *((const byte*) BGCOL#0) ← (const byte) BLACK#0 [ ] ( [ ] ) always clobbers reg byte a
|
||||||
|
|
||||||
|
REGISTER UPLIFT SCOPES
|
||||||
|
Uplift Scope [main]
|
||||||
|
Uplift Scope [irq]
|
||||||
|
Uplift Scope []
|
||||||
|
|
||||||
|
Uplifting [main] best 295 combination
|
||||||
|
Uplifting [irq] best 295 combination
|
||||||
|
Uplifting [] best 295 combination
|
||||||
|
|
||||||
|
ASSEMBLER BEFORE OPTIMIZATION
|
||||||
|
// File Comments
|
||||||
|
// Ensure that an inline kickasm uses-clause is anough to prevent a function from being deleted
|
||||||
|
// Upstart
|
||||||
|
.pc = $801 "Basic"
|
||||||
|
:BasicUpstart(bbegin)
|
||||||
|
.pc = $80d "Program"
|
||||||
|
// Global Constants & labels
|
||||||
|
// The vector used when the KERNAL serves IRQ interrupts
|
||||||
|
.label KERNEL_IRQ = $314
|
||||||
|
.label BGCOL = $d021
|
||||||
|
.const BLACK = 0
|
||||||
|
.const WHITE = 1
|
||||||
|
// @begin
|
||||||
|
bbegin:
|
||||||
|
// [1] phi from @begin to @1 [phi:@begin->@1]
|
||||||
|
b1_from_bbegin:
|
||||||
|
jmp b1
|
||||||
|
// @1
|
||||||
|
b1:
|
||||||
|
// [2] call main
|
||||||
|
jsr main
|
||||||
|
// [3] phi from @1 to @end [phi:@1->@end]
|
||||||
|
bend_from_b1:
|
||||||
|
jmp bend
|
||||||
|
// @end
|
||||||
|
bend:
|
||||||
|
// main
|
||||||
|
main: {
|
||||||
|
// kickasm( uses irq uses KERNEL_IRQ#0) {{ sei lda #<irq; sta KERNEL_IRQ lda #>irq; sta KERNEL_IRQ+1 cli }}
|
||||||
|
sei
|
||||||
|
lda #<irq;
|
||||||
|
sta KERNEL_IRQ
|
||||||
|
lda #>irq;
|
||||||
|
sta KERNEL_IRQ+1
|
||||||
|
cli
|
||||||
|
|
||||||
|
jmp breturn
|
||||||
|
// main::@return
|
||||||
|
breturn:
|
||||||
|
// [5] return
|
||||||
|
rts
|
||||||
|
}
|
||||||
|
// irq
|
||||||
|
// The Interrupt Handler
|
||||||
|
irq: {
|
||||||
|
// entry interrupt(KERNEL_KEYBOARD)
|
||||||
|
// [6] *((const byte*) BGCOL#0) ← (const byte) WHITE#0 -- _deref_pbuc1=vbuc2
|
||||||
|
lda #WHITE
|
||||||
|
sta BGCOL
|
||||||
|
// [7] *((const byte*) BGCOL#0) ← (const byte) BLACK#0 -- _deref_pbuc1=vbuc2
|
||||||
|
lda #BLACK
|
||||||
|
sta BGCOL
|
||||||
|
jmp breturn
|
||||||
|
// irq::@return
|
||||||
|
breturn:
|
||||||
|
// [8] return - exit interrupt(KERNEL_KEYBOARD)
|
||||||
|
jmp $ea31
|
||||||
|
}
|
||||||
|
// File Data
|
||||||
|
|
||||||
|
ASSEMBLER OPTIMIZATIONS
|
||||||
|
Removing instruction jmp b1
|
||||||
|
Removing instruction jmp bend
|
||||||
|
Removing instruction jmp breturn
|
||||||
|
Removing instruction jmp breturn
|
||||||
|
Succesful ASM optimization Pass5NextJumpElimination
|
||||||
|
Removing instruction b1_from_bbegin:
|
||||||
|
Removing instruction b1:
|
||||||
|
Removing instruction bend_from_b1:
|
||||||
|
Succesful ASM optimization Pass5RedundantLabelElimination
|
||||||
|
Removing instruction bend:
|
||||||
|
Removing instruction breturn:
|
||||||
|
Removing instruction breturn:
|
||||||
|
Succesful ASM optimization Pass5UnusedLabelElimination
|
||||||
|
Updating BasicUpstart to call main directly
|
||||||
|
Removing instruction jsr main
|
||||||
|
Succesful ASM optimization Pass5SkipBegin
|
||||||
|
Removing instruction bbegin:
|
||||||
|
Succesful ASM optimization Pass5UnusedLabelElimination
|
||||||
|
|
||||||
|
FINAL SYMBOL TABLE
|
||||||
|
(label) @1
|
||||||
|
(label) @begin
|
||||||
|
(label) @end
|
||||||
|
(byte*) BGCOL
|
||||||
|
(const byte*) BGCOL#0 BGCOL = (byte*) 53281
|
||||||
|
(byte) BLACK
|
||||||
|
(const byte) BLACK#0 BLACK = (byte) 0
|
||||||
|
(void()**) KERNEL_IRQ
|
||||||
|
(const void()**) KERNEL_IRQ#0 KERNEL_IRQ = (void()**) 788
|
||||||
|
(byte) WHITE
|
||||||
|
(const byte) WHITE#0 WHITE = (byte) 1
|
||||||
|
interrupt(KERNEL_KEYBOARD)(void()) irq()
|
||||||
|
(label) irq::@return
|
||||||
|
(void()) main()
|
||||||
|
(label) main::@return
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
FINAL ASSEMBLER
|
||||||
|
Score: 277
|
||||||
|
|
||||||
|
// File Comments
|
||||||
|
// Ensure that an inline kickasm uses-clause is anough to prevent a function from being deleted
|
||||||
|
// Upstart
|
||||||
|
.pc = $801 "Basic"
|
||||||
|
:BasicUpstart(main)
|
||||||
|
.pc = $80d "Program"
|
||||||
|
// Global Constants & labels
|
||||||
|
// The vector used when the KERNAL serves IRQ interrupts
|
||||||
|
.label KERNEL_IRQ = $314
|
||||||
|
.label BGCOL = $d021
|
||||||
|
.const BLACK = 0
|
||||||
|
.const WHITE = 1
|
||||||
|
// @begin
|
||||||
|
// [1] phi from @begin to @1 [phi:@begin->@1]
|
||||||
|
// @1
|
||||||
|
// [2] call main
|
||||||
|
// [3] phi from @1 to @end [phi:@1->@end]
|
||||||
|
// @end
|
||||||
|
// main
|
||||||
|
main: {
|
||||||
|
// kickasm
|
||||||
|
// kickasm( uses irq uses KERNEL_IRQ#0) {{ sei lda #<irq; sta KERNEL_IRQ lda #>irq; sta KERNEL_IRQ+1 cli }}
|
||||||
|
sei
|
||||||
|
lda #<irq;
|
||||||
|
sta KERNEL_IRQ
|
||||||
|
lda #>irq;
|
||||||
|
sta KERNEL_IRQ+1
|
||||||
|
cli
|
||||||
|
|
||||||
|
// main::@return
|
||||||
|
// }
|
||||||
|
// [5] return
|
||||||
|
rts
|
||||||
|
}
|
||||||
|
// irq
|
||||||
|
// The Interrupt Handler
|
||||||
|
irq: {
|
||||||
|
// entry interrupt(KERNEL_KEYBOARD)
|
||||||
|
// *BGCOL = WHITE
|
||||||
|
// [6] *((const byte*) BGCOL#0) ← (const byte) WHITE#0 -- _deref_pbuc1=vbuc2
|
||||||
|
lda #WHITE
|
||||||
|
sta BGCOL
|
||||||
|
// *BGCOL = BLACK
|
||||||
|
// [7] *((const byte*) BGCOL#0) ← (const byte) BLACK#0 -- _deref_pbuc1=vbuc2
|
||||||
|
lda #BLACK
|
||||||
|
sta BGCOL
|
||||||
|
// irq::@return
|
||||||
|
// }
|
||||||
|
// [8] return - exit interrupt(KERNEL_KEYBOARD)
|
||||||
|
jmp $ea31
|
||||||
|
}
|
||||||
|
// File Data
|
||||||
|
|
16
src/test/ref/kickasm-uses-prevent-deletion.sym
Normal file
16
src/test/ref/kickasm-uses-prevent-deletion.sym
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
(label) @1
|
||||||
|
(label) @begin
|
||||||
|
(label) @end
|
||||||
|
(byte*) BGCOL
|
||||||
|
(const byte*) BGCOL#0 BGCOL = (byte*) 53281
|
||||||
|
(byte) BLACK
|
||||||
|
(const byte) BLACK#0 BLACK = (byte) 0
|
||||||
|
(void()**) KERNEL_IRQ
|
||||||
|
(const void()**) KERNEL_IRQ#0 KERNEL_IRQ = (void()**) 788
|
||||||
|
(byte) WHITE
|
||||||
|
(const byte) WHITE#0 WHITE = (byte) 1
|
||||||
|
interrupt(KERNEL_KEYBOARD)(void()) irq()
|
||||||
|
(label) irq::@return
|
||||||
|
(void()) main()
|
||||||
|
(label) main::@return
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user