2009-07-22 07:07:28 -04:00
|
|
|
USING: compiler.cfg.liveness compiler.cfg.debugger
|
|
|
|
compiler.cfg.instructions compiler.cfg.predecessors
|
|
|
|
compiler.cfg.registers compiler.cfg cpu.architecture
|
2009-07-28 07:45:02 -04:00
|
|
|
accessors namespaces sequences kernel tools.test vectors ;
|
2009-07-22 07:07:28 -04:00
|
|
|
IN: compiler.cfg.liveness.tests
|
|
|
|
|
2009-07-28 07:45:02 -04:00
|
|
|
: test-liveness ( -- )
|
|
|
|
cfg new 1 get >>entry
|
|
|
|
compute-predecessors
|
|
|
|
compute-live-sets ;
|
|
|
|
|
2009-07-22 07:07:28 -04:00
|
|
|
! Sanity check...
|
|
|
|
|
|
|
|
V{
|
2009-08-07 18:44:50 -04:00
|
|
|
T{ ##peek f V int-rep 0 D 0 }
|
|
|
|
T{ ##replace f V int-rep 0 D 0 }
|
|
|
|
T{ ##replace f V int-rep 1 D 1 }
|
|
|
|
T{ ##peek f V int-rep 1 D 1 }
|
2009-07-28 07:45:02 -04:00
|
|
|
T{ ##branch }
|
2009-07-22 07:07:28 -04:00
|
|
|
} 1 test-bb
|
|
|
|
|
|
|
|
V{
|
2009-08-07 18:44:50 -04:00
|
|
|
T{ ##replace f V int-rep 2 D 0 }
|
2009-07-28 07:45:02 -04:00
|
|
|
T{ ##branch }
|
2009-07-22 07:07:28 -04:00
|
|
|
} 2 test-bb
|
|
|
|
|
|
|
|
V{
|
2009-08-07 18:44:50 -04:00
|
|
|
T{ ##replace f V int-rep 3 D 0 }
|
2009-07-28 07:45:02 -04:00
|
|
|
T{ ##return }
|
2009-07-22 07:07:28 -04:00
|
|
|
} 3 test-bb
|
|
|
|
|
2009-08-02 04:49:25 -04:00
|
|
|
1 { 2 3 } edges
|
2009-07-22 07:07:28 -04:00
|
|
|
|
2009-07-28 07:45:02 -04:00
|
|
|
test-liveness
|
2009-07-22 07:07:28 -04:00
|
|
|
|
|
|
|
[
|
|
|
|
H{
|
2009-08-07 18:44:50 -04:00
|
|
|
{ V int-rep 1 V int-rep 1 }
|
|
|
|
{ V int-rep 2 V int-rep 2 }
|
|
|
|
{ V int-rep 3 V int-rep 3 }
|
2009-07-22 07:07:28 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
[ 1 get live-in ]
|
2009-07-28 07:45:02 -04:00
|
|
|
unit-test
|
|
|
|
|
|
|
|
! Tricky case; defs must be killed before uses
|
|
|
|
|
|
|
|
V{
|
2009-08-07 18:44:50 -04:00
|
|
|
T{ ##peek f V int-rep 0 D 0 }
|
2009-07-28 07:45:02 -04:00
|
|
|
T{ ##branch }
|
|
|
|
} 1 test-bb
|
|
|
|
|
|
|
|
V{
|
2009-08-07 18:44:50 -04:00
|
|
|
T{ ##add-imm f V int-rep 0 V int-rep 0 10 }
|
2009-07-28 07:45:02 -04:00
|
|
|
T{ ##return }
|
|
|
|
} 2 test-bb
|
|
|
|
|
2009-08-02 04:49:25 -04:00
|
|
|
1 2 edge
|
2009-07-28 07:45:02 -04:00
|
|
|
|
|
|
|
test-liveness
|
|
|
|
|
2009-08-07 18:44:50 -04:00
|
|
|
[ H{ { V int-rep 0 V int-rep 0 } } ] [ 2 get live-in ] unit-test
|