urbit/i/g/a.h

528 lines
18 KiB
C
Raw Normal View History

2014-09-04 07:44:53 +04:00
/* include/g/a.h
**
** This file is in the public domain.
*/
/** Tunables.
**/
# undef U3_MEMORY_DEBUG
# ifdef U3_MEMORY_DEBUG
2014-11-06 03:02:36 +03:00
# define u3_ca_leak_on(x) (u3_Code = x)
# define u3_ca_leak_off (u3_Code = 0)
# endif
2014-09-04 07:44:53 +04:00
2014-11-06 03:02:36 +03:00
# define u3_ca_bits U3_OS_LoomBits // 28, max 29
# define u3_ca_page 12 // 16Kbyte pages
# define u3_ca_pages (1 << (u3_ca_bits - u3_ca_page)) // 2^16 pages
# define u3_ca_words (1 << u3_ca_bits)
# define u3_ca_bytes (c3_w)((1 << (2 + u3_ca_bits)))
/** Data structures.
**/
/* u3_post: pointer offset into u3_Loom; _p suffix; declare as u3p().
*/
typedef c3_w u3_post;
# define u3p(type) u3_post
/* u3_noun: tagged pointer.
**
** If bit 31 is 0, a u3_noun is a direct 31-bit atom ("cat").
** If bit 31 is 1 and bit 30 0, an indirect atom ("pug").
** If bit 31 is 1 and bit 30 1, an indirect cell ("pom").
**
** Bits 0-29 are a word offset against u3_Loom (u3_post).
*/
typedef c3_w u3_noun;
2014-11-06 02:36:30 +03:00
/* u3_none - out-of-band noun.
*/
2014-11-06 02:36:30 +03:00
# define u3_none (u3_noun)0xffffffff
/* Informative typedefs. Use if you like.
*/
typedef u3_noun u3_atom; // must be atom
typedef u3_noun u3_term; // @tas
typedef u3_noun u3_mote; // @tas
typedef u3_noun u3_cell; // must be cell
typedef u3_noun u3_trel; // must be triple
typedef u3_noun u3_qual; // must be quadruple
typedef u3_noun u3_quin; // must be quintuple
2014-11-05 04:18:47 +03:00
typedef u3_noun u3_bean; // loobean: 0 == c3y, 1 == c3n
2014-11-06 02:36:30 +03:00
typedef u3_noun u3_weak; // may be u3_none
typedef u3_noun (*u3_funk)(u3_noun);
typedef u3_noun (*u3_funq)(u3_noun, u3_noun);
/** Typedefs.
**/
/* u3_atom, u3_cell: logical atom and cell structures.
*/
typedef struct {
c3_w mug_w;
2014-11-06 03:02:36 +03:00
} u3_ca_noun;
typedef struct {
c3_w mug_w;
c3_w len_w;
c3_w buf_w[0];
2014-11-06 03:02:36 +03:00
} u3_ca_atom;
typedef struct {
c3_w mug_w;
u3_noun hed;
u3_noun tel;
2014-11-06 03:02:36 +03:00
} u3_ca_cell;
/* Inside a noun.
*/
2014-11-05 04:18:47 +03:00
# define u3_ca_is_cat(som) (((som) >> 31) ? c3n : c3y)
# define u3_ca_is_dog(som) (((som) >> 31) ? c3y : c3n)
2014-11-05 03:53:07 +03:00
2014-11-05 04:18:47 +03:00
# define u3_ca_is_pug(som) ((2 == ((som) >> 30)) ? c3y : c3n)
# define u3_ca_is_pom(som) ((3 == ((som) >> 30)) ? c3y : c3n)
2014-11-05 03:53:07 +03:00
# define u3_ca_to_off(som) ((som) & 0x3fffffff)
# define u3_ca_to_ptr(som) (u3_ca_into(u3_ca_to_off(som)))
# define u3_ca_to_wtr(som) ((c3_w *)u3_ca_to_ptr(som))
# define u3_ca_to_pug(off) (off | 0x80000000)
# define u3_ca_to_pom(off) (off | 0xc0000000)
2014-11-05 04:18:47 +03:00
# define u3_ca_is_atom(som) c3o(u3_ca_is_cat(som), \
2014-11-05 03:53:07 +03:00
u3_ca_is_pug(som))
# define u3_ca_is_cell(som) u3_ca_is_pom(som)
# define u3_ca_de_twin(dog, dog_w) ((dog & 0xc0000000) | u3_ca_outa(dog_w))
# define u3_ca_h(som) \
2014-11-05 04:18:47 +03:00
( _(u3_ca_is_cell(som)) \
2014-11-06 03:02:36 +03:00
? ( ((u3_ca_cell *)u3_ca_to_ptr(som))->hed )\
: u3_cm_bail(c3__exit) )
2014-11-05 03:53:07 +03:00
# define u3_ca_t(som) \
2014-11-05 04:18:47 +03:00
( _(u3_ca_is_cell(som)) \
2014-11-06 03:02:36 +03:00
? ( ((u3_ca_cell *)u3_ca_to_ptr(som))->tel )\
: u3_cm_bail(c3__exit) )
2014-11-06 03:02:36 +03:00
/* u3_ca_box: classic allocation box.
**
** The box size is also stored at the end of the box in classic
** bad ass malloc style. Hence a box is:
**
** ---
** siz_w
** use_w
** if(debug) cod_w
** user data
** siz_w
** ---
**
** Do not attempt to adjust this structure!
*/
2014-11-06 03:02:36 +03:00
typedef struct _u3_ca_box {
c3_w siz_w; // size of this box
c3_w use_w; // reference count; free if 0
# ifdef U3_MEMORY_DEBUG
c3_w eus_w; // recomputed refcount
c3_w cod_w; // tracing code
# endif
2014-11-06 03:02:36 +03:00
} u3_ca_box;
2014-11-06 03:02:36 +03:00
# define u3_ca_boxed(len_w) (len_w + c3_wiseof(u3_ca_box) + 1)
2014-11-05 03:53:07 +03:00
# define u3_ca_boxto(box_v) ( (void *) \
( ((c3_w *)(void*)(box_v)) + \
2014-11-06 03:02:36 +03:00
c3_wiseof(u3_ca_box) ) )
# define u3_ca_botox(tox_v) ( (struct _u3_ca_box *) \
(void *) \
( ((c3_w *)(void*)(tox_v)) - \
2014-11-06 03:02:36 +03:00
c3_wiseof(u3_ca_box) ) )
2014-11-06 03:02:36 +03:00
/* u3_ca_fbox: free node in heap. Sets minimum node size.
**
*/
2014-11-06 03:02:36 +03:00
typedef struct _u3_ca_fbox {
u3_ca_box box_u;
u3p(struct _u3_ca_fbox) pre_p;
u3p(struct _u3_ca_fbox) nex_p;
} u3_ca_fbox;
# define u3_cc_minimum 6
# define u3_cc_fbox_no 28
/* u3_cs_road: contiguous allocation and execution context.
**
** A road is a normal heap-stack system, except that the heap
** and stack can point in either direction. Therefore, inside
** a road, we can nest another road in the opposite direction.
**
** When the opposite road completes, its heap is left on top of
** the opposite heap's stack. It's no more than the normal
** behavior of a stack machine for all subcomputations to push
** their results, internally durable, on the stack.
**
** The performance tradeoff of "leaping" - reversing directions
** in the road - is that if the outer computation wants to
** preserve the results of the inner one, not just use them for
** temporary purposes, it has to copy them.
**
** This is a trivial cost in some cases, a prohibitive cost in
** others. The upside, of course, is that all garbage accrued
** in the inner computation is discarded at zero cost.
**
** The goal of the road system is the ability to *layer* memory
** models. If you are allocating on a road, you have no idea
** how deep within a nested road system you are - in other words,
** you have no idea exactly how durable your result may be.
** But free space is never fragmented within a road.
**
** Roads do not reduce the generality or performance of a memory
** system, since even the most complex GC system can be nested
** within a road at no particular loss of performance - a road
** is just a block of memory. The cost of road allocation is,
** at least in theory, the branch prediction hits when we try to
** decide which side of the road we're allocating on. The road
** system imposes no pointer read or write barriers, of course.
**
** The road can point in either direction. If cap > hat, it
** looks like this ("north"):
**
** 0 rut hat ffff
** | | | |
** |~~~~~~~~~~~~-------##########################+++++++$~~~~~|
** | | | |
** 0 cap mat ffff
**
** Otherwise, it looks like this ("south"):
**
** 0 mat cap ffff
** | | | |
** |~~~~~~~~~~~~$++++++##########################--------~~~~~|
** | | | |
** 0 hat rut ffff
**
** Legend: - is durable storage (heap); + is temporary storage
** (stack); ~ is deep storage (immutable); $ is the allocation block;
** # is free memory.
**
** Pointer restrictions: pointers stored in + can point anywhere,
** except to more central pointers in +. (Ie, all pointers from
** stack to stack must point downward on the stack.) Pointers in
** - can only point to - or ~; pointers in ~ only point to ~.
**
** To "leap" is to create a new inner road in the ### free space.
** but in the reverse direction, so that when the inner road
** "falls" (terminates), its durable storage is left on the
** temporary storage of the outer road.
**
** In all cases, the pointer in a u3_noun is a word offset into
** u3H, the top-level road.
*/
typedef struct _u3_cs_road {
struct _u3_cs_road* par_u; // parent road
struct _u3_cs_road* kid_u; // child road list
struct _u3_cs_road* nex_u; // sibling road
struct _u3_cs_road* now_u; // current road pointer
u3p(c3_w) cap_p; // top of transient region
u3p(c3_w) hat_p; // top of durable region
u3p(c3_w) mat_p; // bottom of transient region
u3p(c3_w) rut_p; // bottom of durable region
u3p(c3_w) ear_p; // original cap if kid is live
c3_w fut_w[32]; // futureproof buffer
struct { // escape buffer
union {
jmp_buf buf;
c3_w buf_w[256]; // futureproofing
};
} esc;
struct { // miscellaneous config
c3_w fag_w; // flag bits
} how; //
struct { // allocation pools
2014-11-06 03:02:36 +03:00
u3p(u3_ca_fbox) fre_p[u3_cc_fbox_no]; // heap by node size log
c3_w fre_w; // number of free words
} all;
struct { // jet dashboard
u3p(u3_ch_root) har_p; // jet index (old style)
u3_noun das; // dashboard (new style)
} jed;
struct { // namespace
u3_noun flu; // (list $+(* (unit))), inward
} ski;
struct { // trace stack
u3_noun tax; // (list ,*)
u3_noun mer; // emergency buffer to release
} bug;
struct { // profile stack
c3_d nox_d; // nock steps
u3_noun don; // ++path
u3_noun day; // profile data, ++doss
} pro;
struct { // memoization
u3p(u3_ch_root) har_p; // (map (pair term noun) noun)
} cax;
} u3_cs_road;
typedef u3_cs_road u3_road;
/** Flags.
**/
2014-11-06 03:02:36 +03:00
enum u3_ca_flag {
u3_ca_flag_debug = 0x1, // debug memory
u3_ca_flag_gc = 0x2, // garbage collect once
u3_ca_flag_sand = 0x4, // sand mode, bump allocation
u3_ca_flag_die = 0x8 // process was asked to exit
};
/** Macros.
**/
2014-11-05 03:53:07 +03:00
# define u3_ca_into(x) ((void *)(u3_Loom + (x)))
# define u3_ca_outa(p) (((c3_w*)(void*)(p)) - u3_Loom)
2014-11-05 03:53:07 +03:00
# define u3to(type, x) ((type *) u3_ca_into(x))
# define u3of(type, x) (u3_ca_outa((type *)x))
2014-11-05 04:18:47 +03:00
# define u3_ca_is_north(r) __(r->cap_p > r->hat_p)
# define u3_ca_is_south(r) !u3_ca_is_north(r)
2014-11-05 04:18:47 +03:00
# define u3_ca_open(r) ( (c3y == u3_ca_is_north(r)) \
? (c3_w)(r->cap_p - r->hat_p) \
: (c3_w)(r->hat_p - r->cap_p) )
2014-11-05 03:53:07 +03:00
# define u3_ca_north_is_senior(r, dog) \
2014-11-05 04:18:47 +03:00
__((u3_ca_to_off(dog) < r->rut_p) || \
2014-11-05 03:53:07 +03:00
(u3_ca_to_off(dog) >= r->mat_p))
2014-11-05 03:53:07 +03:00
# define u3_ca_north_is_junior(r, dog) \
2014-11-05 04:18:47 +03:00
__((u3_ca_to_off(dog) >= r->cap_p) && \
2014-11-05 03:53:07 +03:00
(u3_ca_to_off(dog) < r->mat_p))
2014-11-05 03:53:07 +03:00
# define u3_ca_north_is_normal(r, dog) \
2014-11-05 04:18:47 +03:00
c3a(!(u3_ca_north_is_senior(r, dog)), \
!(u3_ca_north_is_junior(r, dog)))
2014-11-05 03:53:07 +03:00
# define u3_ca_south_is_senior(r, dog) \
2014-11-05 04:18:47 +03:00
__((u3_ca_to_off(dog) < r->mat_p) || \
2014-11-05 03:53:07 +03:00
(u3_ca_to_off(dog) >= r->rut_p))
2014-11-05 03:53:07 +03:00
# define u3_ca_south_is_junior(r, dog) \
2014-11-05 04:18:47 +03:00
__((u3_ca_to_off(dog) < r->cap_p) && \
2014-11-05 03:53:07 +03:00
(u3_ca_to_off(dog) >= r->mat_p))
2014-11-05 03:53:07 +03:00
# define u3_ca_south_is_normal(r, dog) \
2014-11-05 04:18:47 +03:00
c3a(!(u3_ca_south_is_senior(r, dog)), \
!(u3_ca_south_is_junior(r, dog)))
2014-11-05 03:53:07 +03:00
# define u3_ca_is_junior(r, som) \
2014-11-05 04:18:47 +03:00
( _(u3_ca_is_cat(som)) \
? c3n \
: _(u3_ca_is_north(r)) \
2014-11-05 03:53:07 +03:00
? u3_ca_north_is_junior(r, som) \
: u3_ca_south_is_junior(r, som) )
2014-11-05 03:53:07 +03:00
# define u3_ca_is_senior(r, som) \
2014-11-05 04:18:47 +03:00
( _(u3_ca_is_cat(som)) \
? c3y \
: _(u3_ca_is_north(r)) \
2014-11-05 03:53:07 +03:00
? u3_ca_north_is_senior(r, som) \
: u3_ca_south_is_senior(r, som) )
/* Word axis macros. For 31-bit axes only.
*/
/* u3_ax_dep(): number of axis bits.
*/
# define u3_ax_dep(a_w) (c3_bits_word(a_w) - 1)
/* u3_ax_cap(): root axis, 2 or 3.
*/
# define u3_ax_cap(a_w) (0x2 | (a_w >> (u3_ax_dep(a_w) - 1)))
/* u3_ax_mas(): remainder after cap.
*/
# define u3_ax_mas(a_w) \
( (a_w & ~(1 << u3_ax_dep(a_w))) | (1 << (u3_ax_dep(a_w) - 1)) )
/* u3_ax_peg(): connect two axes.
*/
# define u3_ax_peg(a_w, b_w) \
( (a_w << u3_ax_dep(b_w)) | (b_w &~ (1 << u3_ax_dep(b_w))) )
/* Conventional axes for gate call.
*/
# define u3_cv_pay 3 // payload
# define u3_cv_sam 6 // sample
# define u3_cv_sam_1 6
# define u3_cv_sam_2 12
# define u3_cv_sam_3 13
# define u3_cv_sam_4 24
# define u3_cv_sam_5 25
# define u3_cv_sam_6 26
# define u3_cv_sam_12 52
# define u3_cv_sam_13 53
# define u3_cv_sam_7 27
# define u3_cv_con 7 // context
# define u3_cv_con_2 14 // context
# define u3_cv_con_3 15 // context
# define u3_cv_con_sam 30 // sample in gate context
# define u3_cv_noc 2 // deprecated
# define u3_cv_bat 2 // battery
/** Globals.
**/
/* u3_Road / u3R: current road (thread-local).
*/
c3_global u3_road* u3_Road;
# define u3R u3_Road
/* u3_Code: memory code.
*/
#ifdef U3_MEMORY_DEBUG
c3_global c3_w u3_Code;
#endif
2014-11-05 03:53:07 +03:00
# define u3_Loom ((c3_w *)(void *)U3_OS_LoomBase)
/** Functions.
**/
2014-09-04 07:44:53 +04:00
/** Allocation.
**/
/* Basic allocation.
*/
2014-09-06 00:13:24 +04:00
/* u3_ca_walloc(): allocate storage measured in words.
2014-09-04 07:44:53 +04:00
*/
void*
2014-09-06 00:13:24 +04:00
u3_ca_walloc(c3_w len_w);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_ca_malloc(): allocate storage measured in bytes.
2014-09-04 07:44:53 +04:00
*/
void*
2014-09-06 00:13:24 +04:00
u3_ca_malloc(c3_w len_w);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_ca_free(): free storage.
2014-09-04 07:44:53 +04:00
*/
void
2014-09-06 00:13:24 +04:00
u3_ca_free(void* lag_v);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_ca_wealloc(): word realloc.
2014-09-04 07:44:53 +04:00
*/
void*
2014-09-06 00:13:24 +04:00
u3_ca_wealloc(void* lag_v, c3_w len_w);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_ca_realloc(): byte realloc.
2014-09-04 07:44:53 +04:00
*/
void*
2014-09-06 00:13:24 +04:00
u3_ca_realloc(void* lag_v, c3_w len_w);
2014-09-04 07:44:53 +04:00
/* Reference and arena control.
*/
2014-10-01 10:34:30 +04:00
/* u3_ca_gain(): gain a reference count in normal space.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_weak
u3_ca_gain(u3_weak som);
2014-09-04 07:44:53 +04:00
2014-10-01 10:34:30 +04:00
/* u3_ca_take(): gain, copying juniors.
*/
u3_noun
u3_ca_take(u3_noun som);
2014-10-31 00:40:05 +03:00
/* u3_ca_left(): true of junior if preserved.
*/
c3_o
u3_ca_left(u3_noun som);
2014-09-06 00:13:24 +04:00
/* u3_ca_lose(): lose a reference.
2014-09-04 07:44:53 +04:00
*/
void
2014-09-06 00:13:24 +04:00
u3_ca_lose(u3_weak som);
2014-09-04 07:44:53 +04:00
2014-10-24 04:35:26 +04:00
/* u3_ca_wash(): wash all lazy mugs in subtree. RETAIN.
*/
void
u3_ca_wash(u3_noun som);
2014-09-06 00:13:24 +04:00
/* u3_ca_use(): reference count.
2014-09-04 07:44:53 +04:00
*/
c3_w
2014-09-06 00:13:24 +04:00
u3_ca_use(u3_noun som);
2014-09-04 07:44:53 +04:00
2014-10-09 06:20:57 +04:00
/* u3_ca_mark_ptr(): mark a pointer for gc. Produce size.
2014-09-04 07:44:53 +04:00
*/
c3_w
2014-10-09 06:20:57 +04:00
u3_ca_mark_ptr(void* ptr_v);
2014-09-04 07:44:53 +04:00
2014-10-09 06:20:57 +04:00
/* u3_ca_mark_noun(): mark a noun for gc. Produce size.
2014-09-04 07:44:53 +04:00
*/
c3_w
2014-10-09 06:20:57 +04:00
u3_ca_mark_noun(u3_noun som);
/* u3_ca_sweep(): sweep a fully marked road.
*/
void
u3_ca_sweep(c3_c* cap_c);
2014-09-04 07:44:53 +04:00
2014-09-16 03:56:37 +04:00
/* u3_ca_sane(): check allocator sanity.
*/
void
u3_ca_sane(void);
2014-09-04 07:44:53 +04:00
2014-10-11 09:32:58 +04:00
/* u3_ca_detect(): axis (som) is referenced from (fum).
**
** (som) and (fum) are both RETAINED.
*/
c3_d
u3_ca_detect(u3_noun fum, u3_noun som);
2014-10-10 05:27:02 +04:00
/* u3_ca_lush(): leak push.
*/
c3_w
u3_ca_lush(c3_w lab_w);
/* u3_ca_lop(): leak pop.
*/
void
u3_ca_lop(c3_w lab_w);
2014-10-31 00:40:05 +03:00
/* u3_ca_print_memory: print memory amount.
*/
void
u3_ca_print_memory(c3_c* cap_c, c3_w wor_w);
2014-09-04 07:44:53 +04:00
/* Atoms from proto-atoms.
*/
2014-09-06 00:13:24 +04:00
/* u3_ca_slab(): create a length-bounded proto-atom.
2014-09-04 07:44:53 +04:00
*/
c3_w*
2014-09-06 00:13:24 +04:00
u3_ca_slab(c3_w len_w);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_ca_slaq(): u3_ca_slaq() with a defined blocksize.
2014-09-04 07:44:53 +04:00
*/
c3_w*
2014-09-06 00:13:24 +04:00
u3_ca_slaq(c3_g met_g, c3_w len_w);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_ca_malt(): measure and finish a proto-atom.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_ca_malt(c3_w* sal_w);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_ca_moot(): finish a pre-measured proto-atom; dangerous.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_ca_moot(c3_w* sal_w);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_ca_mint(): finish a measured proto-atom.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_ca_mint(c3_w* sal_w, c3_w len_w);
2014-09-04 07:44:53 +04:00