compiler.cfg: update unit tests for compiler.cfg.comparisons
parent
8bf1fd5f2a
commit
c860a3b1e6
|
@ -2,8 +2,9 @@ IN: compiler.cfg.branch-folding.tests
|
||||||
USING: compiler.cfg.branch-folding compiler.cfg.instructions
|
USING: compiler.cfg.branch-folding compiler.cfg.instructions
|
||||||
compiler.cfg compiler.cfg.registers compiler.cfg.debugger
|
compiler.cfg compiler.cfg.registers compiler.cfg.debugger
|
||||||
arrays compiler.cfg.phi-elimination compiler.cfg.dce
|
arrays compiler.cfg.phi-elimination compiler.cfg.dce
|
||||||
compiler.cfg.predecessors kernel accessors assocs
|
compiler.cfg.predecessors compiler.cfg.comparisons
|
||||||
sequences classes namespaces tools.test cpu.architecture ;
|
kernel accessors assocs sequences classes namespaces
|
||||||
|
tools.test cpu.architecture ;
|
||||||
|
|
||||||
V{ T{ ##branch } } 0 test-bb
|
V{ T{ ##branch } } 0 test-bb
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ compiler.cfg.predecessors
|
||||||
compiler.cfg.rpo
|
compiler.cfg.rpo
|
||||||
compiler.cfg.linearization
|
compiler.cfg.linearization
|
||||||
compiler.cfg.debugger
|
compiler.cfg.debugger
|
||||||
|
compiler.cfg.comparisons
|
||||||
compiler.cfg.linear-scan
|
compiler.cfg.linear-scan
|
||||||
compiler.cfg.linear-scan.numbering
|
compiler.cfg.linear-scan.numbering
|
||||||
compiler.cfg.linear-scan.live-intervals
|
compiler.cfg.linear-scan.live-intervals
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
IN: compiler.cfg.phi-elimination.tests
|
IN: compiler.cfg.phi-elimination.tests
|
||||||
USING: compiler.cfg.instructions compiler.cfg compiler.cfg.registers
|
USING: compiler.cfg.instructions compiler.cfg compiler.cfg.registers
|
||||||
compiler.cfg.debugger compiler.cfg.phi-elimination kernel accessors
|
compiler.cfg.comparisons compiler.cfg.debugger
|
||||||
sequences classes namespaces tools.test cpu.architecture arrays ;
|
compiler.cfg.phi-elimination kernel accessors sequences classes
|
||||||
|
namespaces tools.test cpu.architecture arrays ;
|
||||||
|
|
||||||
V{ T{ ##branch } } 0 test-bb
|
V{ T{ ##branch } } 0 test-bb
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
IN: compiler.cfg.value-numbering.tests
|
IN: compiler.cfg.value-numbering.tests
|
||||||
USING: compiler.cfg.value-numbering compiler.cfg.instructions
|
USING: compiler.cfg.value-numbering compiler.cfg.instructions
|
||||||
compiler.cfg.registers compiler.cfg.debugger cpu.architecture
|
compiler.cfg.registers compiler.cfg.debugger compiler.cfg.comparisons
|
||||||
tools.test kernel math combinators.short-circuit accessors
|
cpu.architecture tools.test kernel math combinators.short-circuit
|
||||||
sequences compiler.cfg vectors arrays ;
|
accessors sequences compiler.cfg vectors arrays ;
|
||||||
|
|
||||||
: trim-temps ( insns -- insns )
|
: trim-temps ( insns -- insns )
|
||||||
[
|
[
|
||||||
|
|
Loading…
Reference in New Issue