1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-01 16:57:43 +00:00
kickc/src/test/ref/declared-memory-var-1.log

311 lines
10 KiB
Plaintext
Raw Normal View History

Setting inferred volatile on symbol affected by address-of (byte*) idx_p ← &(byte) idx
Inlined call call __init
2019-09-26 12:53:33 +00:00
CONTROL FLOW GRAPH SSA
(void()) main()
main: scope:[main] from __start::@1
2019-09-26 12:53:33 +00:00
(byte) main::i#0 ← (byte) 0
to:main::@1
main::@1: scope:[main] from main main::@1
(byte) main::i#2 ← phi( main/(byte) main::i#0 main::@1/(byte) main::i#1 )
*((const nomodify byte*) SCREEN + (byte) main::i#2) ← *((const byte*) idx_p)
*((const byte*) idx_p) ← *((const byte*) idx_p) + (byte) main::i#2
2019-09-26 12:53:33 +00:00
(byte) main::i#1 ← (byte) main::i#2 + rangenext(0,5)
(bool~) main::$0 ← (byte) main::i#1 != rangelast(0,5)
if((bool~) main::$0) goto main::@1
to:main::@return
main::@return: scope:[main] from main::@1
return
to:@return
2020-06-27 19:18:00 +00:00
(void()) __start()
__start: scope:[__start] from
to:__start::__init1
__start::__init1: scope:[__start] from __start
to:__start::@1
__start::@1: scope:[__start] from __start::__init1
2019-09-26 12:53:33 +00:00
call main
to:__start::@2
__start::@2: scope:[__start] from __start::@1
to:__start::@return
__start::@return: scope:[__start] from __start::@2
2020-06-27 19:18:00 +00:00
return
to:@return
2019-09-26 12:53:33 +00:00
SYMBOL TABLE SSA
(const nomodify byte*) SCREEN = (byte*)(number) $400
(void()) __start()
(label) __start::@1
(label) __start::@2
(label) __start::@return
(label) __start::__init1
(volatile byte) idx loadstore = (byte) 0
(const byte*) idx_p = &(volatile byte) idx
2019-09-26 12:53:33 +00:00
(void()) main()
(bool~) main::$0
(label) main::@1
(label) main::@return
(byte) main::i
(byte) main::i#0
(byte) main::i#1
(byte) main::i#2
Simplifying constant pointer cast (byte*) 1024
Successful SSA optimization PassNCastSimplification
Simple Condition (bool~) main::$0 [6] if((byte) main::i#1!=rangelast(0,5)) goto main::@1
2019-09-26 12:53:33 +00:00
Successful SSA optimization Pass2ConditionalJumpSimplification
Constant (const byte) main::i#0 = 0
Successful SSA optimization Pass2ConstantIdentification
Resolved ranged next value [4] main::i#1 ← ++ main::i#2 to ++
Resolved ranged comparison value [6] if(main::i#1!=rangelast(0,5)) goto main::@1 to (number) 6
Removing unused procedure __start
Removing unused procedure block __start
Removing unused procedure block __start::__init1
Removing unused procedure block __start::@1
Removing unused procedure block __start::@2
Removing unused procedure block __start::@return
2020-06-27 19:18:00 +00:00
Successful SSA optimization PassNEliminateEmptyStart
Adding number conversion cast (unumber) 6 in [4] if((byte) main::i#1!=(number) 6) goto main::@1
2019-09-26 12:53:33 +00:00
Successful SSA optimization PassNAddNumberTypeConversions
Simplifying constant integer cast 6
Successful SSA optimization PassNCastSimplification
Finalized unsigned number type (byte) 6
Successful SSA optimization PassNFinalizeNumberTypeConversions
Inlining constant with var siblings (const byte) main::i#0
Constant inlined main::i#0 = (byte) 0
Successful SSA optimization Pass2ConstantInlining
Added new block during phi lifting main::@2(between main::@1 and main::@1)
2019-09-26 12:53:33 +00:00
Adding NOP phi() at start of main
CALL GRAPH
Created 1 initial phi equivalence classes
2020-06-27 19:18:00 +00:00
Coalesced [7] main::i#3 ← main::i#1
2019-09-26 12:53:33 +00:00
Coalesced down to 1 phi equivalence classes
Culled Empty Block (label) main::@2
2019-09-26 12:53:33 +00:00
Adding NOP phi() at start of main
FINAL CONTROL FLOW GRAPH
(void()) main()
2020-06-27 19:18:00 +00:00
main: scope:[main] from
[0] phi()
2019-09-26 12:53:33 +00:00
to:main::@1
main::@1: scope:[main] from main main::@1
2020-06-27 19:18:00 +00:00
[1] (byte) main::i#2 ← phi( main/(byte) 0 main::@1/(byte) main::i#1 )
[2] *((const nomodify byte*) SCREEN + (byte) main::i#2) ← *((const byte*) idx_p)
[3] *((const byte*) idx_p) ← *((const byte*) idx_p) + (byte) main::i#2
[4] (byte) main::i#1 ← ++ (byte) main::i#2
[5] if((byte) main::i#1!=(byte) 6) goto main::@1
2019-09-26 12:53:33 +00:00
to:main::@return
main::@return: scope:[main] from main::@1
2020-06-27 19:18:00 +00:00
[6] return
2019-09-26 12:53:33 +00:00
to:@return
VARIABLE REGISTER WEIGHTS
(volatile byte) idx loadstore = (byte) 0
2019-09-26 12:53:33 +00:00
(void()) main()
(byte) main::i
2020-06-27 19:18:00 +00:00
(byte) main::i#1 16.5
(byte) main::i#2 14.666666666666666
2019-09-26 12:53:33 +00:00
Initial phi equivalence classes
[ main::i#2 main::i#1 ]
2019-12-08 15:04:35 +00:00
Added variable idx to live range equivalence class [ idx ]
2019-09-26 12:53:33 +00:00
Complete equivalence classes
[ main::i#2 main::i#1 ]
[ idx ]
2019-10-12 09:40:36 +00:00
Allocated zp[1]:2 [ main::i#2 main::i#1 ]
Allocated mem[1] [ idx ]
2019-09-26 12:53:33 +00:00
INITIAL ASM
Target platform is c64basic / MOS6502X
// File Comments
// Test declaring a variable as "memory", meaning it will be stored in memory and accessed through an implicit pointer (using load/store)
2019-09-26 13:05:50 +00:00
// Test a pointer to a memory variable
2019-09-26 12:53:33 +00:00
// Upstart
.pc = $801 "Basic"
:BasicUpstart(main)
2019-09-26 12:53:33 +00:00
.pc = $80d "Program"
// Global Constants & labels
.label SCREEN = $400
.label idx_p = idx
2019-09-26 12:53:33 +00:00
// main
main: {
.label i = 2
2020-06-27 19:18:00 +00:00
// [1] phi from main to main::@1 [phi:main->main::@1]
__b1_from_main:
2020-06-27 19:18:00 +00:00
// [1] phi (byte) main::i#2 = (byte) 0 [phi:main->main::@1#0] -- vbuz1=vbuc1
2019-09-26 12:53:33 +00:00
lda #0
sta.z i
jmp __b1
2020-06-27 19:18:00 +00:00
// [1] phi from main::@1 to main::@1 [phi:main::@1->main::@1]
__b1_from___b1:
2020-06-27 19:18:00 +00:00
// [1] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@1->main::@1#0] -- register_copy
jmp __b1
2019-09-26 12:53:33 +00:00
// main::@1
__b1:
2020-06-27 19:18:00 +00:00
// [2] *((const nomodify byte*) SCREEN + (byte) main::i#2) ← *((const byte*) idx_p) -- pbuc1_derefidx_vbuz1=_deref_pbuc2
lda idx_p
ldy.z i
sta SCREEN,y
2020-06-27 19:18:00 +00:00
// [3] *((const byte*) idx_p) ← *((const byte*) idx_p) + (byte) main::i#2 -- _deref_pbuc1=_deref_pbuc1_plus_vbuz1
lda idx_p
2019-09-26 12:53:33 +00:00
clc
adc.z i
sta idx_p
2020-06-27 19:18:00 +00:00
// [4] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuz1=_inc_vbuz1
2019-09-26 12:53:33 +00:00
inc.z i
2020-06-27 19:18:00 +00:00
// [5] if((byte) main::i#1!=(byte) 6) goto main::@1 -- vbuz1_neq_vbuc1_then_la1
2019-09-26 12:53:33 +00:00
lda #6
cmp.z i
bne __b1_from___b1
jmp __breturn
2019-09-26 12:53:33 +00:00
// main::@return
__breturn:
2020-06-27 19:18:00 +00:00
// [6] return
2019-09-26 12:53:33 +00:00
rts
}
// File Data
idx: .byte 0
REGISTER UPLIFT POTENTIAL REGISTERS
2020-06-27 19:18:00 +00:00
Statement [2] *((const nomodify byte*) SCREEN + (byte) main::i#2) ← *((const byte*) idx_p) [ main::i#2 ] ( [ main::i#2 ] { } ) always clobbers reg byte a
2019-10-12 09:40:36 +00:00
Removing always clobbered register reg byte a as potential for zp[1]:2 [ main::i#2 main::i#1 ]
2020-06-27 19:18:00 +00:00
Statement [3] *((const byte*) idx_p) ← *((const byte*) idx_p) + (byte) main::i#2 [ main::i#2 ] ( [ main::i#2 ] { } ) always clobbers reg byte a
Statement [2] *((const nomodify byte*) SCREEN + (byte) main::i#2) ← *((const byte*) idx_p) [ main::i#2 ] ( [ main::i#2 ] { } ) always clobbers reg byte a
Statement [3] *((const byte*) idx_p) ← *((const byte*) idx_p) + (byte) main::i#2 [ main::i#2 ] ( [ main::i#2 ] { } ) always clobbers reg byte a
2019-10-12 09:40:36 +00:00
Potential registers zp[1]:2 [ main::i#2 main::i#1 ] : zp[1]:2 , reg byte x , reg byte y ,
Potential registers mem[1] [ idx ] : mem[1] ,
2019-09-26 12:53:33 +00:00
REGISTER UPLIFT SCOPES
2020-06-27 19:18:00 +00:00
Uplift Scope [main] 31.17: zp[1]:2 [ main::i#2 main::i#1 ]
Uplift Scope [] 0: mem[1] [ idx ]
2019-09-26 12:53:33 +00:00
2020-06-27 19:18:00 +00:00
Uplifting [main] best 391 combination reg byte x [ main::i#2 main::i#1 ]
Uplifting [] best 391 combination mem[1] [ idx ]
Attempting to uplift remaining variables inmem[1] [ idx ]
2020-06-27 19:18:00 +00:00
Uplifting [] best 391 combination mem[1] [ idx ]
2019-09-26 12:53:33 +00:00
ASSEMBLER BEFORE OPTIMIZATION
// File Comments
// Test declaring a variable as "memory", meaning it will be stored in memory and accessed through an implicit pointer (using load/store)
2019-09-26 13:05:50 +00:00
// Test a pointer to a memory variable
2019-09-26 12:53:33 +00:00
// Upstart
.pc = $801 "Basic"
:BasicUpstart(main)
2019-09-26 12:53:33 +00:00
.pc = $80d "Program"
// Global Constants & labels
.label SCREEN = $400
.label idx_p = idx
2019-09-26 12:53:33 +00:00
// main
main: {
2020-06-27 19:18:00 +00:00
// [1] phi from main to main::@1 [phi:main->main::@1]
__b1_from_main:
2020-06-27 19:18:00 +00:00
// [1] phi (byte) main::i#2 = (byte) 0 [phi:main->main::@1#0] -- vbuxx=vbuc1
2019-09-26 12:53:33 +00:00
ldx #0
jmp __b1
2020-06-27 19:18:00 +00:00
// [1] phi from main::@1 to main::@1 [phi:main::@1->main::@1]
__b1_from___b1:
2020-06-27 19:18:00 +00:00
// [1] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@1->main::@1#0] -- register_copy
jmp __b1
2019-09-26 12:53:33 +00:00
// main::@1
__b1:
2020-06-27 19:18:00 +00:00
// [2] *((const nomodify byte*) SCREEN + (byte) main::i#2) ← *((const byte*) idx_p) -- pbuc1_derefidx_vbuxx=_deref_pbuc2
lda idx_p
2019-09-26 12:53:33 +00:00
sta SCREEN,x
2020-06-27 19:18:00 +00:00
// [3] *((const byte*) idx_p) ← *((const byte*) idx_p) + (byte) main::i#2 -- _deref_pbuc1=_deref_pbuc1_plus_vbuxx
2019-09-26 12:53:33 +00:00
txa
clc
adc idx_p
sta idx_p
2020-06-27 19:18:00 +00:00
// [4] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuxx=_inc_vbuxx
2019-09-26 12:53:33 +00:00
inx
2020-06-27 19:18:00 +00:00
// [5] if((byte) main::i#1!=(byte) 6) goto main::@1 -- vbuxx_neq_vbuc1_then_la1
2019-09-26 12:53:33 +00:00
cpx #6
bne __b1_from___b1
jmp __breturn
2019-09-26 12:53:33 +00:00
// main::@return
__breturn:
2020-06-27 19:18:00 +00:00
// [6] return
2019-09-26 12:53:33 +00:00
rts
}
// File Data
idx: .byte 0
ASSEMBLER OPTIMIZATIONS
Removing instruction jmp __b1
Removing instruction jmp __breturn
2019-09-26 12:53:33 +00:00
Succesful ASM optimization Pass5NextJumpElimination
Replacing label __b1_from___b1 with __b1
Removing instruction __b1_from___b1:
2019-09-26 12:53:33 +00:00
Succesful ASM optimization Pass5RedundantLabelElimination
Removing instruction __b1_from_main:
Removing instruction __breturn:
2019-09-26 12:53:33 +00:00
Succesful ASM optimization Pass5UnusedLabelElimination
Removing instruction jmp __b1
2019-09-26 12:53:33 +00:00
Succesful ASM optimization Pass5NextJumpElimination
FINAL SYMBOL TABLE
(const nomodify byte*) SCREEN = (byte*) 1024
(volatile byte) idx loadstore mem[1] = (byte) 0
(const byte*) idx_p = &(volatile byte) idx
2019-09-26 12:53:33 +00:00
(void()) main()
(label) main::@1
(label) main::@return
(byte) main::i
2020-06-27 19:18:00 +00:00
(byte) main::i#1 reg byte x 16.5
(byte) main::i#2 reg byte x 14.666666666666666
2019-09-26 12:53:33 +00:00
reg byte x [ main::i#2 main::i#1 ]
mem[1] [ idx ]
2019-09-26 12:53:33 +00:00
FINAL ASSEMBLER
Score: 301
2019-09-26 12:53:33 +00:00
// File Comments
// Test declaring a variable as "memory", meaning it will be stored in memory and accessed through an implicit pointer (using load/store)
2019-09-26 13:05:50 +00:00
// Test a pointer to a memory variable
2019-09-26 12:53:33 +00:00
// Upstart
.pc = $801 "Basic"
:BasicUpstart(main)
2019-09-26 12:53:33 +00:00
.pc = $80d "Program"
// Global Constants & labels
.label SCREEN = $400
.label idx_p = idx
2019-09-26 12:53:33 +00:00
// main
main: {
2020-06-27 19:18:00 +00:00
// [1] phi from main to main::@1 [phi:main->main::@1]
// [1] phi (byte) main::i#2 = (byte) 0 [phi:main->main::@1#0] -- vbuxx=vbuc1
2019-09-26 12:53:33 +00:00
ldx #0
2020-06-27 19:18:00 +00:00
// [1] phi from main::@1 to main::@1 [phi:main::@1->main::@1]
// [1] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@1->main::@1#0] -- register_copy
2019-09-26 12:53:33 +00:00
// main::@1
__b1:
2019-09-26 12:53:33 +00:00
// SCREEN[i] = *idx_p
2020-06-27 19:18:00 +00:00
// [2] *((const nomodify byte*) SCREEN + (byte) main::i#2) ← *((const byte*) idx_p) -- pbuc1_derefidx_vbuxx=_deref_pbuc2
lda idx_p
2019-09-26 12:53:33 +00:00
sta SCREEN,x
// *idx_p +=i
2020-06-27 19:18:00 +00:00
// [3] *((const byte*) idx_p) ← *((const byte*) idx_p) + (byte) main::i#2 -- _deref_pbuc1=_deref_pbuc1_plus_vbuxx
2019-09-26 12:53:33 +00:00
txa
clc
adc idx_p
sta idx_p
2019-09-26 12:53:33 +00:00
// for( char i: 0..5 )
2020-06-27 19:18:00 +00:00
// [4] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuxx=_inc_vbuxx
2019-09-26 12:53:33 +00:00
inx
2020-06-27 19:18:00 +00:00
// [5] if((byte) main::i#1!=(byte) 6) goto main::@1 -- vbuxx_neq_vbuc1_then_la1
2019-09-26 12:53:33 +00:00
cpx #6
bne __b1
2019-09-26 12:53:33 +00:00
// main::@return
// }
2020-06-27 19:18:00 +00:00
// [6] return
2019-09-26 12:53:33 +00:00
rts
}
// File Data
idx: .byte 0