ObjFW  Diff

Differences From Artifact [4b98720144]:

To Artifact [4686eccab8]:


11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29


30
31
32


33
34
35


36
37
38
39


40
41
42
43



44
45

46
47

48
49
50


51
52
53


54
55
56
57
58
59


60
61
62
63
64
65




66
67
68



69
70

71
72
73
74
75
76
77
78




79
80
81
82



83
84
85
86
87
88
89
90
91

92
93
94
95

96
11
12
13
14
15
16
17


18
19
20
21
22
23
24
25


26
27
28


29
30
31


32
33
34
35


36
37
38



39
40
41
42

43
44

45
46


47
48
49


50
51
52
53
54
55


56
57
58
59
60



61
62
63
64
65


66
67
68
69

70
71
72
73
74




75
76
77
78
79



80
81
82
83
84
85
86
87
88
89
90

91
92
93
94

95
96







-
-








-
-
+
+

-
-
+
+

-
-
+
+


-
-
+
+

-
-
-
+
+
+

-
+

-
+

-
-
+
+

-
-
+
+




-
-
+
+



-
-
-
+
+
+
+

-
-
+
+
+

-
+




-
-
-
-
+
+
+
+

-
-
-
+
+
+








-
+



-
+

 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * 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
.macro generate_lookup name not_found
\name:
	test	rcx, rcx
	jz	short ret_nil
	testq	%rcx, %rcx
	jz	ret_nil

	test	cl, 1
	jnz	short .Ltagged_pointer_\name
	testb	$1, %cl
	jnz	.Ltagged_pointer_\name

	mov	r8, [rcx]
	mov	r8, [r8+56]
	movq	(%rcx), %r8
	movq	56(%r8), %r8

.Lmain_\name:
	mov	r10, rcx
	mov	r11, rdx
	movq	%rcx, %r10
	movq	%rdx, %r11

	mov	rax, [rdx]
	movzx	ecx, ah
	movzx	edx, al
	movq	(%rdx), %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
	jz	short 0f
	testq	%rax, %rax
	jz	0f

	ret

0:
	mov	rcx, r10
	mov	rdx, r11
	movq	%r10, %rcx
	movq	%r11, %rdx
	jmp	\not_found

.Ltagged_pointer_\name:
	xor	rcx, objc_tagged_pointer_secret
	and	cl, 0xE
	movzx	r8, cl
	movq	objc_tagged_pointer_secret(%rip), %rax
	xorq	(%rax), %rcx
	andb	$0xE, %cl
	movzbl	%cl, %r8d

	mov	r8, [objc_tagged_pointer_classes+r8*4]
	mov	r8, [r8+56]
	movq	objc_tagged_pointer_classes(%rip), %rax
	movq	(%rax,%r8,4), %r8
	movq	56(%r8), %r8

	jmp	short .Lmain_\name
	jmp	.Lmain_\name
.endm

.macro generate_lookup_super name lookup
\name:
	mov	r8, rcx
	mov	rcx, [rcx]
	test	rcx, rcx
	jz	short ret_nil
	movq	%rcx, %r8
	movq	(%rcx), %rcx
	testq	%rcx, %rcx
	jz	ret_nil

	mov	r8, [r8+8]
	mov	r8, [r8+56]
	jmp	short .Lmain_\lookup
	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
generate_lookup_super objc_msg_lookup_super_stret objc_msg_lookup_stret

ret_nil:
	mov	rax, offset nil_method
	movq	nil_method(%rip), %rax
	ret

nil_method:
	xor	rax, rax
	xorq	%rax, %rax
	ret