/core/bootstrap/layouts/layouts.factor
http://github.com/abeaumont/factor · Factor · 32 lines · 24 code · 6 blank · 2 comment · 0 complexity · b35b194f1f245693c36bac981f7b76a6 MD5 · raw file
- ! Copyright (C) 2007, 2009 Slava Pestov.
- ! See http://factorcode.org/license.txt for BSD license.
- USING: alien arrays byte-arrays kernel layouts math namespaces
- quotations strings words ;
- 16 data-alignment set
- 0b1111 tag-mask set
- 4 tag-bits set
- 14 num-types set
- 32 mega-cache-size set
- H{
- { fixnum 0 }
- { POSTPONE: f 1 }
- { array 2 }
- { float 3 }
- { quotation 4 }
- { bignum 5 }
- { alien 6 }
- { tuple 7 }
- { wrapper 8 }
- { byte-array 9 }
- { callstack 10 }
- { string 11 }
- { word 12 }
- { dll 13 }
- } type-numbers set
- 2 header-bits set