forked from Vector35/platform-mac
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatform_mac.cpp
156 lines (129 loc) · 3.51 KB
/
platform_mac.cpp
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#include "binaryninjaapi.h"
using namespace BinaryNinja;
using namespace std;
class MacX86Platform: public Platform
{
public:
MacX86Platform(Architecture* arch): Platform(arch, "mac-x86")
{
Ref<CallingConvention> cc;
cc = arch->GetCallingConventionByName("cdecl");
if (cc)
{
RegisterDefaultCallingConvention(cc);
RegisterCdeclCallingConvention(cc);
}
cc = arch->GetCallingConventionByName("regparm");
if (cc)
RegisterFastcallCallingConvention(cc);
cc = arch->GetCallingConventionByName("stdcall");
if (cc)
RegisterStdcallCallingConvention(cc);
}
};
class MacX64Platform: public Platform
{
public:
MacX64Platform(Architecture* arch): Platform(arch, "mac-x86_64")
{
Ref<CallingConvention> cc;
cc = arch->GetCallingConventionByName("sysv");
if (cc)
{
RegisterDefaultCallingConvention(cc);
RegisterCdeclCallingConvention(cc);
RegisterFastcallCallingConvention(cc);
RegisterStdcallCallingConvention(cc);
}
}
};
class MacArmv7Platform: public Platform
{
public:
MacArmv7Platform(Architecture* arch, const std::string& name): Platform(arch, name)
{
Ref<CallingConvention> cc;
cc = arch->GetCallingConventionByName("cdecl");
if (cc)
{
RegisterDefaultCallingConvention(cc);
RegisterCdeclCallingConvention(cc);
RegisterFastcallCallingConvention(cc);
RegisterStdcallCallingConvention(cc);
}
}
};
class MacArm64Platform: public Platform
{
public:
MacArm64Platform(Architecture* arch): Platform(arch, "mac-aarch64")
{
Ref<CallingConvention> cc;
cc = arch->GetCallingConventionByName("apple-arm64");
if (cc)
{
RegisterDefaultCallingConvention(cc);
RegisterCdeclCallingConvention(cc);
RegisterFastcallCallingConvention(cc);
RegisterStdcallCallingConvention(cc);
}
}
};
extern "C"
{
BN_DECLARE_CORE_ABI_VERSION
#ifndef DEMO_VERSION
BINARYNINJAPLUGIN void CorePluginDependencies()
{
AddOptionalPluginDependency("arch_x86");
AddOptionalPluginDependency("arch_armv7");
AddOptionalPluginDependency("arch_arm64");
}
#endif
#ifdef DEMO_VERSION
bool MacPluginInit()
#else
BINARYNINJAPLUGIN bool CorePluginInit()
#endif
{
Ref<Architecture> x86 = Architecture::GetByName("x86");
if (x86)
{
Ref<Platform> platform;
platform = new MacX86Platform(x86);
Platform::Register("mac", platform);
BinaryViewType::RegisterPlatform("Mach-O", 0, x86, platform);
}
Ref<Architecture> x64 = Architecture::GetByName("x86_64");
if (x64)
{
Ref<Platform> platform;
platform = new MacX64Platform(x64);
Platform::Register("mac", platform);
BinaryViewType::RegisterPlatform("Mach-O", 0, x64, platform);
}
Ref<Architecture> armv7 = Architecture::GetByName("armv7");
Ref<Architecture> thumb2 = Architecture::GetByName("thumb2");
if (armv7 && thumb2)
{
Ref<Platform> armPlatform, thumbPlatform;
armPlatform = new MacArmv7Platform(armv7, "mac-armv7");
thumbPlatform = new MacArmv7Platform(thumb2, "mac-thumb2");
armPlatform->AddRelatedPlatform(thumb2, thumbPlatform);
thumbPlatform->AddRelatedPlatform(armv7, armPlatform);
Platform::Register("mac", armPlatform);
Platform::Register("mac", thumbPlatform);
BinaryViewType::RegisterPlatform("Mach-O", 0, armv7, armPlatform);
}
Ref<Architecture> arm64 = Architecture::GetByName("aarch64");
if (arm64)
{
Ref<Platform> platform;
platform = new MacArm64Platform(arm64);
Platform::Register("mac", platform);
BinaryViewType::RegisterPlatform("Mach-O", 9, arm64, platform);
BinaryViewType::RegisterPlatform("Mach-O", 0, arm64, platform);
}
return true;
}
}