diff options
author | John van Groningen | 2013-07-03 11:23:08 +0000 |
---|---|---|
committer | John van Groningen | 2013-07-03 11:23:08 +0000 |
commit | ecc5f9b8057bf1b2c2292f7e95079e6453ce5d4b (patch) | |
tree | f9646a039ca838abea2686349f2c7722cbcea163 /macho64 | |
parent | fix bp (diff) |
fix compacting for an empty A stack
Diffstat (limited to 'macho64')
-rw-r--r-- | macho64/acompact_rmark_prefetch.s | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macho64/acompact_rmark_prefetch.s b/macho64/acompact_rmark_prefetch.s index 4ca3ec5..d915fef 100644 --- a/macho64/acompact_rmark_prefetch.s +++ b/macho64/acompact_rmark_prefetch.s @@ -21,10 +21,11 @@ rmarkp_stack_nodes1: rmarkp_next_stack_node: add rsi,8 +rmarkp_stack_nodes: cmp rsi,qword ptr end_vector[rip] je end_rmarkp_nodes -rmarkp_stack_nodes: +rmarkp_more_stack_nodes: mov rcx,qword ptr [rsi] mov rax,qword ptr neg_heap_p3[rip] @@ -50,7 +51,7 @@ rmarkp_stack_nodes: add rsi,8 cmp rsi,qword ptr end_vector[rip] - att_jne rmarkp_stack_nodes + att_jne rmarkp_more_stack_nodes ret rmarkp_stack_node: |