@@ -37,14 +37,23 @@ pub unsafe fn do_usercall(
37
37
( a, b)
38
38
}
39
39
40
- type Register = u64 ;
40
+ /// A value passed or returned in a CPU register.
41
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
42
+ pub type Register = u64 ;
41
43
42
- trait RegisterArgument {
44
+ /// Translate a type from/to Register to be used as an argument.
45
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
46
+ pub trait RegisterArgument {
47
+ /// Translate a Register to Self.
43
48
fn from_register ( _: Register ) -> Self ;
49
+ /// Translate self to a Register.
44
50
fn into_register ( self ) -> Register ;
45
51
}
46
52
47
- trait ReturnValue {
53
+ /// Translate a pair of Registers to the raw usercall return value.
54
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
55
+ pub trait ReturnValue {
56
+ /// Translate a pair of Registers to the raw usercall return value.
48
57
fn from_registers ( call : & ' static str , regs : ( Register , Register ) ) -> Self ;
49
58
}
50
59
@@ -68,6 +77,7 @@ macro_rules! define_usercalls {
68
77
69
78
macro_rules! define_ra {
70
79
( < $i: ident > $t: ty) => {
80
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
71
81
impl <$i> RegisterArgument for $t {
72
82
fn from_register( a: Register ) -> Self {
73
83
a as _
@@ -78,6 +88,7 @@ macro_rules! define_ra {
78
88
}
79
89
} ;
80
90
( $i: ty as $t: ty) => {
91
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
81
92
impl RegisterArgument for $t {
82
93
fn from_register( a: Register ) -> Self {
83
94
a as $i as _
@@ -88,6 +99,7 @@ macro_rules! define_ra {
88
99
}
89
100
} ;
90
101
( $t: ty) => {
102
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
91
103
impl RegisterArgument for $t {
92
104
fn from_register( a: Register ) -> Self {
93
105
a as _
@@ -112,6 +124,7 @@ define_ra!(usize as isize);
112
124
define_ra ! ( <T > * const T ) ;
113
125
define_ra ! ( <T > * mut T ) ;
114
126
127
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
115
128
impl RegisterArgument for bool {
116
129
fn from_register ( a : Register ) -> bool {
117
130
if a != 0 { true } else { false }
@@ -121,6 +134,7 @@ impl RegisterArgument for bool {
121
134
}
122
135
}
123
136
137
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
124
138
impl < T : RegisterArgument > RegisterArgument for Option < NonNull < T > > {
125
139
fn from_register ( a : Register ) -> Option < NonNull < T > > {
126
140
NonNull :: new ( a as _ )
@@ -130,12 +144,14 @@ impl<T: RegisterArgument> RegisterArgument for Option<NonNull<T>> {
130
144
}
131
145
}
132
146
147
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
133
148
impl ReturnValue for ! {
134
149
fn from_registers ( call : & ' static str , _regs : ( Register , Register ) ) -> Self {
135
150
rtabort ! ( "Usercall {call}: did not expect to be re-entered" ) ;
136
151
}
137
152
}
138
153
154
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
139
155
impl ReturnValue for ( ) {
140
156
fn from_registers ( call : & ' static str , usercall_retval : ( Register , Register ) ) -> Self {
141
157
rtassert ! ( usercall_retval. 0 == 0 ) ;
@@ -144,13 +160,15 @@ impl ReturnValue for () {
144
160
}
145
161
}
146
162
163
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
147
164
impl < T : RegisterArgument > ReturnValue for T {
148
165
fn from_registers ( call : & ' static str , usercall_retval : ( Register , Register ) ) -> Self {
149
166
rtassert ! ( usercall_retval. 1 == 0 ) ;
150
167
T :: from_register ( usercall_retval. 0 )
151
168
}
152
169
}
153
170
171
+ #[ unstable( feature = "sgx_platform" , issue = "56975" ) ]
154
172
impl < T : RegisterArgument , U : RegisterArgument > ReturnValue for ( T , U ) {
155
173
fn from_registers ( _call : & ' static str , regs : ( Register , Register ) ) -> Self {
156
174
( T :: from_register ( regs. 0 ) , U :: from_register ( regs. 1 ) )
0 commit comments