factor/library/compiler/x86/fixnum.factor

158 lines
4.1 KiB
Factor
Raw Normal View History

! :folding=indent:collapseFolds=1:
! $Id$
!
2005-01-06 21:42:07 -05:00
! Copyright (C) 2005 Slava Pestov.
!
! Redistribution and use in source and binary forms, with or without
! modification, are permitted provided that the following conditions are met:
!
! 1. Redistributions of source code must retain the above copyright notice,
! this list of conditions and the following disclaimer.
!
! 2. Redistributions in binary form must reproduce the above copyright notice,
! this list of conditions and the following disclaimer in the documentation
! and/or other materials provided with the distribution.
!
! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2005-01-06 21:42:07 -05:00
IN: compiler
USE: assembler
USE: inference
USE: math
USE: words
USE: kernel
USE: alien
USE: lists
2005-01-06 21:42:07 -05:00
USE: math-internals
! This file provides compiling definitions for fixnum words
2005-01-06 23:16:13 -05:00
! that are faster than what C gives us. There is a lot of
! code repetition here. It will be factored out at the same
! time as rewriting the code to use registers for intermediate
! values happends. At this point in time, this is just a
! prototype to test the assembler.
: fixnum-insn ( overflow opcode -- )
#! This needs to be factored.
2005-02-16 23:24:35 -05:00
EAX [ ESI -4 ] MOV
EAX [ ESI ] rot execute
2005-03-15 22:23:52 -05:00
0 JNO just-compiled
swap compile-call
2005-03-15 22:23:52 -05:00
0 JMP just-compiled >r
compiled-offset swap patch
2005-02-16 23:24:35 -05:00
ESI 4 SUB
[ ESI ] EAX MOV
r> compiled-offset swap patch ;
\ fixnum+ [
drop \ fixnum+ \ ADD fixnum-insn
] "generator" set-word-prop
\ fixnum+ [ \ fixnum+ self ] "infer" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum- [
drop \ fixnum- \ SUB fixnum-insn
] "generator" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum- [ \ fixnum- self ] "infer" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum* [
drop
2005-02-16 23:24:35 -05:00
EAX [ ESI -4 ] MOV
2005-01-06 23:16:13 -05:00
EAX 3 SHR
2005-02-16 23:24:35 -05:00
EAX [ ESI ] IMUL
2005-03-15 22:23:52 -05:00
0 JNO just-compiled
2005-01-06 23:16:13 -05:00
\ fixnum* compile-call
2005-03-15 22:23:52 -05:00
0 JMP just-compiled >r
2005-01-06 23:16:13 -05:00
compiled-offset swap patch
2005-02-16 23:24:35 -05:00
ESI 4 SUB
[ ESI ] EAX MOV
2005-01-06 23:16:13 -05:00
r> compiled-offset swap patch
] "generator" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum* [ \ fixnum* self ] "infer" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum/i [
drop
2005-02-16 23:24:35 -05:00
EAX [ ESI -4 ] MOV
2005-01-06 23:16:13 -05:00
CDQ
2005-02-16 23:24:35 -05:00
[ ESI ] IDIV
2005-01-06 23:16:13 -05:00
EAX 3 SHL
2005-03-15 22:23:52 -05:00
0 JNO just-compiled
2005-01-06 23:16:13 -05:00
\ fixnum/i compile-call
2005-03-15 22:23:52 -05:00
0 JMP just-compiled >r
2005-01-06 23:16:13 -05:00
compiled-offset swap patch
2005-02-16 23:24:35 -05:00
ESI 4 SUB
[ ESI ] EAX MOV
2005-01-06 23:16:13 -05:00
r> compiled-offset swap patch
] "generator" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum/i [ \ fixnum/i self ] "infer" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum-mod [
drop
2005-02-16 23:24:35 -05:00
EAX [ ESI -4 ] MOV
2005-01-06 23:16:13 -05:00
CDQ
2005-02-16 23:24:35 -05:00
[ ESI ] IDIV
2005-01-06 23:16:13 -05:00
EAX 3 SHL
2005-03-15 22:23:52 -05:00
0 JNO just-compiled
2005-01-06 23:16:13 -05:00
\ fixnum/i compile-call
2005-03-15 22:23:52 -05:00
0 JMP just-compiled >r
2005-01-06 23:16:13 -05:00
compiled-offset swap patch
2005-02-16 23:24:35 -05:00
ESI 4 SUB
[ ESI ] EDX MOV
2005-01-06 23:16:13 -05:00
r> compiled-offset swap patch
] "generator" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum-mod [ \ fixnum-mod self ] "infer" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum/mod [
drop
2005-02-16 23:24:35 -05:00
EAX [ ESI -4 ] MOV
2005-01-06 23:16:13 -05:00
CDQ
2005-02-16 23:24:35 -05:00
[ ESI ] IDIV
2005-01-06 23:16:13 -05:00
EAX 3 SHL
2005-03-15 22:23:52 -05:00
0 JNO just-compiled
\ fixnum/mod compile-call
2005-03-15 22:23:52 -05:00
0 JMP just-compiled >r
2005-01-06 23:16:13 -05:00
compiled-offset swap patch
2005-02-16 23:24:35 -05:00
[ ESI -4 ] EAX MOV
[ ESI ] EDX MOV
2005-01-06 23:16:13 -05:00
r> compiled-offset swap patch
] "generator" set-word-prop
2005-01-06 23:16:13 -05:00
\ fixnum/mod [ \ fixnum/mod self ] "infer" set-word-prop
2005-05-06 18:33:40 -04:00
: PUSH-DS ( -- )
#! Push EAX to datastack.
ESI 4 ADD
[ ESI ] EAX MOV ;
\ arithmetic-type [
drop
2005-02-16 23:24:35 -05:00
EAX [ ESI -4 ] MOV
EAX BIN: 111 AND
2005-02-16 23:24:35 -05:00
EDX [ ESI ] MOV
EDX BIN: 111 AND
EAX EDX CMP
2005-03-15 22:23:52 -05:00
0 JE just-compiled >r
\ arithmetic-type compile-call
2005-03-15 22:23:52 -05:00
0 JMP just-compiled
compiled-offset r> patch
EAX 3 SHL
PUSH-DS
compiled-offset swap patch
] "generator" set-word-prop
\ arithmetic-type [ \ arithmetic-type self ] "infer" set-word-prop