You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Given integer-types M and register width N (e.g. M=u16 and N=32 bits), the
5
+
/// `ParamExtension` policy specifies how a uM value should be treated when
6
+
/// passed via register or stack-slot of width N. See also rust-lang/rust#97463.
7
+
#[derive(Copy,Clone,PartialEq)]
8
+
pubenumParamExtension{
9
+
/// Indicates that when passing an i8/i16, either as a function argument or
10
+
/// as a return value, it must be sign-extended to 32 bits, and likewise a
11
+
/// u8/u16 must be zero-extended to 32-bits. (This variant is here to
12
+
/// accommodate Apple's deviation from the usual AArch64 ABI as defined by
13
+
/// ARM.)
14
+
///
15
+
/// See also: <https://developer.apple.com/documentation/xcode/writing-arm64-code-for-apple-platforms#Pass-Arguments-to-Functions-Correctly>
16
+
ExtendTo32Bits,
17
+
18
+
/// Indicates that no sign- nor zero-extension is performed: if a value of
19
+
/// type with bitwidth M is passed as function argument or return value,
20
+
/// then M bits are copied into the least significant M bits, and the
21
+
/// remaining bits of the register (or word of memory) are untouched.
0 commit comments