Differences From Artifact [cc90b17b20]:
- File
src/runtime/lookup-asm/lookup-asm-x86_64-win64.S
— part of check-in
[2a27cf3000]
at
2016-01-03 00:41:26
on branch trunk
— Update copyright
While at it, also update the mail address. (user: js, size: 1649) [annotate] [blame] [check-ins using] [more...]
To Artifact [54f61c8cb0]:
- File src/runtime/lookup-asm/lookup-asm-x86_64-win64.S — part of check-in [d4d5a27ccd] at 2016-05-07 19:08:09 on branch trunk — Fix super lookup of missing methods on x86(_64) (user: js, size: 1664) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
54 55 56 57 58 59 60 | movq %r10, %rcx movq %r11, %rdx jmp \not_found .endm .macro generate_lookup_super name lookup \name: | > | | | | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | movq %r10, %rcx movq %r11, %rdx jmp \not_found .endm .macro generate_lookup_super name lookup \name: movq %rcx, %r8 movq (%rcx), %rcx testq %rcx, %rcx jz ret_nil movq 8(%r8), %r8 movq 56(%r8), %r8 jmp .Lmain_\lookup .endm generate_lookup objc_msg_lookup objc_method_not_found generate_lookup objc_msg_lookup_stret objc_method_not_found_stret generate_lookup_super objc_msg_lookup_super objc_msg_lookup |
︙ | ︙ |