factor/library/compiler/ppc/architecture.factor

22 lines
365 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
: fixnum-imm? ( -- ? )
#! Can fixnum operations take immediate operands?
f ; inline
: vregs ( -- n )
#! Number of vregs
2005-09-05 17:14:15 -04:00
8 ; inline
M: vreg v>operand vreg-n 3 + ;