8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- pub static rc_base_field_refcnt: uint = 0 u;
12
-
13
- pub static task_field_refcnt: uint = 0 u;
14
-
15
- pub static task_field_stk: uint = 2 u;
16
-
17
- pub static task_field_runtime_sp: uint = 3 u;
18
-
19
- pub static task_field_rust_sp: uint = 4 u;
20
-
21
- pub static task_field_gc_alloc_chain: uint = 5 u;
22
-
23
- pub static task_field_dom: uint = 6 u;
24
-
25
- pub static n_visible_task_fields: uint = 7 u;
26
-
27
- pub static dom_field_interrupt_flag: uint = 1 u;
28
-
29
- pub static frame_glue_fns_field_mark: uint = 0 u;
30
-
31
- pub static frame_glue_fns_field_drop: uint = 1 u;
32
-
33
- pub static frame_glue_fns_field_reloc: uint = 2 u;
34
-
35
11
pub static box_field_refcnt: uint = 0 u;
36
12
pub static box_field_tydesc: uint = 1 u;
37
- pub static box_field_prev: uint = 2 u;
38
- pub static box_field_next: uint = 3 u;
39
13
pub static box_field_body: uint = 4 u;
40
14
41
- pub static general_code_alignment: uint = 16 u;
42
-
43
- pub static tydesc_field_size: uint = 0 u;
44
- pub static tydesc_field_align: uint = 1 u;
45
- pub static tydesc_field_drop_glue: uint = 2 u;
46
15
pub static tydesc_field_visit_glue: uint = 3 u;
47
- pub static tydesc_field_name_offset: uint = 4 u;
48
- pub static n_tydesc_fields: uint = 5 u;
49
16
50
17
// The two halves of a closure: code and environment.
51
18
pub static fn_field_code: uint = 0 u;
@@ -64,5 +31,3 @@ pub static vec_elt_elems: uint = 2u;
64
31
65
32
pub static slice_elt_base: uint = 0 u;
66
33
pub static slice_elt_len: uint = 1 u;
67
-
68
- pub static abi_version: uint = 1 u;
0 commit comments