2010-09-23 17:46:31 -05:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
|
|
|
|
// FIXME: Most of these should be uints.
|
2011-07-27 07:19:39 -05:00
|
|
|
const rc_base_field_refcnt: int = 0;
|
2010-09-23 17:46:31 -05:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-05-12 10:24:54 -05:00
|
|
|
// FIXME: import from std::dbg when imported consts work.
|
2011-07-27 07:19:39 -05:00
|
|
|
const const_refcount: uint = 0x7bad_face_u;
|
2010-11-09 19:49:20 -06:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const task_field_refcnt: int = 0;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const task_field_stk: int = 2;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const task_field_runtime_sp: int = 3;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const task_field_rust_sp: int = 4;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const task_field_gc_alloc_chain: int = 5;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const task_field_dom: int = 6;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const n_visible_task_fields: int = 7;
|
2010-09-23 17:46:31 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const dom_field_interrupt_flag: int = 1;
|
2010-09-23 17:46:31 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const frame_glue_fns_field_mark: int = 0;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const frame_glue_fns_field_drop: int = 1;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const frame_glue_fns_field_reloc: int = 2;
|
2010-09-23 17:46:31 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const box_rc_field_refcnt: int = 0;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const box_rc_field_body: int = 1;
|
2010-09-23 17:46:31 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const general_code_alignment: int = 16;
|
2010-09-23 17:46:31 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const vec_elt_rc: int = 0;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const vec_elt_alloc: int = 1;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const vec_elt_fill: int = 2;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const vec_elt_pad: int = 3;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const vec_elt_data: int = 4;
|
2010-09-23 17:46:31 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tydesc_field_first_param: int = 0;
|
|
|
|
const tydesc_field_size: int = 1;
|
|
|
|
const tydesc_field_align: int = 2;
|
|
|
|
const tydesc_field_copy_glue: int = 3;
|
|
|
|
const tydesc_field_drop_glue: int = 4;
|
|
|
|
const tydesc_field_free_glue: int = 5;
|
|
|
|
const tydesc_field_sever_glue: int = 6;
|
|
|
|
const tydesc_field_mark_glue: int = 7;
|
2011-04-29 06:34:30 -05:00
|
|
|
// FIXME no longer used in rustc, drop when rustboot is gone
|
2011-07-27 07:19:39 -05:00
|
|
|
const tydesc_field_obj_drop_glue: int = 8;
|
|
|
|
const tydesc_field_is_stateful: int = 9;
|
|
|
|
const tydesc_field_cmp_glue: int = 10;
|
2011-08-04 13:25:09 -05:00
|
|
|
const tydesc_field_shape: int = 11;
|
|
|
|
const tydesc_field_shape_tables: int = 12;
|
|
|
|
const tydesc_field_n_params: int = 13;
|
|
|
|
const n_tydesc_fields: int = 14;
|
2010-12-20 12:23:37 -06:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const cmp_glue_op_eq: uint = 0u;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const cmp_glue_op_lt: uint = 1u;
|
2011-04-18 14:44:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const cmp_glue_op_le: uint = 2u;
|
2010-12-17 01:26:07 -06:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const obj_field_vtbl: int = 0;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const obj_field_box: int = 1;
|
2010-12-17 01:26:07 -06:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const obj_body_elt_tydesc: int = 0;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const obj_body_elt_typarams: int = 1;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const obj_body_elt_fields: int = 2;
|
2010-12-17 01:26:07 -06:00
|
|
|
|
2011-06-28 20:47:36 -05:00
|
|
|
// The base object to which an anonymous object is attached.
|
2011-07-28 16:43:19 -05:00
|
|
|
const obj_body_elt_inner_obj: int = 3;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-06-28 20:47:36 -05:00
|
|
|
// The two halves of a closure: code and environment.
|
2011-07-27 07:19:39 -05:00
|
|
|
const fn_field_code: int = 0;
|
|
|
|
const fn_field_box: int = 1;
|
2010-09-23 17:46:31 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const closure_elt_tydesc: int = 0;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 17:14:59 -05:00
|
|
|
const closure_elt_bindings: int = 1;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 17:14:59 -05:00
|
|
|
const closure_elt_ty_params: int = 2;
|
2011-01-05 20:57:28 -06:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const ivec_default_length: uint = 4u;
|
2011-06-10 21:35:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const ivec_elt_len: uint = 0u;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const ivec_elt_alen: uint = 1u;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const ivec_elt_elems: uint = 2u;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const ivec_heap_stub_elt_zero: uint = 0u;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const ivec_heap_stub_elt_alen: uint = 1u;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const ivec_heap_stub_elt_ptr: uint = 2u;
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const ivec_heap_elt_len: uint = 0u;
|
2011-06-10 21:35:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const ivec_heap_elt_elems: uint = 1u;
|
2011-01-05 20:57:28 -06:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const worst_case_glue_call_args: int = 7;
|
2010-09-23 17:46:31 -05:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn memcpy_glue_name() -> str { ret "rust_memcpy_glue"; }
|
2011-01-18 17:38:35 -06:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn bzero_glue_name() -> str { ret "rust_bzero_glue"; }
|
2011-03-02 18:42:09 -06:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn yield_glue_name() -> str { ret "rust_yield_glue"; }
|
2011-01-17 19:24:33 -06:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn no_op_type_glue_name() -> str { ret "rust_no_op_type_glue"; }
|
2010-09-23 17:46:31 -05:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
2011-03-25 17:07:27 -05:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2010-09-23 17:46:31 -05:00
|
|
|
// End:
|
|
|
|
//
|