Differences From Artifact [f8917d36c7]:
- File src/runtime/lookup-asm/lookup-asm-amd64-elf.S — part of check-in [f4cf33fee6] at 2014-01-15 18:53:48 on branch trunk — lookup-asm: Clean up local labels. (user: js, size: 1732) [annotate] [blame] [check-ins using]
To Artifact [12b1d6de58]:
- File
src/runtime/lookup-asm/lookup-asm-amd64-elf.S
— part of check-in
[452bdb4a5f]
at
2014-02-19 13:05:17
on branch trunk
— lookup-asm-amd64-*: Remove useless mov
This mov was not correctly translated when the code was converted from
Intel syntax to AT&T syntax, but this never caused any trouble as rdi is
not used in the code it jumps to anyway. (user: js, size: 1715) [annotate] [blame] [check-ins using] - File src/runtime/lookup-asm/lookup-asm-x86_64-elf.S — part of check-in [05f4b0a4f0] at 2014-02-22 01:14:03 on branch trunk — Rename AMD64 to x86_64 (user: js, size: 1715) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
54 55 56 57 58 59 60 | \name: movq (%rdi), %rax testq %rax, %rax jz ret_nil movq 8(%rdi), %r8 movq 64(%r8), %r8 | < | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | \name: movq (%rdi), %rax testq %rax, %rax jz ret_nil movq 8(%rdi), %r8 movq 64(%r8), %r8 jmp .Lmain_\lookup .type \name, %function .size \name, .-\name .endm generate_lookup objc_msg_lookup objc_method_not_found generate_lookup objc_msg_lookup_stret objc_method_not_found_stret |
︙ | ︙ |