diff options
author | John van Groningen | 2007-05-09 14:31:55 +0000 |
---|---|---|
committer | John van Groningen | 2007-05-09 14:31:55 +0000 |
commit | 4dba143ec955655e751cff4979de7cda2dd32699 (patch) | |
tree | 758458b7bb44ece7c6abbb2b76fac87d3d5dc8ed /amark_prefetch.asm | |
parent | add int_array_to_node and real_array_to_node (diff) |
add arrays of 32 bit integers and reals
Diffstat (limited to 'amark_prefetch.asm')
-rw-r--r-- | amark_prefetch.asm | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/amark_prefetch.asm b/amark_prefetch.asm index f3bb0bc..f2f632c 100644 --- a/amark_prefetch.asm +++ b/amark_prefetch.asm @@ -880,10 +880,14 @@ pmark_array_using_reversal: pmark_strict_basic_array: mov rax,qword ptr 8[rcx] + cmp rbp,offset dINT+2 + jle pmark_strict_int_or_real_array cmp rbp,offset BOOL+2 je pmark_strict_bool_array -pmark_strict_real_array: -pmark_strict_int_array: + add rax,6+1 + shr rax,1 + jmp pmark_basic_array_ +pmark_strict_int_or_real_array: add rax,3 jmp pmark_basic_array_ pmark_strict_bool_array: @@ -999,8 +1003,8 @@ pmarkr_no_shared_argument_part: shl rbp,3 or qword ptr [rdx],1 - add rax,rbp - add rdx,rbp + add rax,rbp + add rdx,rbp cmp rax,32*8 jbe pmarkr_fits_in_word_2 @@ -1704,10 +1708,14 @@ pmarkr_b_record_array: pmarkr_strict_basic_array: mov rax,qword ptr 8[rcx] + cmp rbp,offset dINT+2 + jle pmarkr_strict_int_or_real_array cmp rbp,offset BOOL+2 je pmarkr_strict_bool_array -pmarkr_strict_real_array: -pmarkr_strict_int_array: + add rax,6+1 + shr rax,1 + jmp pmarkr_basic_array +pmarkr_strict_int_or_real_array: add rax,3 jmp pmarkr_basic_array pmarkr_strict_bool_array: |