mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-04-05 07:40:39 +00:00
Fixed tests & fragment.
This commit is contained in:
parent
0dc8d5e735
commit
452b9d2ae6
@ -3,5 +3,5 @@ clc
|
||||
adc #2
|
||||
sta {z1}
|
||||
bcc !+
|
||||
inc {z2}+1
|
||||
inc {z1}+1
|
||||
!:
|
@ -36,6 +36,11 @@ public class TestPrograms {
|
||||
public TestPrograms() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBitmapCircle() throws IOException, URISyntaxException {
|
||||
compileAndCompare("bitmap-circle");
|
||||
}
|
||||
|
||||
// TODO: Optimize comparisons with values outside the range of types https://gitlab.com/camelot/kickc/issues/291
|
||||
@Test
|
||||
public void testOptimizeUnsignedComparisons() throws IOException, URISyntaxException {
|
||||
@ -1833,6 +1838,11 @@ public class TestPrograms {
|
||||
// compileAndCompare("complex/travis/game");
|
||||
//}
|
||||
|
||||
//@Test
|
||||
//public void testBcmod() throws IOException, URISyntaxException {
|
||||
// compileAndCompare("complex/bcmod/bcmod", log());
|
||||
//}
|
||||
|
||||
@Test
|
||||
public void testTetrisSprites() throws IOException, URISyntaxException {
|
||||
compileAndCompare("complex/tetris/test-sprites");
|
||||
|
65
src/test/kc/bitmap-circle.kc
Normal file
65
src/test/kc/bitmap-circle.kc
Normal file
@ -0,0 +1,65 @@
|
||||
// Plots a circle on a bitmap using Bresenham's Circle algorithm
|
||||
// Coded by Richard-William Loerakker
|
||||
// Original Source https://bcaorganizer.blogspot.com/p/c-program-for_21.html?fbclid=IwAR0iL8pYcCqhCPa6LmtQ9qej-YonYVepY2cBegYRIWO0l8RPeOnTVniMAac
|
||||
|
||||
import "c64"
|
||||
|
||||
const byte* SCREEN = $400;
|
||||
const byte* BITMAP = $2000;
|
||||
const byte* COLORS = $d800;
|
||||
|
||||
byte[] bitmask = { 128, 64, 32, 16, 8, 4, 2, 1 };
|
||||
|
||||
void main() {
|
||||
fill(BITMAP,40*25*8,0);
|
||||
fill(SCREEN,40*25,$16);
|
||||
|
||||
*BORDERCOL = BLUE;
|
||||
*D011 = VIC_BMM|VIC_DEN|VIC_RSEL|3;
|
||||
*VIC_MEMORY = (byte)((((word)SCREEN&$3fff)/$40)|(((word)BITMAP&$3fff)/$400));
|
||||
|
||||
circle(100,100,50);
|
||||
|
||||
do {} while (true);
|
||||
}
|
||||
|
||||
void circle(int xc, int yc, int r) {
|
||||
int x = 0;
|
||||
int y = r;
|
||||
int p = 3-(r << 1);
|
||||
|
||||
for(int x = 0; x <= y; x ++) {
|
||||
if(p < 0) {
|
||||
p = p + (x << 2) + 6;
|
||||
} else {
|
||||
y=y-1;
|
||||
p = p + ((x-y) << 2) + 10;
|
||||
}
|
||||
|
||||
plot(xc+x,yc-y);
|
||||
plot(xc-x,yc-y);
|
||||
plot(xc+x,yc+y);
|
||||
plot(xc-x,yc+y);
|
||||
plot(xc+y,yc-x);
|
||||
plot(xc-y,yc-x);
|
||||
plot(xc+y,yc+x);
|
||||
plot(xc-y,yc+x);
|
||||
}
|
||||
}
|
||||
|
||||
void plot(int x, int y) {
|
||||
byte* location = BITMAP;
|
||||
location += x & $fff8;
|
||||
location += <y & 7;
|
||||
location += ((y >> 3) * 320);
|
||||
(*location) = (*location) | bitmask[x & 7];
|
||||
}
|
||||
|
||||
// Fill some memory with a value
|
||||
void fill(byte* start, int size, byte val) {
|
||||
byte* end = start + size;
|
||||
for(byte* addr = start; addr!=end; addr++) {
|
||||
*addr = val;
|
||||
}
|
||||
}
|
||||
|
385
src/test/ref/bitmap-circle.asm
Normal file
385
src/test/ref/bitmap-circle.asm
Normal file
@ -0,0 +1,385 @@
|
||||
// Plots a circle on a bitmap using Bresenham's Circle algorithm
|
||||
// Coded by Richard-William Loerakker
|
||||
// Original Source https://bcaorganizer.blogspot.com/p/c-program-for_21.html?fbclid=IwAR0iL8pYcCqhCPa6LmtQ9qej-YonYVepY2cBegYRIWO0l8RPeOnTVniMAac
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
.label BORDERCOL = $d020
|
||||
.label D011 = $d011
|
||||
.const VIC_BMM = $20
|
||||
.const VIC_DEN = $10
|
||||
.const VIC_RSEL = 8
|
||||
.label VIC_MEMORY = $d018
|
||||
.const BLUE = 6
|
||||
.label SCREEN = $400
|
||||
.label BITMAP = $2000
|
||||
main: {
|
||||
ldx #0
|
||||
lda #<$28*$19*8
|
||||
sta.z fill.size
|
||||
lda #>$28*$19*8
|
||||
sta.z fill.size+1
|
||||
lda #<BITMAP
|
||||
sta.z fill.addr
|
||||
lda #>BITMAP
|
||||
sta.z fill.addr+1
|
||||
jsr fill
|
||||
ldx #$16
|
||||
lda #<$28*$19
|
||||
sta.z fill.size
|
||||
lda #>$28*$19
|
||||
sta.z fill.size+1
|
||||
lda #<SCREEN
|
||||
sta.z fill.addr
|
||||
lda #>SCREEN
|
||||
sta.z fill.addr+1
|
||||
jsr fill
|
||||
lda #BLUE
|
||||
sta BORDERCOL
|
||||
lda #VIC_BMM|VIC_DEN|VIC_RSEL|3
|
||||
sta D011
|
||||
lda #(SCREEN&$3fff)/$40|(BITMAP&$3fff)/$400
|
||||
sta VIC_MEMORY
|
||||
jsr circle
|
||||
b1:
|
||||
jmp b1
|
||||
}
|
||||
circle: {
|
||||
.const xc = $64
|
||||
.const yc = $64
|
||||
.const r = $32
|
||||
.label _5 = 8
|
||||
.label _6 = 8
|
||||
.label _7 = 2
|
||||
.label _9 = $a
|
||||
.label _10 = 2
|
||||
.label p = 2
|
||||
.label y = 6
|
||||
.label x1 = 4
|
||||
lda #<3-(r<<1)
|
||||
sta.z p
|
||||
lda #>3-(r<<1)
|
||||
sta.z p+1
|
||||
lda #<r
|
||||
sta.z y
|
||||
lda #>r
|
||||
sta.z y+1
|
||||
lda #<0
|
||||
sta.z x1
|
||||
sta.z x1+1
|
||||
b1:
|
||||
lda.z y
|
||||
cmp.z x1
|
||||
lda.z y+1
|
||||
sbc.z x1+1
|
||||
bvc !+
|
||||
eor #$80
|
||||
!:
|
||||
bpl b2
|
||||
rts
|
||||
b2:
|
||||
lda.z p+1
|
||||
bpl !b3+
|
||||
jmp b3
|
||||
!b3:
|
||||
sec
|
||||
lda.z y
|
||||
sbc #1
|
||||
sta.z y
|
||||
bcs !+
|
||||
dec.z y+1
|
||||
!:
|
||||
lda.z x1
|
||||
sec
|
||||
sbc.z y
|
||||
sta.z _5
|
||||
lda.z x1+1
|
||||
sbc.z y+1
|
||||
sta.z _5+1
|
||||
asl.z _6
|
||||
rol.z _6+1
|
||||
asl.z _6
|
||||
rol.z _6+1
|
||||
lda.z _7
|
||||
clc
|
||||
adc.z _6
|
||||
sta.z _7
|
||||
lda.z _7+1
|
||||
adc.z _6+1
|
||||
sta.z _7+1
|
||||
lda.z p
|
||||
clc
|
||||
adc #<$a
|
||||
sta.z p
|
||||
lda.z p+1
|
||||
adc #>$a
|
||||
sta.z p+1
|
||||
b4:
|
||||
lda.z x1
|
||||
clc
|
||||
adc #<xc
|
||||
sta.z plot.x
|
||||
lda.z x1+1
|
||||
adc #>xc
|
||||
sta.z plot.x+1
|
||||
lda #<yc
|
||||
sec
|
||||
sbc.z y
|
||||
sta.z plot.y
|
||||
lda #>yc
|
||||
sbc.z y+1
|
||||
sta.z plot.y+1
|
||||
jsr plot
|
||||
lda #<xc
|
||||
sec
|
||||
sbc.z x1
|
||||
sta.z plot.x
|
||||
lda #>xc
|
||||
sbc.z x1+1
|
||||
sta.z plot.x+1
|
||||
lda #<yc
|
||||
sec
|
||||
sbc.z y
|
||||
sta.z plot.y
|
||||
lda #>yc
|
||||
sbc.z y+1
|
||||
sta.z plot.y+1
|
||||
jsr plot
|
||||
lda.z x1
|
||||
clc
|
||||
adc #<xc
|
||||
sta.z plot.x
|
||||
lda.z x1+1
|
||||
adc #>xc
|
||||
sta.z plot.x+1
|
||||
lda.z y
|
||||
clc
|
||||
adc #<yc
|
||||
sta.z plot.y
|
||||
lda.z y+1
|
||||
adc #>yc
|
||||
sta.z plot.y+1
|
||||
jsr plot
|
||||
lda #<xc
|
||||
sec
|
||||
sbc.z x1
|
||||
sta.z plot.x
|
||||
lda #>xc
|
||||
sbc.z x1+1
|
||||
sta.z plot.x+1
|
||||
lda.z y
|
||||
clc
|
||||
adc #<yc
|
||||
sta.z plot.y
|
||||
lda.z y+1
|
||||
adc #>yc
|
||||
sta.z plot.y+1
|
||||
jsr plot
|
||||
lda.z y
|
||||
clc
|
||||
adc #<xc
|
||||
sta.z plot.x
|
||||
lda.z y+1
|
||||
adc #>xc
|
||||
sta.z plot.x+1
|
||||
lda #<yc
|
||||
sec
|
||||
sbc.z x1
|
||||
sta.z plot.y
|
||||
lda #>yc
|
||||
sbc.z x1+1
|
||||
sta.z plot.y+1
|
||||
jsr plot
|
||||
lda #<xc
|
||||
sec
|
||||
sbc.z y
|
||||
sta.z plot.x
|
||||
lda #>xc
|
||||
sbc.z y+1
|
||||
sta.z plot.x+1
|
||||
lda #<yc
|
||||
sec
|
||||
sbc.z x1
|
||||
sta.z plot.y
|
||||
lda #>yc
|
||||
sbc.z x1+1
|
||||
sta.z plot.y+1
|
||||
jsr plot
|
||||
lda.z y
|
||||
clc
|
||||
adc #<xc
|
||||
sta.z plot.x
|
||||
lda.z y+1
|
||||
adc #>xc
|
||||
sta.z plot.x+1
|
||||
lda.z x1
|
||||
clc
|
||||
adc #<yc
|
||||
sta.z plot.y
|
||||
lda.z x1+1
|
||||
adc #>yc
|
||||
sta.z plot.y+1
|
||||
jsr plot
|
||||
lda #<xc
|
||||
sec
|
||||
sbc.z y
|
||||
sta.z plot.x
|
||||
lda #>xc
|
||||
sbc.z y+1
|
||||
sta.z plot.x+1
|
||||
lda.z x1
|
||||
clc
|
||||
adc #<yc
|
||||
sta.z plot.y
|
||||
lda.z x1+1
|
||||
adc #>yc
|
||||
sta.z plot.y+1
|
||||
jsr plot
|
||||
inc.z x1
|
||||
bne !+
|
||||
inc.z x1+1
|
||||
!:
|
||||
jmp b1
|
||||
b3:
|
||||
lda.z x1
|
||||
asl
|
||||
sta.z _9
|
||||
lda.z x1+1
|
||||
rol
|
||||
sta.z _9+1
|
||||
asl.z _9
|
||||
rol.z _9+1
|
||||
lda.z _10
|
||||
clc
|
||||
adc.z _9
|
||||
sta.z _10
|
||||
lda.z _10+1
|
||||
adc.z _9+1
|
||||
sta.z _10+1
|
||||
lda.z p
|
||||
clc
|
||||
adc #<6
|
||||
sta.z p
|
||||
lda.z p+1
|
||||
adc #>6
|
||||
sta.z p+1
|
||||
jmp b4
|
||||
}
|
||||
// plot(signed word zeropage(8) x, signed word zeropage($a) y)
|
||||
plot: {
|
||||
.label _0 = $c
|
||||
.label _3 = $a
|
||||
.label _4 = $e
|
||||
.label x = 8
|
||||
.label y = $a
|
||||
.label location = $c
|
||||
.label _7 = $e
|
||||
.label _8 = $e
|
||||
lda.z x
|
||||
and #<$fff8
|
||||
sta.z _0
|
||||
lda.z x+1
|
||||
and #>$fff8
|
||||
sta.z _0+1
|
||||
lda #<BITMAP
|
||||
clc
|
||||
adc.z location
|
||||
sta.z location
|
||||
lda #>BITMAP
|
||||
adc.z location+1
|
||||
sta.z location+1
|
||||
lda.z y
|
||||
and #7
|
||||
clc
|
||||
adc.z location
|
||||
sta.z location
|
||||
bcc !+
|
||||
inc.z location+1
|
||||
!:
|
||||
lda.z _3+1
|
||||
cmp #$80
|
||||
ror.z _3+1
|
||||
ror.z _3
|
||||
lda.z _3+1
|
||||
cmp #$80
|
||||
ror.z _3+1
|
||||
ror.z _3
|
||||
lda.z _3+1
|
||||
cmp #$80
|
||||
ror.z _3+1
|
||||
ror.z _3
|
||||
lda.z _3
|
||||
asl
|
||||
sta.z _7
|
||||
lda.z _3+1
|
||||
rol
|
||||
sta.z _7+1
|
||||
asl.z _7
|
||||
rol.z _7+1
|
||||
lda.z _8
|
||||
clc
|
||||
adc.z _3
|
||||
sta.z _8
|
||||
lda.z _8+1
|
||||
adc.z _3+1
|
||||
sta.z _8+1
|
||||
lda.z _4+1
|
||||
sta.z $ff
|
||||
lda.z _4
|
||||
sta.z _4+1
|
||||
lda #0
|
||||
sta.z _4
|
||||
lsr.z $ff
|
||||
ror.z _4+1
|
||||
ror.z _4
|
||||
lsr.z $ff
|
||||
ror.z _4+1
|
||||
ror.z _4
|
||||
lda.z location
|
||||
clc
|
||||
adc.z _4
|
||||
sta.z location
|
||||
lda.z location+1
|
||||
adc.z _4+1
|
||||
sta.z location+1
|
||||
lda #7
|
||||
and.z x
|
||||
tay
|
||||
lda bitmask,y
|
||||
ldy #0
|
||||
ora (location),y
|
||||
sta (location),y
|
||||
rts
|
||||
}
|
||||
// Fill some memory with a value
|
||||
// fill(signed word zeropage(4) size, byte register(X) val)
|
||||
fill: {
|
||||
.label end = 4
|
||||
.label addr = 6
|
||||
.label size = 4
|
||||
lda.z addr
|
||||
clc
|
||||
adc.z end
|
||||
sta.z end
|
||||
lda.z addr+1
|
||||
adc.z end+1
|
||||
sta.z end+1
|
||||
b1:
|
||||
lda.z addr+1
|
||||
cmp.z end+1
|
||||
bne b2
|
||||
lda.z addr
|
||||
cmp.z end
|
||||
bne b2
|
||||
rts
|
||||
b2:
|
||||
txa
|
||||
ldy #0
|
||||
sta (addr),y
|
||||
inc.z addr
|
||||
bne !+
|
||||
inc.z addr+1
|
||||
!:
|
||||
jmp b1
|
||||
}
|
||||
bitmask: .byte $80, $40, $20, $10, 8, 4, 2, 1
|
135
src/test/ref/bitmap-circle.cfg
Normal file
135
src/test/ref/bitmap-circle.cfg
Normal file
@ -0,0 +1,135 @@
|
||||
@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
|
||||
[4] phi()
|
||||
[5] call fill
|
||||
to:main::@2
|
||||
main::@2: scope:[main] from main
|
||||
[6] phi()
|
||||
[7] call fill
|
||||
to:main::@3
|
||||
main::@3: scope:[main] from main::@2
|
||||
[8] *((const byte*) BORDERCOL#0) ← (const byte) BLUE#0
|
||||
[9] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte) 3
|
||||
[10] *((const byte*) VIC_MEMORY#0) ← (byte)(word)(const byte*) SCREEN#0&(word) $3fff/(byte) $40|(word)(const byte*) BITMAP#0&(word) $3fff/(word) $400
|
||||
[11] call circle
|
||||
to:main::@1
|
||||
main::@1: scope:[main] from main::@1 main::@3
|
||||
[12] phi()
|
||||
to:main::@1
|
||||
circle: scope:[circle] from main::@3
|
||||
[13] phi()
|
||||
to:circle::@1
|
||||
circle::@1: scope:[circle] from circle circle::@13
|
||||
[14] (signed word) circle::p#3 ← phi( circle/(signed byte) 3-(const signed word) circle::r#0<<(signed byte) 1 circle::@13/(signed word) circle::p#10 )
|
||||
[14] (signed word) circle::y#13 ← phi( circle/(const signed word) circle::r#0 circle::@13/(signed word) circle::y#10 )
|
||||
[14] (signed word) circle::x1#10 ← phi( circle/(signed byte) 0 circle::@13/(signed word) circle::x1#1 )
|
||||
[15] if((signed word) circle::x1#10<=(signed word) circle::y#13) goto circle::@2
|
||||
to:circle::@return
|
||||
circle::@return: scope:[circle] from circle::@1
|
||||
[16] return
|
||||
to:@return
|
||||
circle::@2: scope:[circle] from circle::@1
|
||||
[17] if((signed word) circle::p#3<(signed byte) 0) goto circle::@3
|
||||
to:circle::@5
|
||||
circle::@5: scope:[circle] from circle::@2
|
||||
[18] (signed word) circle::y#1 ← (signed word) circle::y#13 - (signed byte) 1
|
||||
[19] (signed word~) circle::$5 ← (signed word) circle::x1#10 - (signed word) circle::y#1
|
||||
[20] (signed word~) circle::$6 ← (signed word~) circle::$5 << (signed byte) 2
|
||||
[21] (signed word~) circle::$7 ← (signed word) circle::p#3 + (signed word~) circle::$6
|
||||
[22] (signed word) circle::p#2 ← (signed word~) circle::$7 + (signed byte) $a
|
||||
to:circle::@4
|
||||
circle::@4: scope:[circle] from circle::@3 circle::@5
|
||||
[23] (signed word) circle::p#10 ← phi( circle::@3/(signed word) circle::p#1 circle::@5/(signed word) circle::p#2 )
|
||||
[23] (signed word) circle::y#10 ← phi( circle::@3/(signed word) circle::y#13 circle::@5/(signed word) circle::y#1 )
|
||||
[24] (signed word) plot::x#0 ← (const signed word) circle::xc#0 + (signed word) circle::x1#10
|
||||
[25] (signed word) plot::y#0 ← (const signed word) circle::yc#0 - (signed word) circle::y#10
|
||||
[26] call plot
|
||||
to:circle::@6
|
||||
circle::@6: scope:[circle] from circle::@4
|
||||
[27] (signed word) plot::x#1 ← (const signed word) circle::xc#0 - (signed word) circle::x1#10
|
||||
[28] (signed word) plot::y#1 ← (const signed word) circle::yc#0 - (signed word) circle::y#10
|
||||
[29] call plot
|
||||
to:circle::@7
|
||||
circle::@7: scope:[circle] from circle::@6
|
||||
[30] (signed word) plot::x#2 ← (const signed word) circle::xc#0 + (signed word) circle::x1#10
|
||||
[31] (signed word) plot::y#2 ← (const signed word) circle::yc#0 + (signed word) circle::y#10
|
||||
[32] call plot
|
||||
to:circle::@8
|
||||
circle::@8: scope:[circle] from circle::@7
|
||||
[33] (signed word) plot::x#3 ← (const signed word) circle::xc#0 - (signed word) circle::x1#10
|
||||
[34] (signed word) plot::y#3 ← (const signed word) circle::yc#0 + (signed word) circle::y#10
|
||||
[35] call plot
|
||||
to:circle::@9
|
||||
circle::@9: scope:[circle] from circle::@8
|
||||
[36] (signed word) plot::x#4 ← (const signed word) circle::xc#0 + (signed word) circle::y#10
|
||||
[37] (signed word) plot::y#4 ← (const signed word) circle::yc#0 - (signed word) circle::x1#10
|
||||
[38] call plot
|
||||
to:circle::@10
|
||||
circle::@10: scope:[circle] from circle::@9
|
||||
[39] (signed word) plot::x#5 ← (const signed word) circle::xc#0 - (signed word) circle::y#10
|
||||
[40] (signed word) plot::y#5 ← (const signed word) circle::yc#0 - (signed word) circle::x1#10
|
||||
[41] call plot
|
||||
to:circle::@11
|
||||
circle::@11: scope:[circle] from circle::@10
|
||||
[42] (signed word) plot::x#6 ← (const signed word) circle::xc#0 + (signed word) circle::y#10
|
||||
[43] (signed word) plot::y#6 ← (const signed word) circle::yc#0 + (signed word) circle::x1#10
|
||||
[44] call plot
|
||||
to:circle::@12
|
||||
circle::@12: scope:[circle] from circle::@11
|
||||
[45] (signed word) plot::x#7 ← (const signed word) circle::xc#0 - (signed word) circle::y#10
|
||||
[46] (signed word) plot::y#7 ← (const signed word) circle::yc#0 + (signed word) circle::x1#10
|
||||
[47] call plot
|
||||
to:circle::@13
|
||||
circle::@13: scope:[circle] from circle::@12
|
||||
[48] (signed word) circle::x1#1 ← ++ (signed word) circle::x1#10
|
||||
to:circle::@1
|
||||
circle::@3: scope:[circle] from circle::@2
|
||||
[49] (signed word~) circle::$9 ← (signed word) circle::x1#10 << (signed byte) 2
|
||||
[50] (signed word~) circle::$10 ← (signed word) circle::p#3 + (signed word~) circle::$9
|
||||
[51] (signed word) circle::p#1 ← (signed word~) circle::$10 + (signed byte) 6
|
||||
to:circle::@4
|
||||
plot: scope:[plot] from circle::@10 circle::@11 circle::@12 circle::@4 circle::@6 circle::@7 circle::@8 circle::@9
|
||||
[52] (signed word) plot::y#8 ← phi( circle::@6/(signed word) plot::y#1 circle::@7/(signed word) plot::y#2 circle::@8/(signed word) plot::y#3 circle::@9/(signed word) plot::y#4 circle::@10/(signed word) plot::y#5 circle::@11/(signed word) plot::y#6 circle::@12/(signed word) plot::y#7 circle::@4/(signed word) plot::y#0 )
|
||||
[52] (signed word) plot::x#8 ← phi( circle::@6/(signed word) plot::x#1 circle::@7/(signed word) plot::x#2 circle::@8/(signed word) plot::x#3 circle::@9/(signed word) plot::x#4 circle::@10/(signed word) plot::x#5 circle::@11/(signed word) plot::x#6 circle::@12/(signed word) plot::x#7 circle::@4/(signed word) plot::x#0 )
|
||||
[53] (signed word~) plot::$0 ← (signed word) plot::x#8 & (signed dword) $fff8
|
||||
[54] (byte*) plot::location#1 ← (const byte*) BITMAP#0 + (signed word~) plot::$0
|
||||
[55] (byte~) plot::$1 ← < (signed word) plot::y#8
|
||||
[56] (byte~) plot::$2 ← (byte~) plot::$1 & (byte) 7
|
||||
[57] (byte*) plot::location#2 ← (byte*) plot::location#1 + (byte~) plot::$2
|
||||
[58] (signed word~) plot::$3 ← (signed word) plot::y#8 >> (signed byte) 3
|
||||
[59] (signed word) plot::$7 ← (signed word~) plot::$3 << (byte) 2
|
||||
[60] (signed word) plot::$8 ← (signed word) plot::$7 + (signed word~) plot::$3
|
||||
[61] (signed word~) plot::$4 ← (signed word) plot::$8 << (byte) 6
|
||||
[62] (byte*) plot::location#3 ← (byte*) plot::location#2 + (signed word~) plot::$4
|
||||
[63] (signed byte~) plot::$5 ← (signed word) plot::x#8 & (signed byte) 7
|
||||
[64] (byte~) plot::$6 ← *((byte*) plot::location#3) | *((const byte[]) bitmask#0 + (signed byte~) plot::$5)
|
||||
[65] *((byte*) plot::location#3) ← (byte~) plot::$6
|
||||
to:plot::@return
|
||||
plot::@return: scope:[plot] from plot
|
||||
[66] return
|
||||
to:@return
|
||||
fill: scope:[fill] from main main::@2
|
||||
[67] (byte) fill::val#4 ← phi( main/(byte) 0 main::@2/(byte) $16 )
|
||||
[67] (signed word) fill::size#2 ← phi( main/(signed word)(number) $28*(number) $19*(number) 8 main::@2/(signed word)(number) $28*(number) $19 )
|
||||
[67] (byte*) fill::addr#0 ← phi( main/(const byte*) BITMAP#0 main::@2/(const byte*) SCREEN#0 )
|
||||
[68] (byte*) fill::end#0 ← (byte*) fill::addr#0 + (signed word) fill::size#2
|
||||
to:fill::@1
|
||||
fill::@1: scope:[fill] from fill fill::@2
|
||||
[69] (byte*) fill::addr#2 ← phi( fill/(byte*) fill::addr#0 fill::@2/(byte*) fill::addr#1 )
|
||||
[70] if((byte*) fill::addr#2!=(byte*) fill::end#0) goto fill::@2
|
||||
to:fill::@return
|
||||
fill::@return: scope:[fill] from fill::@1
|
||||
[71] return
|
||||
to:@return
|
||||
fill::@2: scope:[fill] from fill::@1
|
||||
[72] *((byte*) fill::addr#2) ← (byte) fill::val#4
|
||||
[73] (byte*) fill::addr#1 ← ++ (byte*) fill::addr#2
|
||||
to:fill::@1
|
3343
src/test/ref/bitmap-circle.log
Normal file
3343
src/test/ref/bitmap-circle.log
Normal file
File diff suppressed because it is too large
Load Diff
128
src/test/ref/bitmap-circle.sym
Normal file
128
src/test/ref/bitmap-circle.sym
Normal file
@ -0,0 +1,128 @@
|
||||
(label) @1
|
||||
(label) @begin
|
||||
(label) @end
|
||||
(byte*) BITMAP
|
||||
(const byte*) BITMAP#0 BITMAP = (byte*) 8192
|
||||
(byte) BLUE
|
||||
(const byte) BLUE#0 BLUE = (byte) 6
|
||||
(byte*) BORDERCOL
|
||||
(const byte*) BORDERCOL#0 BORDERCOL = (byte*) 53280
|
||||
(byte*) D011
|
||||
(const byte*) D011#0 D011 = (byte*) 53265
|
||||
(byte*) SCREEN
|
||||
(const byte*) SCREEN#0 SCREEN = (byte*) 1024
|
||||
(byte) VIC_BMM
|
||||
(const byte) VIC_BMM#0 VIC_BMM = (byte) $20
|
||||
(byte) VIC_DEN
|
||||
(const byte) VIC_DEN#0 VIC_DEN = (byte) $10
|
||||
(byte*) VIC_MEMORY
|
||||
(const byte*) VIC_MEMORY#0 VIC_MEMORY = (byte*) 53272
|
||||
(byte) VIC_RSEL
|
||||
(const byte) VIC_RSEL#0 VIC_RSEL = (byte) 8
|
||||
(byte[]) bitmask
|
||||
(const byte[]) bitmask#0 bitmask = { (byte) $80, (byte) $40, (byte) $20, (byte) $10, (byte) 8, (byte) 4, (byte) 2, (byte) 1 }
|
||||
(void()) circle((signed word) circle::xc , (signed word) circle::yc , (signed word) circle::r)
|
||||
(signed word~) circle::$10 $10 zp ZP_WORD:2 22.0
|
||||
(signed word~) circle::$5 $5 zp ZP_WORD:8 22.0
|
||||
(signed word~) circle::$6 $6 zp ZP_WORD:8 22.0
|
||||
(signed word~) circle::$7 $7 zp ZP_WORD:2 22.0
|
||||
(signed word~) circle::$9 $9 zp ZP_WORD:10 22.0
|
||||
(label) circle::@1
|
||||
(label) circle::@10
|
||||
(label) circle::@11
|
||||
(label) circle::@12
|
||||
(label) circle::@13
|
||||
(label) circle::@2
|
||||
(label) circle::@3
|
||||
(label) circle::@4
|
||||
(label) circle::@5
|
||||
(label) circle::@6
|
||||
(label) circle::@7
|
||||
(label) circle::@8
|
||||
(label) circle::@9
|
||||
(label) circle::@return
|
||||
(signed word) circle::p
|
||||
(signed word) circle::p#1 p zp ZP_WORD:2 22.0
|
||||
(signed word) circle::p#10 p zp ZP_WORD:2 1.2692307692307692
|
||||
(signed word) circle::p#2 p zp ZP_WORD:2 22.0
|
||||
(signed word) circle::p#3 p zp ZP_WORD:2 6.285714285714286
|
||||
(signed word) circle::r
|
||||
(const signed word) circle::r#0 r = (signed byte) $32
|
||||
(signed word) circle::x1
|
||||
(signed word) circle::x1#1 x1 zp ZP_WORD:4 22.0
|
||||
(signed word) circle::x1#10 x1 zp ZP_WORD:4 3.9722222222222214
|
||||
(signed word) circle::xc
|
||||
(const signed word) circle::xc#0 xc = (signed byte) $64
|
||||
(signed word) circle::y
|
||||
(signed word) circle::y#1 y zp ZP_WORD:6 6.6000000000000005
|
||||
(signed word) circle::y#10 y zp ZP_WORD:6 4.653846153846153
|
||||
(signed word) circle::y#13 y zp ZP_WORD:6 7.333333333333333
|
||||
(signed word) circle::yc
|
||||
(const signed word) circle::yc#0 yc = (signed byte) $64
|
||||
(void()) fill((byte*) fill::start , (signed word) fill::size , (byte) fill::val)
|
||||
(label) fill::@1
|
||||
(label) fill::@2
|
||||
(label) fill::@return
|
||||
(byte*) fill::addr
|
||||
(byte*) fill::addr#0 addr zp ZP_WORD:6 2.0
|
||||
(byte*) fill::addr#1 addr zp ZP_WORD:6 22.0
|
||||
(byte*) fill::addr#2 addr zp ZP_WORD:6 15.333333333333332
|
||||
(byte*) fill::end
|
||||
(byte*) fill::end#0 end zp ZP_WORD:4 2.6
|
||||
(signed word) fill::size
|
||||
(signed word) fill::size#2 size zp ZP_WORD:4 2.0
|
||||
(byte*) fill::start
|
||||
(byte) fill::val
|
||||
(byte) fill::val#4 reg byte x 1.8333333333333333
|
||||
(void()) main()
|
||||
(label) main::@1
|
||||
(label) main::@2
|
||||
(label) main::@3
|
||||
(void()) plot((signed word) plot::x , (signed word) plot::y)
|
||||
(signed word~) plot::$0 $0 zp ZP_WORD:12 4.0
|
||||
(byte~) plot::$1 reg byte a 4.0
|
||||
(byte~) plot::$2 reg byte a 4.0
|
||||
(signed word~) plot::$3 $3 zp ZP_WORD:10 3.0
|
||||
(signed word~) plot::$4 $4 zp ZP_WORD:14 4.0
|
||||
(signed byte~) plot::$5 reg byte a 4.0
|
||||
(byte~) plot::$6 reg byte a 4.0
|
||||
(signed word) plot::$7 $7 zp ZP_WORD:14 4.0
|
||||
(signed word) plot::$8 $8 zp ZP_WORD:14 4.0
|
||||
(label) plot::@return
|
||||
(byte*) plot::location
|
||||
(byte*) plot::location#1 location zp ZP_WORD:12 1.3333333333333333
|
||||
(byte*) plot::location#2 location zp ZP_WORD:12 0.8
|
||||
(byte*) plot::location#3 location zp ZP_WORD:12 2.0
|
||||
(signed word) plot::x
|
||||
(signed word) plot::x#0 x zp ZP_WORD:8 11.0
|
||||
(signed word) plot::x#1 x zp ZP_WORD:8 11.0
|
||||
(signed word) plot::x#2 x zp ZP_WORD:8 11.0
|
||||
(signed word) plot::x#3 x zp ZP_WORD:8 11.0
|
||||
(signed word) plot::x#4 x zp ZP_WORD:8 11.0
|
||||
(signed word) plot::x#5 x zp ZP_WORD:8 11.0
|
||||
(signed word) plot::x#6 x zp ZP_WORD:8 11.0
|
||||
(signed word) plot::x#7 x zp ZP_WORD:8 11.0
|
||||
(signed word) plot::x#8 x zp ZP_WORD:8 8.363636363636363
|
||||
(signed word) plot::y
|
||||
(signed word) plot::y#0 y zp ZP_WORD:10 22.0
|
||||
(signed word) plot::y#1 y zp ZP_WORD:10 22.0
|
||||
(signed word) plot::y#2 y zp ZP_WORD:10 22.0
|
||||
(signed word) plot::y#3 y zp ZP_WORD:10 22.0
|
||||
(signed word) plot::y#4 y zp ZP_WORD:10 22.0
|
||||
(signed word) plot::y#5 y zp ZP_WORD:10 22.0
|
||||
(signed word) plot::y#6 y zp ZP_WORD:10 22.0
|
||||
(signed word) plot::y#7 y zp ZP_WORD:10 22.0
|
||||
(signed word) plot::y#8 y zp ZP_WORD:10 15.333333333333336
|
||||
|
||||
zp ZP_WORD:2 [ circle::p#3 circle::p#10 circle::p#1 circle::p#2 circle::$7 circle::$10 ]
|
||||
zp ZP_WORD:4 [ fill::size#2 fill::end#0 circle::x1#10 circle::x1#1 ]
|
||||
reg byte x [ fill::val#4 ]
|
||||
zp ZP_WORD:6 [ fill::addr#2 fill::addr#0 fill::addr#1 circle::y#13 circle::y#10 circle::y#1 ]
|
||||
zp ZP_WORD:8 [ circle::$5 circle::$6 plot::x#8 plot::x#1 plot::x#2 plot::x#3 plot::x#4 plot::x#5 plot::x#6 plot::x#7 plot::x#0 ]
|
||||
zp ZP_WORD:10 [ circle::$9 plot::y#8 plot::y#1 plot::y#2 plot::y#3 plot::y#4 plot::y#5 plot::y#6 plot::y#7 plot::y#0 plot::$3 ]
|
||||
zp ZP_WORD:12 [ plot::$0 plot::location#1 plot::location#2 plot::location#3 ]
|
||||
reg byte a [ plot::$1 ]
|
||||
reg byte a [ plot::$2 ]
|
||||
zp ZP_WORD:14 [ plot::$7 plot::$8 plot::$4 ]
|
||||
reg byte a [ plot::$5 ]
|
||||
reg byte a [ plot::$6 ]
|
@ -903,9 +903,11 @@ print_word_at: {
|
||||
clc
|
||||
adc #2
|
||||
sta.z print_byte_at.at
|
||||
bcc !+
|
||||
lda.z at+1
|
||||
adc #0
|
||||
sta.z print_byte_at.at+1
|
||||
!:
|
||||
// [25] call print_byte_at
|
||||
// [27] phi from print_word_at::@1 to print_byte_at [phi:print_word_at::@1->print_byte_at]
|
||||
print_byte_at_from_b1:
|
||||
@ -1128,17 +1130,17 @@ Uplift Scope [clock_start]
|
||||
Uplift Scope [RADIX]
|
||||
Uplift Scope []
|
||||
|
||||
Uplifting [main] best 1746 combination zp ZP_DWORD:16 [ main::$1 ] zp ZP_DWORD:20 [ main::cyclecount#0 ]
|
||||
Uplifting [clock] best 1746 combination zp ZP_DWORD:12 [ clock::return#2 ] zp ZP_DWORD:30 [ clock::return#0 ]
|
||||
Uplifting [print_char_at] best 1739 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:10 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 1731 combination zp ZP_WORD:7 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 1731 combination zp ZP_WORD:2 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:4 [ print_word_at::at#2 ]
|
||||
Uplifting [print_dword_at] best 1731 combination zp ZP_DWORD:24 [ print_dword_at::dw#0 ]
|
||||
Uplifting [clock_start] best 1731 combination
|
||||
Uplifting [RADIX] best 1731 combination
|
||||
Uplifting [] best 1731 combination
|
||||
Uplifting [main] best 1748 combination zp ZP_DWORD:16 [ main::$1 ] zp ZP_DWORD:20 [ main::cyclecount#0 ]
|
||||
Uplifting [clock] best 1748 combination zp ZP_DWORD:12 [ clock::return#2 ] zp ZP_DWORD:30 [ clock::return#0 ]
|
||||
Uplifting [print_char_at] best 1741 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:10 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 1733 combination zp ZP_WORD:7 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 1733 combination zp ZP_WORD:2 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:4 [ print_word_at::at#2 ]
|
||||
Uplifting [print_dword_at] best 1733 combination zp ZP_DWORD:24 [ print_dword_at::dw#0 ]
|
||||
Uplifting [clock_start] best 1733 combination
|
||||
Uplifting [RADIX] best 1733 combination
|
||||
Uplifting [] best 1733 combination
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 1731 combination zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 1733 combination zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Coalescing zero page register [ zp ZP_WORD:4 [ print_word_at::at#2 ] ] with [ zp ZP_WORD:7 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] ] - score: 2
|
||||
Coalescing zero page register [ zp ZP_DWORD:12 [ clock::return#2 ] ] with [ zp ZP_DWORD:16 [ main::$1 ] ] - score: 1
|
||||
Coalescing zero page register [ zp ZP_DWORD:12 [ clock::return#2 main::$1 ] ] with [ zp ZP_DWORD:30 [ clock::return#0 ] ] - score: 1
|
||||
|
@ -838,9 +838,11 @@ print_word_at: {
|
||||
clc
|
||||
adc #2
|
||||
sta.z print_byte_at.at
|
||||
bcc !+
|
||||
lda.z at+1
|
||||
adc #0
|
||||
sta.z print_byte_at.at+1
|
||||
!:
|
||||
// [22] call print_byte_at
|
||||
// [24] phi from print_word_at::@1 to print_byte_at [phi:print_word_at::@1->print_byte_at]
|
||||
print_byte_at_from_b1:
|
||||
@ -1057,17 +1059,17 @@ Uplift Scope [RADIX]
|
||||
Uplift Scope [main]
|
||||
Uplift Scope []
|
||||
|
||||
Uplifting [clock] best 1062 combination zp ZP_DWORD:12 [ clock::return#2 ] zp ZP_DWORD:22 [ clock::return#0 ]
|
||||
Uplifting [print_char_at] best 1055 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:10 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 1047 combination zp ZP_WORD:7 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 1047 combination zp ZP_WORD:2 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:4 [ print_word_at::at#2 ]
|
||||
Uplifting [print_dword_at] best 1047 combination zp ZP_DWORD:16 [ print_dword_at::dw#0 ]
|
||||
Uplifting [clock_start] best 1047 combination
|
||||
Uplifting [RADIX] best 1047 combination
|
||||
Uplifting [main] best 1047 combination
|
||||
Uplifting [] best 1047 combination
|
||||
Uplifting [clock] best 1064 combination zp ZP_DWORD:12 [ clock::return#2 ] zp ZP_DWORD:22 [ clock::return#0 ]
|
||||
Uplifting [print_char_at] best 1057 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:10 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 1049 combination zp ZP_WORD:7 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 1049 combination zp ZP_WORD:2 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:4 [ print_word_at::at#2 ]
|
||||
Uplifting [print_dword_at] best 1049 combination zp ZP_DWORD:16 [ print_dword_at::dw#0 ]
|
||||
Uplifting [clock_start] best 1049 combination
|
||||
Uplifting [RADIX] best 1049 combination
|
||||
Uplifting [main] best 1049 combination
|
||||
Uplifting [] best 1049 combination
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 1047 combination zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 1049 combination zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Coalescing zero page register [ zp ZP_WORD:4 [ print_word_at::at#2 ] ] with [ zp ZP_WORD:7 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] ] - score: 2
|
||||
Coalescing zero page register [ zp ZP_DWORD:12 [ clock::return#2 ] ] with [ zp ZP_DWORD:16 [ print_dword_at::dw#0 ] ] - score: 1
|
||||
Coalescing zero page register [ zp ZP_DWORD:12 [ clock::return#2 print_dword_at::dw#0 ] ] with [ zp ZP_DWORD:22 [ clock::return#0 ] ] - score: 1
|
||||
|
@ -3182,9 +3182,11 @@ print_word_at: {
|
||||
clc
|
||||
adc #2
|
||||
sta.z print_byte_at.at
|
||||
bcc !+
|
||||
lda.z at+1
|
||||
adc #0
|
||||
sta.z print_byte_at.at+1
|
||||
!:
|
||||
// [74] call print_byte_at
|
||||
// [76] phi from print_word_at::@1 to print_byte_at [phi:print_word_at::@1->print_byte_at]
|
||||
print_byte_at_from_b1:
|
||||
@ -4091,50 +4093,50 @@ Uplift Scope [RADIX]
|
||||
Uplift Scope [main]
|
||||
Uplift Scope []
|
||||
|
||||
Uplifting [anim] best 45223 combination zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] zp ZP_WORD:36 [ anim::$6 ] zp ZP_WORD:40 [ anim::$8 ] zp ZP_WORD:44 [ anim::$11 ] zp ZP_WORD:46 [ anim::$12 ] zp ZP_WORD:50 [ anim::$13 ] zp ZP_WORD:52 [ anim::$14 ] reg byte a [ anim::$20 ] reg byte a [ anim::$24 ] reg byte a [ anim::$27 ] zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] zp ZP_BYTE:56 [ anim::$17 ] zp ZP_BYTE:62 [ anim::i2#0 ] zp ZP_BYTE:61 [ anim::ypos#0 ] zp ZP_WORD:48 [ anim::xr#1 ] zp ZP_WORD:57 [ anim::xpos#0 ] zp ZP_WORD:54 [ anim::yr#1 ] zp ZP_BYTE:35 [ anim::y#0 ] zp ZP_DWORD:68 [ anim::$29 ] zp ZP_DWORD:72 [ anim::cyclecount#0 ] zp ZP_WORD:38 [ anim::xr#0 ] zp ZP_WORD:42 [ anim::yr#0 ] zp ZP_BYTE:34 [ anim::x#0 ] zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ]
|
||||
Uplifting [anim] best 45225 combination zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] zp ZP_WORD:36 [ anim::$6 ] zp ZP_WORD:40 [ anim::$8 ] zp ZP_WORD:44 [ anim::$11 ] zp ZP_WORD:46 [ anim::$12 ] zp ZP_WORD:50 [ anim::$13 ] zp ZP_WORD:52 [ anim::$14 ] reg byte a [ anim::$20 ] reg byte a [ anim::$24 ] reg byte a [ anim::$27 ] zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] zp ZP_BYTE:56 [ anim::$17 ] zp ZP_BYTE:62 [ anim::i2#0 ] zp ZP_BYTE:61 [ anim::ypos#0 ] zp ZP_WORD:48 [ anim::xr#1 ] zp ZP_WORD:57 [ anim::xpos#0 ] zp ZP_WORD:54 [ anim::yr#1 ] zp ZP_BYTE:35 [ anim::y#0 ] zp ZP_DWORD:68 [ anim::$29 ] zp ZP_DWORD:72 [ anim::cyclecount#0 ] zp ZP_WORD:38 [ anim::xr#0 ] zp ZP_WORD:42 [ anim::yr#0 ] zp ZP_BYTE:34 [ anim::x#0 ] zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ]
|
||||
Limited combination testing to 100 combinations of 2880 possible.
|
||||
Uplifting [mulf8s_prepared] best 44002 combination reg byte y [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] reg byte a [ mulf8s_prepared::$8 ] reg byte a [ mulf8s_prepared::$15 ] reg byte a [ mulf8s_prepared::$12 ] zp ZP_BYTE:92 [ mulf8s_prepared::$16 ]
|
||||
Uplifting [mulf8s_prepared] best 44004 combination reg byte y [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] reg byte a [ mulf8s_prepared::$8 ] reg byte a [ mulf8s_prepared::$15 ] reg byte a [ mulf8s_prepared::$12 ] zp ZP_BYTE:92 [ mulf8s_prepared::$16 ]
|
||||
Limited combination testing to 100 combinations of 512 possible.
|
||||
Uplifting [mulf8u_prepare] best 43399 combination reg byte a [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ]
|
||||
Uplifting [mulf_init] best 43149 combination zp ZP_WORD:32 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] zp ZP_WORD:26 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] zp ZP_WORD:20 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] reg byte x [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] reg byte a [ mulf_init::$9 ] reg byte a [ mulf_init::$12 ] reg byte a [ mulf_init::$13 ] zp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ] zp ZP_BYTE:31 [ mulf_init::dir#2 mulf_init::dir#4 ] zp ZP_BYTE:22 [ mulf_init::c#2 mulf_init::c#1 ] zp ZP_WORD:29 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] zp ZP_WORD:23 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ]
|
||||
Uplifting [mulf8u_prepare] best 43401 combination reg byte a [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ]
|
||||
Uplifting [mulf_init] best 43151 combination zp ZP_WORD:32 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] zp ZP_WORD:26 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] zp ZP_WORD:20 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] reg byte x [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] reg byte a [ mulf_init::$9 ] reg byte a [ mulf_init::$12 ] reg byte a [ mulf_init::$13 ] zp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ] zp ZP_BYTE:31 [ mulf_init::dir#2 mulf_init::dir#4 ] zp ZP_BYTE:22 [ mulf_init::c#2 mulf_init::c#1 ] zp ZP_WORD:29 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] zp ZP_WORD:23 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ]
|
||||
Limited combination testing to 100 combinations of 1024 possible.
|
||||
Uplifting [init] best 42999 combination reg byte x [ init::i#2 init::i#1 ]
|
||||
Uplifting [clock] best 42999 combination zp ZP_DWORD:64 [ clock::return#2 ] zp ZP_DWORD:82 [ clock::return#0 ]
|
||||
Uplifting [print_char_at] best 42992 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:13 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 42984 combination zp ZP_WORD:10 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 42984 combination zp ZP_WORD:5 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:7 [ print_word_at::at#2 ]
|
||||
Uplifting [mulf8u_prepared] best 42980 combination reg byte a [ mulf8u_prepared::b#0 ] zp ZP_WORD:87 [ mulf8u_prepared::return#2 ] zp ZP_WORD:93 [ mulf8u_prepared::return#0 ]
|
||||
Uplifting [print_dword_at] best 42980 combination zp ZP_DWORD:76 [ print_dword_at::dw#0 ]
|
||||
Uplifting [clock_start] best 42980 combination
|
||||
Uplifting [RADIX] best 42980 combination
|
||||
Uplifting [main] best 42980 combination
|
||||
Uplifting [] best 42980 combination
|
||||
Uplifting [init] best 43001 combination reg byte x [ init::i#2 init::i#1 ]
|
||||
Uplifting [clock] best 43001 combination zp ZP_DWORD:64 [ clock::return#2 ] zp ZP_DWORD:82 [ clock::return#0 ]
|
||||
Uplifting [print_char_at] best 42994 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:13 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 42986 combination zp ZP_WORD:10 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 42986 combination zp ZP_WORD:5 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:7 [ print_word_at::at#2 ]
|
||||
Uplifting [mulf8u_prepared] best 42982 combination reg byte a [ mulf8u_prepared::b#0 ] zp ZP_WORD:87 [ mulf8u_prepared::return#2 ] zp ZP_WORD:93 [ mulf8u_prepared::return#0 ]
|
||||
Uplifting [print_dword_at] best 42982 combination zp ZP_DWORD:76 [ print_dword_at::dw#0 ]
|
||||
Uplifting [clock_start] best 42982 combination
|
||||
Uplifting [RADIX] best 42982 combination
|
||||
Uplifting [main] best 42982 combination
|
||||
Uplifting [] best 42982 combination
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ]
|
||||
Uplifting [anim] best 42980 combination zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ]
|
||||
Uplifting [anim] best 42982 combination zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:3 [ anim::i#10 anim::i#1 ]
|
||||
Uplifting [anim] best 42980 combination zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ]
|
||||
Uplifting [anim] best 42982 combination zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:56 [ anim::$17 ]
|
||||
Uplifting [anim] best 42380 combination reg byte a [ anim::$17 ]
|
||||
Uplifting [anim] best 42382 combination reg byte a [ anim::$17 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:62 [ anim::i2#0 ]
|
||||
Uplifting [anim] best 41680 combination reg byte x [ anim::i2#0 ]
|
||||
Uplifting [anim] best 41682 combination reg byte x [ anim::i2#0 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:61 [ anim::ypos#0 ]
|
||||
Uplifting [anim] best 41480 combination reg byte y [ anim::ypos#0 ]
|
||||
Uplifting [anim] best 41482 combination reg byte y [ anim::ypos#0 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:35 [ anim::y#0 ]
|
||||
Uplifting [anim] best 41480 combination zp ZP_BYTE:35 [ anim::y#0 ]
|
||||
Uplifting [anim] best 41482 combination zp ZP_BYTE:35 [ anim::y#0 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:34 [ anim::x#0 ]
|
||||
Uplifting [anim] best 41480 combination zp ZP_BYTE:34 [ anim::x#0 ]
|
||||
Uplifting [anim] best 41482 combination zp ZP_BYTE:34 [ anim::x#0 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ]
|
||||
Uplifting [mulf_init] best 41340 combination reg byte x [ mulf_init::x_255#2 mulf_init::x_255#1 ]
|
||||
Uplifting [mulf_init] best 41342 combination reg byte x [ mulf_init::x_255#2 mulf_init::x_255#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:31 [ mulf_init::dir#2 mulf_init::dir#4 ]
|
||||
Uplifting [mulf_init] best 41340 combination zp ZP_BYTE:31 [ mulf_init::dir#2 mulf_init::dir#4 ]
|
||||
Uplifting [mulf_init] best 41342 combination zp ZP_BYTE:31 [ mulf_init::dir#2 mulf_init::dir#4 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:22 [ mulf_init::c#2 mulf_init::c#1 ]
|
||||
Uplifting [mulf_init] best 41340 combination zp ZP_BYTE:22 [ mulf_init::c#2 mulf_init::c#1 ]
|
||||
Uplifting [mulf_init] best 41342 combination zp ZP_BYTE:22 [ mulf_init::c#2 mulf_init::c#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 41340 combination zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 41342 combination zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:92 [ mulf8s_prepared::$16 ]
|
||||
Uplifting [mulf8s_prepared] best 41334 combination reg byte a [ mulf8s_prepared::$16 ]
|
||||
Uplifting [mulf8s_prepared] best 41336 combination reg byte a [ mulf8s_prepared::$16 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ]
|
||||
Uplifting [anim] best 41334 combination zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ]
|
||||
Uplifting [anim] best 41336 combination zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ]
|
||||
Coalescing zero page register [ zp ZP_WORD:7 [ print_word_at::at#2 ] ] with [ zp ZP_WORD:10 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] ] - score: 2
|
||||
Coalescing zero page register [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] ] with [ zp ZP_WORD:36 [ anim::$6 ] ] - score: 1
|
||||
Coalescing zero page register [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$6 ] ] with [ zp ZP_WORD:40 [ anim::$8 ] ] - score: 1
|
||||
|
@ -2960,9 +2960,11 @@ print_word_at: {
|
||||
clc
|
||||
adc #2
|
||||
sta.z print_byte_at.at
|
||||
bcc !+
|
||||
lda.z at+1
|
||||
adc #0
|
||||
sta.z print_byte_at.at+1
|
||||
!:
|
||||
// [32] call print_byte_at
|
||||
// [34] phi from print_word_at::@1 to print_byte_at [phi:print_word_at::@1->print_byte_at]
|
||||
print_byte_at_from_b1:
|
||||
@ -4060,47 +4062,47 @@ Uplift Scope [RADIX]
|
||||
Uplift Scope [clock_start]
|
||||
Uplift Scope []
|
||||
|
||||
Uplifting [atan2_16] best 1159771 combination reg byte y [ atan2_16::shift#2 atan2_16::shift#5 atan2_16::shift#1 ] zp ZP_WORD:29 [ atan2_16::yd#5 atan2_16::yd#3 atan2_16::yd#10 atan2_16::yd#1 atan2_16::yd#2 ] zp ZP_WORD:31 [ atan2_16::xd#5 atan2_16::xd#3 atan2_16::xd#10 atan2_16::xd#1 atan2_16::xd#2 ] zp ZP_WORD:24 [ atan2_16::angle#6 atan2_16::angle#12 atan2_16::angle#13 atan2_16::angle#2 atan2_16::angle#3 ] zp ZP_WORD:19 [ atan2_16::yi#3 atan2_16::yi#8 atan2_16::yi#0 atan2_16::yi#16 atan2_16::$2 atan2_16::yi#1 atan2_16::yi#2 ] zp ZP_WORD:21 [ atan2_16::xi#3 atan2_16::xi#8 atan2_16::xi#0 atan2_16::xi#13 atan2_16::$7 atan2_16::xi#1 atan2_16::xi#2 ] reg byte a [ atan2_16::$24 ] reg byte a [ atan2_16::$23 ] reg byte x [ atan2_16::i#2 atan2_16::i#1 ] zp ZP_WORD:76 [ atan2_16::return#2 ] zp ZP_WORD:26 [ atan2_16::return#0 atan2_16::angle#5 atan2_16::angle#11 atan2_16::angle#1 atan2_16::angle#4 ] zp ZP_WORD:72 [ atan2_16::x#0 ] zp ZP_WORD:74 [ atan2_16::y#0 ]
|
||||
Uplifting [atan2_16] best 1159773 combination reg byte y [ atan2_16::shift#2 atan2_16::shift#5 atan2_16::shift#1 ] zp ZP_WORD:29 [ atan2_16::yd#5 atan2_16::yd#3 atan2_16::yd#10 atan2_16::yd#1 atan2_16::yd#2 ] zp ZP_WORD:31 [ atan2_16::xd#5 atan2_16::xd#3 atan2_16::xd#10 atan2_16::xd#1 atan2_16::xd#2 ] zp ZP_WORD:24 [ atan2_16::angle#6 atan2_16::angle#12 atan2_16::angle#13 atan2_16::angle#2 atan2_16::angle#3 ] zp ZP_WORD:19 [ atan2_16::yi#3 atan2_16::yi#8 atan2_16::yi#0 atan2_16::yi#16 atan2_16::$2 atan2_16::yi#1 atan2_16::yi#2 ] zp ZP_WORD:21 [ atan2_16::xi#3 atan2_16::xi#8 atan2_16::xi#0 atan2_16::xi#13 atan2_16::$7 atan2_16::xi#1 atan2_16::xi#2 ] reg byte a [ atan2_16::$24 ] reg byte a [ atan2_16::$23 ] reg byte x [ atan2_16::i#2 atan2_16::i#1 ] zp ZP_WORD:76 [ atan2_16::return#2 ] zp ZP_WORD:26 [ atan2_16::return#0 atan2_16::angle#5 atan2_16::angle#11 atan2_16::angle#1 atan2_16::angle#4 ] zp ZP_WORD:72 [ atan2_16::x#0 ] zp ZP_WORD:74 [ atan2_16::y#0 ]
|
||||
Limited combination testing to 100 combinations of 144 possible.
|
||||
Uplifting [init_font_hex] best 1140771 combination reg byte x [ init_font_hex::i#2 init_font_hex::i#1 ] reg byte a [ init_font_hex::$1 ] reg byte a [ init_font_hex::$2 ] zp ZP_BYTE:42 [ init_font_hex::idx#5 init_font_hex::idx#2 ] zp ZP_BYTE:88 [ init_font_hex::$0 ] zp ZP_BYTE:91 [ init_font_hex::idx#3 ] zp ZP_WORD:36 [ init_font_hex::charset#2 init_font_hex::charset#5 init_font_hex::charset#0 ] zp ZP_BYTE:40 [ init_font_hex::c1#4 init_font_hex::c1#1 ] zp ZP_WORD:38 [ init_font_hex::proto_lo#4 init_font_hex::proto_lo#1 ] zp ZP_WORD:33 [ init_font_hex::proto_hi#6 init_font_hex::proto_hi#1 ] zp ZP_BYTE:35 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Uplifting [init_font_hex] best 1140773 combination reg byte x [ init_font_hex::i#2 init_font_hex::i#1 ] reg byte a [ init_font_hex::$1 ] reg byte a [ init_font_hex::$2 ] zp ZP_BYTE:42 [ init_font_hex::idx#5 init_font_hex::idx#2 ] zp ZP_BYTE:88 [ init_font_hex::$0 ] zp ZP_BYTE:91 [ init_font_hex::idx#3 ] zp ZP_WORD:36 [ init_font_hex::charset#2 init_font_hex::charset#5 init_font_hex::charset#0 ] zp ZP_BYTE:40 [ init_font_hex::c1#4 init_font_hex::c1#1 ] zp ZP_WORD:38 [ init_font_hex::proto_lo#4 init_font_hex::proto_lo#1 ] zp ZP_WORD:33 [ init_font_hex::proto_hi#6 init_font_hex::proto_hi#1 ] zp ZP_BYTE:35 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Limited combination testing to 100 combinations of 6912 possible.
|
||||
Uplifting [init_angle_screen] best 1139171 combination zp ZP_BYTE:18 [ init_angle_screen::xb#2 init_angle_screen::xb#1 ] reg byte a [ init_angle_screen::$3 ] reg byte a [ init_angle_screen::$4 ] reg byte a [ init_angle_screen::$7 ] zp ZP_WORD:78 [ init_angle_screen::angle_w#0 ] zp ZP_WORD:80 [ init_angle_screen::$11 ] zp ZP_BYTE:83 [ init_angle_screen::$13 ] zp ZP_BYTE:84 [ init_angle_screen::$14 ] zp ZP_BYTE:85 [ init_angle_screen::$15 ] zp ZP_BYTE:17 [ init_angle_screen::x#2 init_angle_screen::x#1 ] zp ZP_BYTE:82 [ init_angle_screen::ang_w#0 ] zp ZP_WORD:70 [ init_angle_screen::yw#0 ] zp ZP_WORD:67 [ init_angle_screen::xw#0 ] zp ZP_BYTE:12 [ init_angle_screen::y#5 init_angle_screen::y#1 ] zp ZP_WORD:15 [ init_angle_screen::screen_bottomline#6 init_angle_screen::screen_bottomline#1 ] zp ZP_WORD:13 [ init_angle_screen::screen_topline#6 init_angle_screen::screen_topline#1 ]
|
||||
Uplifting [init_angle_screen] best 1139173 combination zp ZP_BYTE:18 [ init_angle_screen::xb#2 init_angle_screen::xb#1 ] reg byte a [ init_angle_screen::$3 ] reg byte a [ init_angle_screen::$4 ] reg byte a [ init_angle_screen::$7 ] zp ZP_WORD:78 [ init_angle_screen::angle_w#0 ] zp ZP_WORD:80 [ init_angle_screen::$11 ] zp ZP_BYTE:83 [ init_angle_screen::$13 ] zp ZP_BYTE:84 [ init_angle_screen::$14 ] zp ZP_BYTE:85 [ init_angle_screen::$15 ] zp ZP_BYTE:17 [ init_angle_screen::x#2 init_angle_screen::x#1 ] zp ZP_BYTE:82 [ init_angle_screen::ang_w#0 ] zp ZP_WORD:70 [ init_angle_screen::yw#0 ] zp ZP_WORD:67 [ init_angle_screen::xw#0 ] zp ZP_BYTE:12 [ init_angle_screen::y#5 init_angle_screen::y#1 ] zp ZP_WORD:15 [ init_angle_screen::screen_bottomline#6 init_angle_screen::screen_bottomline#1 ] zp ZP_WORD:13 [ init_angle_screen::screen_topline#6 init_angle_screen::screen_topline#1 ]
|
||||
Limited combination testing to 100 combinations of 65536 possible.
|
||||
Uplifting [print_char_at] best 1139164 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:10 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 1139156 combination zp ZP_WORD:7 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 1139156 combination zp ZP_WORD:2 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:4 [ print_word_at::at#2 ]
|
||||
Uplifting [main] best 1139156 combination zp ZP_DWORD:47 [ main::$4 ] zp ZP_DWORD:51 [ main::cyclecount#0 ]
|
||||
Uplifting [clock] best 1139156 combination zp ZP_DWORD:43 [ clock::return#2 ] zp ZP_DWORD:61 [ clock::return#0 ]
|
||||
Uplifting [print_dword_at] best 1139156 combination zp ZP_DWORD:55 [ print_dword_at::dw#0 ]
|
||||
Uplifting [RADIX] best 1139156 combination
|
||||
Uplifting [clock_start] best 1139156 combination
|
||||
Uplifting [] best 1139156 combination
|
||||
Uplifting [print_char_at] best 1139166 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:10 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 1139158 combination zp ZP_WORD:7 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 1139158 combination zp ZP_WORD:2 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:4 [ print_word_at::at#2 ]
|
||||
Uplifting [main] best 1139158 combination zp ZP_DWORD:47 [ main::$4 ] zp ZP_DWORD:51 [ main::cyclecount#0 ]
|
||||
Uplifting [clock] best 1139158 combination zp ZP_DWORD:43 [ clock::return#2 ] zp ZP_DWORD:61 [ clock::return#0 ]
|
||||
Uplifting [print_dword_at] best 1139158 combination zp ZP_DWORD:55 [ print_dword_at::dw#0 ]
|
||||
Uplifting [RADIX] best 1139158 combination
|
||||
Uplifting [clock_start] best 1139158 combination
|
||||
Uplifting [] best 1139158 combination
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:42 [ init_font_hex::idx#5 init_font_hex::idx#2 ]
|
||||
Uplifting [init_font_hex] best 1139156 combination zp ZP_BYTE:42 [ init_font_hex::idx#5 init_font_hex::idx#2 ]
|
||||
Uplifting [init_font_hex] best 1139158 combination zp ZP_BYTE:42 [ init_font_hex::idx#5 init_font_hex::idx#2 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:88 [ init_font_hex::$0 ]
|
||||
Uplifting [init_font_hex] best 1139156 combination zp ZP_BYTE:88 [ init_font_hex::$0 ]
|
||||
Uplifting [init_font_hex] best 1139158 combination zp ZP_BYTE:88 [ init_font_hex::$0 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:18 [ init_angle_screen::xb#2 init_angle_screen::xb#1 ]
|
||||
Uplifting [init_angle_screen] best 1139156 combination zp ZP_BYTE:18 [ init_angle_screen::xb#2 init_angle_screen::xb#1 ]
|
||||
Uplifting [init_angle_screen] best 1139158 combination zp ZP_BYTE:18 [ init_angle_screen::xb#2 init_angle_screen::xb#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:83 [ init_angle_screen::$13 ]
|
||||
Uplifting [init_angle_screen] best 1138556 combination reg byte a [ init_angle_screen::$13 ]
|
||||
Uplifting [init_angle_screen] best 1138558 combination reg byte a [ init_angle_screen::$13 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:84 [ init_angle_screen::$14 ]
|
||||
Uplifting [init_angle_screen] best 1138156 combination reg byte a [ init_angle_screen::$14 ]
|
||||
Uplifting [init_angle_screen] best 1138158 combination reg byte a [ init_angle_screen::$14 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:85 [ init_angle_screen::$15 ]
|
||||
Uplifting [init_angle_screen] best 1137556 combination reg byte a [ init_angle_screen::$15 ]
|
||||
Uplifting [init_angle_screen] best 1137558 combination reg byte a [ init_angle_screen::$15 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:91 [ init_font_hex::idx#3 ]
|
||||
Uplifting [init_font_hex] best 1136956 combination reg byte y [ init_font_hex::idx#3 ]
|
||||
Uplifting [init_font_hex] best 1136958 combination reg byte y [ init_font_hex::idx#3 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:40 [ init_font_hex::c1#4 init_font_hex::c1#1 ]
|
||||
Uplifting [init_font_hex] best 1136956 combination zp ZP_BYTE:40 [ init_font_hex::c1#4 init_font_hex::c1#1 ]
|
||||
Uplifting [init_font_hex] best 1136958 combination zp ZP_BYTE:40 [ init_font_hex::c1#4 init_font_hex::c1#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:17 [ init_angle_screen::x#2 init_angle_screen::x#1 ]
|
||||
Uplifting [init_angle_screen] best 1136956 combination zp ZP_BYTE:17 [ init_angle_screen::x#2 init_angle_screen::x#1 ]
|
||||
Uplifting [init_angle_screen] best 1136958 combination zp ZP_BYTE:17 [ init_angle_screen::x#2 init_angle_screen::x#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:82 [ init_angle_screen::ang_w#0 ]
|
||||
Uplifting [init_angle_screen] best 1136956 combination zp ZP_BYTE:82 [ init_angle_screen::ang_w#0 ]
|
||||
Uplifting [init_angle_screen] best 1136958 combination zp ZP_BYTE:82 [ init_angle_screen::ang_w#0 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:12 [ init_angle_screen::y#5 init_angle_screen::y#1 ]
|
||||
Uplifting [init_angle_screen] best 1136956 combination zp ZP_BYTE:12 [ init_angle_screen::y#5 init_angle_screen::y#1 ]
|
||||
Uplifting [init_angle_screen] best 1136958 combination zp ZP_BYTE:12 [ init_angle_screen::y#5 init_angle_screen::y#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:35 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Uplifting [init_font_hex] best 1136956 combination zp ZP_BYTE:35 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Uplifting [init_font_hex] best 1136958 combination zp ZP_BYTE:35 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 1136956 combination zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 1136958 combination zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Coalescing zero page register [ zp ZP_WORD:4 [ print_word_at::at#2 ] ] with [ zp ZP_WORD:7 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] ] - score: 2
|
||||
Coalescing zero page register [ zp ZP_WORD:24 [ atan2_16::angle#6 atan2_16::angle#12 atan2_16::angle#13 atan2_16::angle#2 atan2_16::angle#3 ] ] with [ zp ZP_WORD:26 [ atan2_16::return#0 atan2_16::angle#5 atan2_16::angle#11 atan2_16::angle#1 atan2_16::angle#4 ] ] - score: 1
|
||||
Coalescing zero page register [ zp ZP_DWORD:43 [ clock::return#2 ] ] with [ zp ZP_DWORD:47 [ main::$4 ] ] - score: 1
|
||||
|
@ -3456,9 +3456,11 @@ print_word_at: {
|
||||
clc
|
||||
adc #2
|
||||
sta.z print_byte_at.at
|
||||
bcc !+
|
||||
lda.z at+1
|
||||
adc #0
|
||||
sta.z print_byte_at.at+1
|
||||
!:
|
||||
// [32] call print_byte_at
|
||||
// [34] phi from print_word_at::@1 to print_byte_at [phi:print_word_at::@1->print_byte_at]
|
||||
print_byte_at_from_b1:
|
||||
@ -4665,46 +4667,46 @@ Uplift Scope [RADIX]
|
||||
Uplift Scope [clock_start]
|
||||
Uplift Scope []
|
||||
|
||||
Uplifting [bsearch16u] best 263251 combination reg byte x [ bsearch16u::num#5 bsearch16u::num#1 bsearch16u::num#3 bsearch16u::num#0 ] zp ZP_WORD:23 [ bsearch16u::return#1 bsearch16u::return#6 bsearch16u::return#2 bsearch16u::items#2 bsearch16u::items#8 bsearch16u::$2 bsearch16u::items#0 ] reg byte a [ bsearch16u::$6 ] reg byte a [ bsearch16u::$16 ] zp ZP_WORD:95 [ bsearch16u::result#0 ] zp ZP_WORD:93 [ bsearch16u::pivot#0 ] zp ZP_WORD:82 [ bsearch16u::return#3 ] zp ZP_WORD:80 [ bsearch16u::key#0 ]
|
||||
Uplifting [init_font_hex] best 244251 combination reg byte x [ init_font_hex::i#2 init_font_hex::i#1 ] reg byte a [ init_font_hex::$1 ] reg byte a [ init_font_hex::$2 ] zp ZP_BYTE:41 [ init_font_hex::idx#5 init_font_hex::idx#2 ] zp ZP_BYTE:102 [ init_font_hex::$0 ] zp ZP_BYTE:105 [ init_font_hex::idx#3 ] zp ZP_WORD:35 [ init_font_hex::charset#2 init_font_hex::charset#5 init_font_hex::charset#0 ] zp ZP_BYTE:39 [ init_font_hex::c1#4 init_font_hex::c1#1 ] zp ZP_WORD:37 [ init_font_hex::proto_lo#4 init_font_hex::proto_lo#1 ] zp ZP_WORD:32 [ init_font_hex::proto_hi#6 init_font_hex::proto_hi#1 ] zp ZP_BYTE:34 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Uplifting [bsearch16u] best 263253 combination reg byte x [ bsearch16u::num#5 bsearch16u::num#1 bsearch16u::num#3 bsearch16u::num#0 ] zp ZP_WORD:23 [ bsearch16u::return#1 bsearch16u::return#6 bsearch16u::return#2 bsearch16u::items#2 bsearch16u::items#8 bsearch16u::$2 bsearch16u::items#0 ] reg byte a [ bsearch16u::$6 ] reg byte a [ bsearch16u::$16 ] zp ZP_WORD:95 [ bsearch16u::result#0 ] zp ZP_WORD:93 [ bsearch16u::pivot#0 ] zp ZP_WORD:82 [ bsearch16u::return#3 ] zp ZP_WORD:80 [ bsearch16u::key#0 ]
|
||||
Uplifting [init_font_hex] best 244253 combination reg byte x [ init_font_hex::i#2 init_font_hex::i#1 ] reg byte a [ init_font_hex::$1 ] reg byte a [ init_font_hex::$2 ] zp ZP_BYTE:41 [ init_font_hex::idx#5 init_font_hex::idx#2 ] zp ZP_BYTE:102 [ init_font_hex::$0 ] zp ZP_BYTE:105 [ init_font_hex::idx#3 ] zp ZP_WORD:35 [ init_font_hex::charset#2 init_font_hex::charset#5 init_font_hex::charset#0 ] zp ZP_BYTE:39 [ init_font_hex::c1#4 init_font_hex::c1#1 ] zp ZP_WORD:37 [ init_font_hex::proto_lo#4 init_font_hex::proto_lo#1 ] zp ZP_WORD:32 [ init_font_hex::proto_hi#6 init_font_hex::proto_hi#1 ] zp ZP_BYTE:34 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Limited combination testing to 100 combinations of 6912 possible.
|
||||
Uplifting [init_dist_screen] best 241051 combination reg byte a [ init_dist_screen::xd#0 init_dist_screen::$16 init_dist_screen::$14 ] zp ZP_BYTE:21 [ init_dist_screen::xb#2 init_dist_screen::xb#1 ] reg byte a [ init_dist_screen::x2#0 ] zp ZP_WORD:72 [ init_dist_screen::xds#0 ] zp ZP_WORD:74 [ init_dist_screen::ds#0 ] zp ZP_BYTE:20 [ init_dist_screen::x#2 init_dist_screen::x#1 ] reg byte a [ init_dist_screen::d#0 ] zp ZP_BYTE:19 [ init_dist_screen::yd#0 init_dist_screen::$7 init_dist_screen::$5 ] zp ZP_BYTE:64 [ init_dist_screen::y2#0 ] zp ZP_BYTE:14 [ init_dist_screen::y#10 init_dist_screen::y#1 ] zp ZP_WORD:17 [ init_dist_screen::screen_bottomline#11 init_dist_screen::screen_bottomline#1 ] zp ZP_WORD:15 [ init_dist_screen::screen_topline#11 init_dist_screen::screen_topline#1 ] zp ZP_WORD:67 [ init_dist_screen::yds#0 ]
|
||||
Uplifting [init_dist_screen] best 241053 combination reg byte a [ init_dist_screen::xd#0 init_dist_screen::$16 init_dist_screen::$14 ] zp ZP_BYTE:21 [ init_dist_screen::xb#2 init_dist_screen::xb#1 ] reg byte a [ init_dist_screen::x2#0 ] zp ZP_WORD:72 [ init_dist_screen::xds#0 ] zp ZP_WORD:74 [ init_dist_screen::ds#0 ] zp ZP_BYTE:20 [ init_dist_screen::x#2 init_dist_screen::x#1 ] reg byte a [ init_dist_screen::d#0 ] zp ZP_BYTE:19 [ init_dist_screen::yd#0 init_dist_screen::$7 init_dist_screen::$5 ] zp ZP_BYTE:64 [ init_dist_screen::y2#0 ] zp ZP_BYTE:14 [ init_dist_screen::y#10 init_dist_screen::y#1 ] zp ZP_WORD:17 [ init_dist_screen::screen_bottomline#11 init_dist_screen::screen_bottomline#1 ] zp ZP_WORD:15 [ init_dist_screen::screen_topline#11 init_dist_screen::screen_topline#1 ] zp ZP_WORD:67 [ init_dist_screen::yds#0 ]
|
||||
Limited combination testing to 100 combinations of 6144 possible.
|
||||
Uplifting [sqr] best 240714 combination reg byte a [ sqr::val#2 sqr::val#1 sqr::val#0 ] zp ZP_WORD:70 [ sqr::return#3 ] zp ZP_WORD:98 [ sqr::return#0 ] zp ZP_WORD:65 [ sqr::return#2 ] reg byte a [ sqr::$0 ]
|
||||
Uplifting [sqrt] best 239811 combination reg byte a [ sqrt::return#2 ] zp ZP_WORD:76 [ sqrt::val#0 ] reg byte a [ sqrt::return#0 ] zp ZP_WORD:84 [ sqrt::found#0 ] zp ZP_WORD:86 [ sqrt::$3 ] zp ZP_WORD:88 [ sqrt::$1 ]
|
||||
Uplifting [init_squares] best 239611 combination reg byte x [ init_squares::i#2 init_squares::i#1 ] reg byte a [ init_squares::$3 ] reg byte a [ init_squares::$4 ] zp ZP_WORD:29 [ init_squares::squares#2 init_squares::squares#1 ] zp ZP_WORD:27 [ init_squares::sqr#2 init_squares::sqr#1 ]
|
||||
Uplifting [print_char_at] best 239604 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:12 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 239596 combination zp ZP_WORD:9 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 239596 combination zp ZP_WORD:2 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:4 [ print_word_at::at#2 ]
|
||||
Uplifting [main] best 239596 combination zp ZP_DWORD:46 [ main::$4 ] zp ZP_DWORD:50 [ main::cyclecount#0 ]
|
||||
Uplifting [clock] best 239596 combination zp ZP_DWORD:42 [ clock::return#2 ] zp ZP_DWORD:60 [ clock::return#0 ]
|
||||
Uplifting [print_dword_at] best 239596 combination zp ZP_DWORD:54 [ print_dword_at::dw#0 ]
|
||||
Uplifting [malloc] best 239596 combination
|
||||
Uplifting [RADIX] best 239596 combination
|
||||
Uplifting [clock_start] best 239596 combination
|
||||
Uplifting [] best 239596 combination
|
||||
Uplifting [sqr] best 240716 combination reg byte a [ sqr::val#2 sqr::val#1 sqr::val#0 ] zp ZP_WORD:70 [ sqr::return#3 ] zp ZP_WORD:98 [ sqr::return#0 ] zp ZP_WORD:65 [ sqr::return#2 ] reg byte a [ sqr::$0 ]
|
||||
Uplifting [sqrt] best 239813 combination reg byte a [ sqrt::return#2 ] zp ZP_WORD:76 [ sqrt::val#0 ] reg byte a [ sqrt::return#0 ] zp ZP_WORD:84 [ sqrt::found#0 ] zp ZP_WORD:86 [ sqrt::$3 ] zp ZP_WORD:88 [ sqrt::$1 ]
|
||||
Uplifting [init_squares] best 239613 combination reg byte x [ init_squares::i#2 init_squares::i#1 ] reg byte a [ init_squares::$3 ] reg byte a [ init_squares::$4 ] zp ZP_WORD:29 [ init_squares::squares#2 init_squares::squares#1 ] zp ZP_WORD:27 [ init_squares::sqr#2 init_squares::sqr#1 ]
|
||||
Uplifting [print_char_at] best 239606 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:12 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ]
|
||||
Uplifting [print_byte_at] best 239598 combination zp ZP_WORD:9 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ]
|
||||
Uplifting [print_word_at] best 239598 combination zp ZP_WORD:2 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:4 [ print_word_at::at#2 ]
|
||||
Uplifting [main] best 239598 combination zp ZP_DWORD:46 [ main::$4 ] zp ZP_DWORD:50 [ main::cyclecount#0 ]
|
||||
Uplifting [clock] best 239598 combination zp ZP_DWORD:42 [ clock::return#2 ] zp ZP_DWORD:60 [ clock::return#0 ]
|
||||
Uplifting [print_dword_at] best 239598 combination zp ZP_DWORD:54 [ print_dword_at::dw#0 ]
|
||||
Uplifting [malloc] best 239598 combination
|
||||
Uplifting [RADIX] best 239598 combination
|
||||
Uplifting [clock_start] best 239598 combination
|
||||
Uplifting [] best 239598 combination
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:41 [ init_font_hex::idx#5 init_font_hex::idx#2 ]
|
||||
Uplifting [init_font_hex] best 239596 combination zp ZP_BYTE:41 [ init_font_hex::idx#5 init_font_hex::idx#2 ]
|
||||
Uplifting [init_font_hex] best 239598 combination zp ZP_BYTE:41 [ init_font_hex::idx#5 init_font_hex::idx#2 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:102 [ init_font_hex::$0 ]
|
||||
Uplifting [init_font_hex] best 239596 combination zp ZP_BYTE:102 [ init_font_hex::$0 ]
|
||||
Uplifting [init_font_hex] best 239598 combination zp ZP_BYTE:102 [ init_font_hex::$0 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:21 [ init_dist_screen::xb#2 init_dist_screen::xb#1 ]
|
||||
Uplifting [init_dist_screen] best 239596 combination zp ZP_BYTE:21 [ init_dist_screen::xb#2 init_dist_screen::xb#1 ]
|
||||
Uplifting [init_dist_screen] best 239598 combination zp ZP_BYTE:21 [ init_dist_screen::xb#2 init_dist_screen::xb#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:105 [ init_font_hex::idx#3 ]
|
||||
Uplifting [init_font_hex] best 238996 combination reg byte y [ init_font_hex::idx#3 ]
|
||||
Uplifting [init_font_hex] best 238998 combination reg byte y [ init_font_hex::idx#3 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:39 [ init_font_hex::c1#4 init_font_hex::c1#1 ]
|
||||
Uplifting [init_font_hex] best 238996 combination zp ZP_BYTE:39 [ init_font_hex::c1#4 init_font_hex::c1#1 ]
|
||||
Uplifting [init_font_hex] best 238998 combination zp ZP_BYTE:39 [ init_font_hex::c1#4 init_font_hex::c1#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:20 [ init_dist_screen::x#2 init_dist_screen::x#1 ]
|
||||
Uplifting [init_dist_screen] best 238996 combination zp ZP_BYTE:20 [ init_dist_screen::x#2 init_dist_screen::x#1 ]
|
||||
Uplifting [init_dist_screen] best 238998 combination zp ZP_BYTE:20 [ init_dist_screen::x#2 init_dist_screen::x#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:19 [ init_dist_screen::yd#0 init_dist_screen::$7 init_dist_screen::$5 ]
|
||||
Uplifting [init_dist_screen] best 238926 combination reg byte a [ init_dist_screen::yd#0 init_dist_screen::$7 init_dist_screen::$5 ]
|
||||
Uplifting [init_dist_screen] best 238928 combination reg byte a [ init_dist_screen::yd#0 init_dist_screen::$7 init_dist_screen::$5 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:64 [ init_dist_screen::y2#0 ]
|
||||
Uplifting [init_dist_screen] best 238826 combination reg byte a [ init_dist_screen::y2#0 ]
|
||||
Uplifting [init_dist_screen] best 238828 combination reg byte a [ init_dist_screen::y2#0 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:34 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Uplifting [init_font_hex] best 238826 combination zp ZP_BYTE:34 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Uplifting [init_font_hex] best 238828 combination zp ZP_BYTE:34 [ init_font_hex::c#6 init_font_hex::c#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:14 [ init_dist_screen::y#10 init_dist_screen::y#1 ]
|
||||
Uplifting [init_dist_screen] best 238826 combination zp ZP_BYTE:14 [ init_dist_screen::y#10 init_dist_screen::y#1 ]
|
||||
Uplifting [init_dist_screen] best 238828 combination zp ZP_BYTE:14 [ init_dist_screen::y#10 init_dist_screen::y#1 ]
|
||||
Attempting to uplift remaining variables inzp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 238826 combination zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Uplifting [print_byte_at] best 238828 combination zp ZP_BYTE:6 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ]
|
||||
Coalescing zero page register [ zp ZP_WORD:4 [ print_word_at::at#2 ] ] with [ zp ZP_WORD:9 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] ] - score: 2
|
||||
Coalescing zero page register [ zp ZP_WORD:23 [ bsearch16u::return#1 bsearch16u::return#6 bsearch16u::return#2 bsearch16u::items#2 bsearch16u::items#8 bsearch16u::$2 bsearch16u::items#0 ] ] with [ zp ZP_WORD:82 [ bsearch16u::return#3 ] ] - score: 1
|
||||
Coalescing zero page register [ zp ZP_DWORD:42 [ clock::return#2 ] ] with [ zp ZP_DWORD:46 [ main::$4 ] ] - score: 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user