Index: src/runtime/lookup-asm/lookup-asm-x86_64-macho.S ================================================================== --- src/runtime/lookup-asm/lookup-asm-x86_64-macho.S +++ src/runtime/lookup-asm/lookup-asm-x86_64-macho.S @@ -13,78 +13,76 @@ * file. */ #include "config.h" -.intel_syntax noprefix - .globl _objc_msg_lookup .globl _objc_msg_lookup_stret .globl _objc_msg_lookup_super .globl _objc_msg_lookup_super_stret .section __TEXT, __text, regular, pure_instructions .macro generate_lookup $0: - test rdi, rdi + testq %rdi, %rdi jz ret_nil - bt edi, 0 + btl $$0, %edi jc Ltagged_pointer_$0 - mov r8, [rdi] - mov r8, [r8+64] + movq (%rdi), %r8 + movq 64(%r8), %r8 Lmain_$0: - mov rax, [rsi] - movzx ecx, ah - movzx edx, al + movq (%rsi), %rax + movzbl %ah, %ecx + movzbl %al, %edx #ifdef OF_SELUID24 - shr eax, 16 + shrl $$16, %eax - mov r8, [r8+rax*8] + movq (%r8,%rax,8), %r8 #endif - mov r8, [r8+rcx*8] - mov rax, [r8+rdx*8] + movq (%r8,%rcx,8), %r8 + movq (%r8,%rdx,8), %rax - test rax, rax + testq %rax, %rax jz $1 ret Ltagged_pointer_$0: - mov rax, [rip+_objc_tagged_pointer_secret@GOTPCREL] - xor rdi, [rax] - and dil, 0xE - movzx r8, dil - - mov rax, [rip+_objc_tagged_pointer_classes@GOTPCREL] - mov r8, [rax+r8*4] - mov r8, [r8+64] + movq _objc_tagged_pointer_secret@GOTPCREL(%rip), %rax + xorq (%rax), %rdi + andb $$0xE, %dil + movzbq %dil, %r8 + + movq _objc_tagged_pointer_classes@GOTPCREL(%rip), %rax + movq (%rax,%r8,4), %r8 + movq 64(%r8), %r8 jmp Lmain_$0 .endmacro .macro generate_lookup_super $0: - mov r8, rdi - mov rdi, [rdi] - test rdi, rdi + movq %rdi, %r8 + movq (%rdi), %rdi + testq %rdi, %rdi jz ret_nil - mov r8, [r8+8] - mov r8, [r8+64] + movq 8(%r8), %r8 + movq 64(%r8), %r8 jmp Lmain_$1 .endmacro 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 generate_lookup_super _objc_msg_lookup_super_stret, _objc_msg_lookup_stret ret_nil: - lea rax, [rip+nil_method] + leaq nil_method(%rip), %rax ret nil_method: - mov rax, rdi + movq %rdi, %rax ret