61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Factor
		
	
	
| ! Copyright (C) 2008, 2009 Slava Pestov.
 | |
| ! See http://factorcode.org/license.txt for BSD license.
 | |
| USING: accessors assocs heaps kernel namespaces sequences fry math
 | |
| math.order combinators arrays sorting compiler.utilities
 | |
| compiler.cfg.linear-scan.live-intervals
 | |
| compiler.cfg.linear-scan.allocation.coalescing
 | |
| compiler.cfg.linear-scan.allocation.spilling
 | |
| compiler.cfg.linear-scan.allocation.splitting
 | |
| compiler.cfg.linear-scan.allocation.state ;
 | |
| IN: compiler.cfg.linear-scan.allocation
 | |
| 
 | |
| : active-positions ( new assoc -- )
 | |
|     [ vreg>> active-intervals-for ] dip
 | |
|     '[ [ 0 ] dip reg>> _ add-use-position ] each ;
 | |
| 
 | |
| : inactive-positions ( new assoc -- )
 | |
|     [ [ vreg>> inactive-intervals-for ] keep ] dip
 | |
|     '[
 | |
|         [ _ relevant-ranges intersect-live-ranges 1/0. or ] [ reg>> ] bi
 | |
|         _ add-use-position
 | |
|     ] each ;
 | |
| 
 | |
| : register-status ( new -- free-pos )
 | |
|     dup free-positions
 | |
|     [ inactive-positions ] [ active-positions ] [ nip ] 2tri
 | |
|     >alist alist-max ;
 | |
| 
 | |
| : no-free-registers? ( result -- ? )
 | |
|     second 0 = ; inline
 | |
| 
 | |
| : assign-register ( new -- )
 | |
|     dup coalesce? [ coalesce ] [
 | |
|         dup register-status {
 | |
|             { [ dup no-free-registers? ] [ drop assign-blocked-register ] }
 | |
|             { [ 2dup register-available? ] [ register-available ] }
 | |
|             [ drop assign-blocked-register ]
 | |
|         } cond
 | |
|     ] if ;
 | |
| 
 | |
| : handle-interval ( live-interval -- )
 | |
|     [
 | |
|         start>>
 | |
|         [ progress set ]
 | |
|         [ deactivate-intervals ]
 | |
|         [ activate-intervals ] tri
 | |
|     ] [ assign-register ] bi ;
 | |
| 
 | |
| : (allocate-registers) ( -- )
 | |
|     unhandled-intervals get [ handle-interval ] slurp-heap ;
 | |
| 
 | |
| : finish-allocation ( -- )
 | |
|     active-intervals inactive-intervals
 | |
|     [ get values [ handled-intervals get push-all ] each ] bi@ ;
 | |
| 
 | |
| : allocate-registers ( live-intervals machine-registers -- live-intervals )
 | |
|     init-allocator
 | |
|     init-unhandled
 | |
|     (allocate-registers)
 | |
|     finish-allocation
 | |
|     handled-intervals get ;
 |