1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-16 21:07:56 +00:00
kickc/src/test/ref/volatile-0.log

338 lines
8.4 KiB
Plaintext
Raw Normal View History

2020-06-27 19:18:00 +00:00
Inlined call call _init
2019-12-25 16:37:44 +00:00
CONTROL FLOW GRAPH SSA
(void()) main()
2020-06-27 19:18:00 +00:00
main: scope:[main] from _start::@1
2019-12-25 16:37:44 +00:00
to:main::@1
main::@1: scope:[main] from main main::@2
(bool~) main::$0 ← (volatile byte) i < (number) 7
2019-12-25 16:37:44 +00:00
if((bool~) main::$0) goto main::@2
to:main::@return
main::@2: scope:[main] from main::@1
*((const nomodify byte*) SCREEN + (volatile byte) i) ← (volatile byte) i
(volatile byte) i ← ++ (volatile byte) i
2019-12-25 16:37:44 +00:00
to:main::@1
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
(volatile byte) i ← (byte) 3
to:_start::@1
_start::@1: scope:[_start] from _start::_init1
2019-12-25 16:37:44 +00:00
call main
2020-06-27 19:18:00 +00:00
to:_start::@2
_start::@2: scope:[_start] from _start::@1
to:_start::@return
_start::@return: scope:[_start] from _start::@2
return
to:@return
2019-12-25 16:37:44 +00:00
SYMBOL TABLE SSA
(const nomodify byte*) SCREEN = (byte*)(number) $400
2020-06-27 19:18:00 +00:00
(void()) _start()
(label) _start::@1
(label) _start::@2
(label) _start::@return
(label) _start::_init1
(volatile byte) i loadstore
2019-12-25 16:37:44 +00:00
(void()) main()
(bool~) main::$0
(label) main::@1
(label) main::@2
(label) main::@return
Adding number conversion cast (unumber) 7 in (bool~) main::$0 ← (volatile byte) i < (number) 7
2019-12-25 16:37:44 +00:00
Successful SSA optimization PassNAddNumberTypeConversions
Simplifying constant pointer cast (byte*) 1024
Simplifying constant integer cast 7
Successful SSA optimization PassNCastSimplification
Finalized unsigned number type (byte) 7
Successful SSA optimization PassNFinalizeNumberTypeConversions
2020-06-27 19:18:00 +00:00
Simple Condition (bool~) main::$0 [1] if((volatile byte) i<(byte) 7) goto main::@2
2019-12-25 16:37:44 +00:00
Successful SSA optimization Pass2ConditionalJumpSimplification
2020-06-27 19:18:00 +00:00
Adding NOP phi() at start of _start
Adding NOP phi() at start of _start::@1
Adding NOP phi() at start of _start::@2
2019-12-25 16:37:44 +00:00
Adding NOP phi() at start of main
CALL GRAPH
2020-06-27 19:18:00 +00:00
Calls in [_start] to main:3
2019-12-25 16:37:44 +00:00
Created 0 initial phi equivalence classes
Coalesced down to 0 phi equivalence classes
2020-06-27 19:18:00 +00:00
Culled Empty Block (label) _start::@2
Adding NOP phi() at start of _start
Adding NOP phi() at start of _start::@1
2019-12-25 16:37:44 +00:00
Adding NOP phi() at start of main
FINAL CONTROL FLOW GRAPH
2020-06-27 19:18:00 +00:00
(void()) _start()
_start: scope:[_start] from
[0] phi()
to:_start::_init1
_start::_init1: scope:[_start] from _start
[1] (volatile byte) i ← (byte) 3
to:_start::@1
_start::@1: scope:[_start] from _start::_init1
[2] phi()
[3] call main
to:_start::@return
_start::@return: scope:[_start] from _start::@1
[4] return
to:@return
2019-12-25 16:37:44 +00:00
(void()) main()
2020-06-27 19:18:00 +00:00
main: scope:[main] from _start::@1
[5] phi()
2019-12-25 16:37:44 +00:00
to:main::@1
main::@1: scope:[main] from main main::@2
2020-06-27 19:18:00 +00:00
[6] if((volatile byte) i<(byte) 7) goto main::@2
2019-12-25 16:37:44 +00:00
to:main::@return
main::@return: scope:[main] from main::@1
2020-06-27 19:18:00 +00:00
[7] return
2019-12-25 16:37:44 +00:00
to:@return
main::@2: scope:[main] from main::@1
2020-06-27 19:18:00 +00:00
[8] *((const nomodify byte*) SCREEN + (volatile byte) i) ← (volatile byte) i
[9] (volatile byte) i ← ++ (volatile byte) i
2019-12-25 16:37:44 +00:00
to:main::@1
VARIABLE REGISTER WEIGHTS
2020-06-27 19:18:00 +00:00
(void()) _start()
(volatile byte) i loadstore 84.49999999999999
2019-12-25 16:37:44 +00:00
(void()) main()
Initial phi equivalence classes
Added variable i to live range equivalence class [ i ]
Complete equivalence classes
[ i ]
Allocated zp[1]:2 [ i ]
INITIAL ASM
Target platform is c64basic / MOS6502X
// File Comments
// Test that volatile vars are turned into load/store
// Upstart
.pc = $801 "Basic"
2020-06-27 19:18:00 +00:00
:BasicUpstart(_start)
2019-12-25 16:37:44 +00:00
.pc = $80d "Program"
// Global Constants & labels
.label SCREEN = $400
.label i = 2
2020-06-27 19:18:00 +00:00
// _start
_start: {
jmp _init1
// _start::_init1
_init1:
// [1] (volatile byte) i ← (byte) 3 -- vbuz1=vbuc1
lda #3
sta.z i
// [2] phi from _start::_init1 to _start::@1 [phi:_start::_init1->_start::@1]
__b1_from__init1:
jmp __b1
// _start::@1
__b1:
// [3] call main
// [5] phi from _start::@1 to main [phi:_start::@1->main]
main_from___b1:
jsr main
jmp __breturn
// _start::@return
__breturn:
// [4] return
rts
}
2019-12-25 16:37:44 +00:00
// main
main: {
jmp __b1
// main::@1
__b1:
2020-06-27 19:18:00 +00:00
// [6] if((volatile byte) i<(byte) 7) goto main::@2 -- vbuz1_lt_vbuc1_then_la1
2019-12-25 16:37:44 +00:00
lda.z i
cmp #7
bcc __b2
jmp __breturn
// main::@return
__breturn:
2020-06-27 19:18:00 +00:00
// [7] return
2019-12-25 16:37:44 +00:00
rts
// main::@2
__b2:
2020-06-27 19:18:00 +00:00
// [8] *((const nomodify byte*) SCREEN + (volatile byte) i) ← (volatile byte) i -- pbuc1_derefidx_vbuz1=vbuz1
2019-12-25 16:37:44 +00:00
ldy.z i
tya
sta SCREEN,y
2020-06-27 19:18:00 +00:00
// [9] (volatile byte) i ← ++ (volatile byte) i -- vbuz1=_inc_vbuz1
2019-12-25 16:37:44 +00:00
inc.z i
jmp __b1
}
// File Data
REGISTER UPLIFT POTENTIAL REGISTERS
2020-06-27 19:18:00 +00:00
Statement [1] (volatile byte) i ← (byte) 3 [ i ] ( [ i ] { } ) always clobbers reg byte a
Statement [6] if((volatile byte) i<(byte) 7) goto main::@2 [ i ] ( main:3 [ i ] { } ) always clobbers reg byte a
Statement [8] *((const nomodify byte*) SCREEN + (volatile byte) i) ← (volatile byte) i [ i ] ( main:3 [ i ] { } ) always clobbers reg byte a reg byte y
2019-12-25 16:37:44 +00:00
Potential registers zp[1]:2 [ i ] : zp[1]:2 ,
REGISTER UPLIFT SCOPES
Uplift Scope [] 84.5: zp[1]:2 [ i ]
2019-12-25 16:37:44 +00:00
Uplift Scope [main]
2020-06-27 19:18:00 +00:00
Uplift Scope [_start]
2019-12-25 16:37:44 +00:00
2020-06-27 19:18:00 +00:00
Uplifting [] best 374 combination zp[1]:2 [ i ]
Uplifting [main] best 374 combination
Uplifting [_start] best 374 combination
2019-12-25 16:37:44 +00:00
Attempting to uplift remaining variables inzp[1]:2 [ i ]
2020-06-27 19:18:00 +00:00
Uplifting [] best 374 combination zp[1]:2 [ i ]
2019-12-25 16:37:44 +00:00
ASSEMBLER BEFORE OPTIMIZATION
// File Comments
// Test that volatile vars are turned into load/store
// Upstart
.pc = $801 "Basic"
2020-06-27 19:18:00 +00:00
:BasicUpstart(_start)
2019-12-25 16:37:44 +00:00
.pc = $80d "Program"
// Global Constants & labels
.label SCREEN = $400
.label i = 2
2020-06-27 19:18:00 +00:00
// _start
_start: {
jmp _init1
// _start::_init1
_init1:
// [1] (volatile byte) i ← (byte) 3 -- vbuz1=vbuc1
lda #3
sta.z i
// [2] phi from _start::_init1 to _start::@1 [phi:_start::_init1->_start::@1]
__b1_from__init1:
jmp __b1
// _start::@1
__b1:
// [3] call main
// [5] phi from _start::@1 to main [phi:_start::@1->main]
main_from___b1:
jsr main
jmp __breturn
// _start::@return
__breturn:
// [4] return
rts
}
2019-12-25 16:37:44 +00:00
// main
main: {
jmp __b1
// main::@1
__b1:
2020-06-27 19:18:00 +00:00
// [6] if((volatile byte) i<(byte) 7) goto main::@2 -- vbuz1_lt_vbuc1_then_la1
2019-12-25 16:37:44 +00:00
lda.z i
cmp #7
bcc __b2
jmp __breturn
// main::@return
__breturn:
2020-06-27 19:18:00 +00:00
// [7] return
2019-12-25 16:37:44 +00:00
rts
// main::@2
__b2:
2020-06-27 19:18:00 +00:00
// [8] *((const nomodify byte*) SCREEN + (volatile byte) i) ← (volatile byte) i -- pbuc1_derefidx_vbuz1=vbuz1
2019-12-25 16:37:44 +00:00
ldy.z i
tya
sta SCREEN,y
2020-06-27 19:18:00 +00:00
// [9] (volatile byte) i ← ++ (volatile byte) i -- vbuz1=_inc_vbuz1
2019-12-25 16:37:44 +00:00
inc.z i
jmp __b1
}
// File Data
ASSEMBLER OPTIMIZATIONS
2020-06-27 19:18:00 +00:00
Removing instruction jmp _init1
2019-12-25 16:37:44 +00:00
Removing instruction jmp __b1
2020-06-27 19:18:00 +00:00
Removing instruction jmp __breturn
2019-12-25 16:37:44 +00:00
Removing instruction jmp __b1
Removing instruction jmp __breturn
Succesful ASM optimization Pass5NextJumpElimination
2020-06-27 19:18:00 +00:00
Removing instruction __b1_from__init1:
2019-12-25 16:37:44 +00:00
Removing instruction main_from___b1:
Succesful ASM optimization Pass5RedundantLabelElimination
2020-06-27 19:18:00 +00:00
Removing instruction _init1:
2019-12-25 16:37:44 +00:00
Removing instruction __b1:
2020-06-27 19:18:00 +00:00
Removing instruction __breturn:
2019-12-25 16:37:44 +00:00
Removing instruction __breturn:
Succesful ASM optimization Pass5UnusedLabelElimination
FINAL SYMBOL TABLE
(const nomodify byte*) SCREEN = (byte*) 1024
2020-06-27 19:18:00 +00:00
(void()) _start()
(label) _start::@1
(label) _start::@return
(label) _start::_init1
(volatile byte) i loadstore zp[1]:2 84.49999999999999
2019-12-25 16:37:44 +00:00
(void()) main()
(label) main::@1
(label) main::@2
(label) main::@return
zp[1]:2 [ i ]
FINAL ASSEMBLER
Score: 278
// File Comments
// Test that volatile vars are turned into load/store
// Upstart
.pc = $801 "Basic"
2020-06-27 19:18:00 +00:00
:BasicUpstart(_start)
2019-12-25 16:37:44 +00:00
.pc = $80d "Program"
// Global Constants & labels
.label SCREEN = $400
.label i = 2
2020-06-27 19:18:00 +00:00
// _start
_start: {
// _start::_init1
// i = 3
// [1] (volatile byte) i ← (byte) 3 -- vbuz1=vbuc1
lda #3
sta.z i
// [2] phi from _start::_init1 to _start::@1 [phi:_start::_init1->_start::@1]
// _start::@1
// [3] call main
// [5] phi from _start::@1 to main [phi:_start::@1->main]
jsr main
// _start::@return
// [4] return
rts
}
2019-12-25 16:37:44 +00:00
// main
main: {
// main::@1
__b1:
// while(i<7)
2020-06-27 19:18:00 +00:00
// [6] if((volatile byte) i<(byte) 7) goto main::@2 -- vbuz1_lt_vbuc1_then_la1
2019-12-25 16:37:44 +00:00
lda.z i
cmp #7
bcc __b2
// main::@return
// }
2020-06-27 19:18:00 +00:00
// [7] return
2019-12-25 16:37:44 +00:00
rts
// main::@2
__b2:
// SCREEN[i++] = i
2020-06-27 19:18:00 +00:00
// [8] *((const nomodify byte*) SCREEN + (volatile byte) i) ← (volatile byte) i -- pbuc1_derefidx_vbuz1=vbuz1
2019-12-25 16:37:44 +00:00
ldy.z i
tya
sta SCREEN,y
// SCREEN[i++] = i;
2020-06-27 19:18:00 +00:00
// [9] (volatile byte) i ← ++ (volatile byte) i -- vbuz1=_inc_vbuz1
2019-12-25 16:37:44 +00:00
inc.z i
jmp __b1
}
// File Data