factor/library/compiler/ppc/architecture.factor

18 lines
272 B
Factor
Raw Normal View History

2005-09-05 17:36:20 -04:00
IN: compiler-backend
USING: assembler compiler-backend math ;
2005-09-05 17:14:15 -04:00
! PowerPC register assignments
! r3-r10 vregs
! r14 data stack
! r15 call stack
: cell
#! Word size.
4 ; inline
: vregs ( -- n )
#! Number of vregs
2005-09-05 17:14:15 -04:00
8 ; inline
M: vreg v>operand vreg-n 3 + ;