factor/library/compiler/architecture.factor

15 lines
366 B
Factor
Raw Normal View History

2005-09-05 17:36:20 -04:00
IN: compiler-backend
! A few things the front-end needs to know about the back-end.
DEFER: fixnum-imm? ( -- ? )
#! Can fixnum operations take immediate operands?
2005-12-04 22:06:12 -05:00
DEFER: vregs ( -- regs )
2005-10-21 03:42:38 -04:00
DEFER: dual-fp/int-regs? ( -- ? )
#! Should fp parameters to fastcalls be loaded in integer
#! registers too? Only for PowerPC.
2005-12-24 16:08:15 -05:00
DEFER: compile-c-call ( library function -- )