]> gitweb.factorcode.org Git - factor.git/blob - basis/compiler/constants/constants.factor
vm: move c_to_factor, lazy_jit_compile_impl, throw_impl, set_callstack assembly routi...
[factor.git] / basis / compiler / constants / constants.factor
1 ! Copyright (C) 2008, 2010 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: math kernel layouts system strings words quotations byte-arrays
4 alien arrays literals sequences ;
5 IN: compiler.constants
6
7 ! These constants must match vm/memory.h
8 CONSTANT: card-bits 8
9 CONSTANT: deck-bits 18
10 : card-mark ( -- n ) HEX: 40 HEX: 80 bitor ; inline
11
12 ! These constants must match vm/layouts.h
13 : slot-offset ( slot tag -- n ) [ bootstrap-cells ] dip - ; inline
14
15 : float-offset ( -- n ) 8 float type-number - ; inline
16 : string-offset ( -- n ) 4 string type-number slot-offset ; inline
17 : string-aux-offset ( -- n ) 2 string type-number slot-offset ; inline
18 : profile-count-offset ( -- n ) 8 \ word type-number slot-offset ; inline
19 : byte-array-offset ( -- n ) 16 byte-array type-number - ; inline
20 : alien-offset ( -- n ) 4 alien type-number slot-offset ; inline
21 : underlying-alien-offset ( -- n ) 1 alien type-number slot-offset ; inline
22 : tuple-class-offset ( -- n ) 1 tuple type-number slot-offset ; inline
23 : word-xt-offset ( -- n ) 10 \ word type-number slot-offset ; inline
24 : quot-xt-offset ( -- n ) 4 quotation type-number slot-offset ; inline
25 : word-code-offset ( -- n ) 11 \ word type-number slot-offset ; inline
26 : array-start-offset ( -- n ) 2 array type-number slot-offset ; inline
27 : compiled-header-size ( -- n ) 4 bootstrap-cells ; inline
28 : callstack-length-offset ( -- n ) 1 \ callstack type-number slot-offset ; inline
29 : callstack-top-offset ( -- n ) 2 \ callstack type-number slot-offset ; inline
30
31 ! Relocation classes
32 CONSTANT: rc-absolute-cell 0
33 CONSTANT: rc-absolute 1
34 CONSTANT: rc-relative 2
35 CONSTANT: rc-absolute-ppc-2/2 3
36 CONSTANT: rc-absolute-ppc-2 4
37 CONSTANT: rc-relative-ppc-2 5
38 CONSTANT: rc-relative-ppc-3 6
39 CONSTANT: rc-relative-arm-3 7
40 CONSTANT: rc-indirect-arm 8
41 CONSTANT: rc-indirect-arm-pc 9
42 CONSTANT: rc-absolute-2 10
43
44 ! Relocation types
45 CONSTANT: rt-primitive 0
46 CONSTANT: rt-dlsym 1
47 CONSTANT: rt-dispatch 2
48 CONSTANT: rt-xt 3
49 CONSTANT: rt-xt-pic 4
50 CONSTANT: rt-xt-pic-tail 5
51 CONSTANT: rt-here 6
52 CONSTANT: rt-this 7
53 CONSTANT: rt-literal 8
54 CONSTANT: rt-context 9
55 CONSTANT: rt-untagged 10
56 CONSTANT: rt-megamorphic-cache-hits 11
57 CONSTANT: rt-vm 12
58 CONSTANT: rt-cards-offset 13
59 CONSTANT: rt-decks-offset 14
60
61 : rc-absolute? ( n -- ? )
62     ${ rc-absolute-ppc-2/2 rc-absolute-cell rc-absolute } member? ;