1
2
3
4
5
6
7
8
9
10
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
use crate::{objc_class, objc_object};
#[cfg(any(gnustep, objfw))]
use crate::{objc_selector, IMP};
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct objc_super {
pub receiver: *mut objc_object,
pub super_class: *const objc_class,
}
extern_c! {
#[cfg(any(gnustep, objfw))]
pub fn objc_msg_lookup(receiver: *mut objc_object, sel: *const objc_selector) -> IMP;
#[cfg(objfw)]
pub fn objc_msg_lookup_stret(receiver: *mut objc_object, sel: *const objc_selector) -> IMP;
#[cfg(any(gnustep, objfw))]
pub fn objc_msg_lookup_super(sup: *const objc_super, sel: *const objc_selector) -> IMP;
#[cfg(objfw)]
pub fn objc_msg_lookup_super_stret(sup: *const objc_super, sel: *const objc_selector) -> IMP;
#[cfg(not(objfw))]
pub fn objc_msgSend();
#[cfg(apple)]
pub fn objc_msgSendSuper();
#[cfg(apple)]
pub fn method_invoke();
#[cfg(apple)]
pub fn _objc_msgForward();
pub fn class_getMethodImplementation();
#[cfg(all(not(objfw), not(target_arch = "aarch64")))]
pub fn objc_msgSend_stret();
#[cfg(all(apple, not(target_arch = "aarch64")))]
pub fn objc_msgSendSuper_stret();
#[cfg(all(apple, not(target_arch = "aarch64")))]
pub fn method_invoke_stret();
#[cfg(all(apple, not(target_arch = "aarch64")))]
pub fn _objc_msgForward_stret();
#[cfg(any(objfw, not(target_arch = "aarch64")))]
pub fn class_getMethodImplementation_stret();
#[cfg(all(not(objfw), any(target_arch = "x86_64", target_arch = "x86")))]
pub fn objc_msgSend_fpret();
#[cfg(all(apple, target_arch = "x86_64"))]
pub fn objc_msgSend_fp2ret();
}