aboutsummaryrefslogtreecommitdiff
path: root/src/boot/be/x86.ml
diff options
context:
space:
mode:
authorRoy Frostig <[email protected]>2010-07-16 11:17:25 -0700
committerRoy Frostig <[email protected]>2010-07-16 11:17:25 -0700
commit348e434cee42cc2be0a4f5a6e6df8709d3490ff5 (patch)
treec85dc5a5a139ca3950d93b160de42a71f41e0a40 /src/boot/be/x86.ml
parentMerge branch 'contrib' (diff)
downloadrust-348e434cee42cc2be0a4f5a6e6df8709d3490ff5.tar.xz
rust-348e434cee42cc2be0a4f5a6e6df8709d3490ff5.zip
Clean up nomenclature in the Abi constants brigade. Purge magic GEP numbers in trans. Adjust obj_closure_rty (and its consumers) to be more explicit about the fact that it is a box.
Diffstat (limited to 'src/boot/be/x86.ml')
-rw-r--r--src/boot/be/x86.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/boot/be/x86.ml b/src/boot/be/x86.ml
index 811da12a..d5541eb1 100644
--- a/src/boot/be/x86.ml
+++ b/src/boot/be/x86.ml
@@ -830,7 +830,7 @@ let sweep_gc_chain
emit (Il.jmp Il.JE
(codefix exit_jmp_fix)); (* if nonzero *)
mov (rc ecx) (* Load GC ctrl word *)
- (c (edi_n Abi.box_gc_slot_field_ctrl));
+ (c (edi_n Abi.box_gc_field_ctrl));
mov (rc eax) (ro ecx);
band (rc eax) (immi 1L); (* Extract mark to eax. *)
band (* Clear mark in ecx. *)
@@ -840,7 +840,7 @@ let sweep_gc_chain
if clear_mark
then
mov (* Write-back cleared. *)
- ((edi_n Abi.box_gc_slot_field_ctrl))
+ ((edi_n Abi.box_gc_field_ctrl))
(ro ecx);
emit (Il.cmp (ro eax) (immi 0L));
@@ -872,7 +872,7 @@ let sweep_gc_chain
mark skip_jmp_fix;
mov (rc edi) (* Advance down chain *)
- (c (edi_n Abi.box_gc_slot_field_next));
+ (c (edi_n Abi.box_gc_field_next));
emit (Il.jmp Il.JMP
(codefix repeat_jmp_fix)); (* loop *)
mark exit_jmp_fix;