-
Notifications
You must be signed in to change notification settings - Fork 531
Expand file tree
/
Copy pathmod.rs
More file actions
274 lines (261 loc) · 7.22 KB
/
Copy pathmod.rs
File metadata and controls
274 lines (261 loc) · 7.22 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
pub mod v2_7_15;
pub mod v3_10_0;
pub mod v3_11_0;
pub mod v3_12_0;
pub mod v3_13_0;
pub mod v3_14_0;
pub mod v3_3_7;
pub mod v3_5_5;
pub mod v3_6_6;
pub mod v3_7_0;
pub mod v3_8_0;
pub mod v3_9_5;
// currently the PyRuntime struct used from Python 3.7 on really can't be
// exposed in a cross platform way using bindgen. PyRuntime has several mutex's
// as member variables, and these have different sizes depending on the operating
// system and system architecture.
// Instead we will define some constants here that define valid offsets for the
// member variables we care about here
// (note 'generate_bindings.py' has code to figure out these offsets)
pub mod pyruntime {
use crate::version::Version;
// There aren't any OS specific members of PyRuntime before pyinterpreters.head,
// so these offsets should be valid for all OS'es
#[cfg(target_arch = "x86")]
pub fn get_interp_head_offset(version: &Version) -> usize {
match version {
Version {
major: 3,
minor: 8..=10,
..
} => 24,
_ => 16,
}
}
#[cfg(target_arch = "arm")]
pub fn get_interp_head_offset(version: &Version) -> usize {
match version {
Version {
major: 3, minor: 7, ..
} => 20,
_ => 28,
}
}
#[cfg(target_pointer_width = "64")]
pub fn get_interp_head_offset(version: &Version) -> usize {
match version {
Version {
major: 3,
minor: 8..=10,
..
} => 32,
Version {
major: 3,
minor: 11..=12,
..
} => 40,
_ => 24,
}
}
// getting gilstate.tstate_current is different for all OS
// and is also different for each python version
#[cfg(target_os = "macos")]
pub fn get_tstate_current_offset(version: &Version) -> Option<usize> {
match version {
Version {
major: 3,
minor: 7,
patch: 0..=3,
..
} => Some(1440),
Version {
major: 3, minor: 7, ..
} => Some(1528),
Version {
major: 3, minor: 8, ..
} => Some(1416),
Version {
major: 3,
minor: 9..=10,
..
} => Some(616),
Version {
major: 3,
minor: 11,
..
} => Some(624),
_ => None,
}
}
#[cfg(all(target_os = "linux", target_arch = "x86"))]
pub fn get_tstate_current_offset(version: &Version) -> Option<usize> {
match version {
Version {
major: 3, minor: 7, ..
} => Some(796),
Version {
major: 3, minor: 8, ..
} => Some(788),
Version {
major: 3,
minor: 9..=10,
..
} => Some(352),
_ => None,
}
}
#[cfg(all(target_os = "linux", target_arch = "arm"))]
pub fn get_tstate_current_offset(version: &Version) -> Option<usize> {
match version {
Version {
major: 3, minor: 7, ..
} => Some(828),
Version {
major: 3, minor: 8, ..
} => Some(804),
Version {
major: 3,
minor: 9..=11,
..
} => Some(364),
_ => None,
}
}
#[cfg(all(target_os = "linux", target_arch = "aarch64"))]
pub fn get_tstate_current_offset(version: &Version) -> Option<usize> {
match version {
Version {
major: 3,
minor: 7,
patch: 0..=3,
..
} => Some(1408),
Version {
major: 3, minor: 7, ..
} => Some(1496),
Version {
major: 3, minor: 8, ..
} => Some(1384),
Version {
major: 3,
minor: 9..=10,
..
} => Some(584),
Version {
major: 3,
minor: 11,
..
} => Some(592),
_ => None,
}
}
#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
pub fn get_tstate_current_offset(version: &Version) -> Option<usize> {
match version {
Version {
major: 3,
minor: 7,
patch: 0..=3,
..
} => Some(1392),
Version {
major: 3, minor: 7, ..
} => Some(1480),
Version {
major: 3, minor: 8, ..
} => match version.build_metadata.as_deref() {
Some("cinder") => Some(1384),
_ => Some(1368),
},
Version {
major: 3,
minor: 9..=10,
..
} => Some(568),
Version {
major: 3,
minor: 11,
..
} => Some(576),
_ => None,
}
}
#[cfg(all(
target_os = "linux",
any(
target_arch = "powerpc64",
target_arch = "powerpc",
target_arch = "mips"
)
))]
pub fn get_tstate_current_offset(version: &Version) -> Option<usize> {
None
}
#[cfg(windows)]
pub fn get_tstate_current_offset(version: &Version) -> Option<usize> {
match version {
Version {
major: 3,
minor: 7,
patch: 0..=3,
..
} => Some(1320),
Version {
major: 3, minor: 8, ..
} => Some(1296),
Version {
major: 3,
minor: 9..=10,
..
} => Some(496),
Version {
major: 3,
minor: 11,
..
} => Some(504),
_ => None,
}
}
#[cfg(target_os = "freebsd")]
pub fn get_tstate_current_offset(version: &Version) -> Option<usize> {
match version {
Version {
major: 3,
minor: 7,
patch: 0..=3,
..
} => Some(1248),
Version {
major: 3,
minor: 7,
patch: 4..=7,
..
} => Some(1336),
Version {
major: 3, minor: 8, ..
} => Some(1224),
Version {
major: 3,
minor: 9..=10,
..
} => Some(424),
Version {
major: 3,
minor: 11,
..
} => Some(432),
_ => None,
}
}
#[cfg(all(target_os = "linux", target_arch = "riscv64"))]
pub fn get_tstate_current_offset(version: &Version) -> Option<usize> {
match version {
Version {
major: 3,
minor: 11,
..
} => Some(576),
_ => None,
}
}
}