factor/basis/cpu/x86/64/bootstrap.factor

21 lines
537 B
Factor
Raw Normal View History

2007-09-21 23:30:47 -04:00
! Copyright (C) 2007 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
USING: bootstrap.image.private kernel namespaces system
cpu.x86.assembler layouts vocabs parser ;
IN: bootstrap.x86
2007-09-20 18:09:08 -04:00
8 \ cell set
2007-09-21 23:30:47 -04:00
: shift-arg ( -- reg ) RCX ;
: div-arg ( -- reg ) RAX ;
: mod-arg ( -- reg ) RDX ;
2008-06-11 05:52:19 -04:00
: temp-reg ( -- reg ) RBX ;
: stack-reg ( -- reg ) RSP ;
: ds-reg ( -- reg ) R14 ;
: rs-reg ( -- reg ) R15 ;
2008-06-11 05:52:19 -04:00
: fixnum>slot@ ( -- ) ;
: rex-length ( -- n ) 1 ;
2007-09-21 23:30:47 -04:00
2008-07-28 23:03:13 -04:00
<< "resource:basis/cpu/x86/bootstrap.factor" parse-file parsed >>
call