15
15
module core.bitop ;
16
16
17
17
nothrow :
18
- @safe :
19
18
20
19
version ( D_InlineAsm_X86_64 )
21
20
version = AsmX86;
@@ -39,7 +38,7 @@ else version( D_InlineAsm_X86 )
39
38
* }
40
39
* ---
41
40
*/
42
- int bsf (size_t v) pure ;
41
+ pure int bsf(size_t v);
43
42
44
43
unittest
45
44
{
@@ -64,7 +63,7 @@ unittest
64
63
* }
65
64
* ---
66
65
*/
67
- int bsr (size_t v) pure ;
66
+ pure int bsr(size_t v);
68
67
69
68
unittest
70
69
{
@@ -74,19 +73,19 @@ unittest
74
73
/**
75
74
* Tests the bit.
76
75
*/
77
- int bt (in size_t * p, size_t bitnum) pure ;
76
+ pure int bt(in size_t * p, size_t bitnum);
78
77
79
78
80
79
/**
81
80
* Tests and complements the bit.
82
81
*/
83
- int btc (size_t * p, size_t bitnum) pure ;
82
+ int btc (size_t * p, size_t bitnum);
84
83
85
84
86
85
/**
87
86
* Tests and resets (sets to 0) the bit.
88
87
*/
89
- int btr (size_t * p, size_t bitnum) pure ;
88
+ int btr (size_t * p, size_t bitnum);
90
89
91
90
92
91
/**
@@ -138,7 +137,7 @@ int main()
138
137
}
139
138
* ---
140
139
*/
141
- int bts (size_t * p, size_t bitnum) pure ;
140
+ int bts (size_t * p, size_t bitnum);
142
141
143
142
unittest
144
143
{
@@ -189,51 +188,49 @@ unittest
189
188
* byte 3, byte 1 becomes byte 2, byte 2 becomes byte 1, byte 3
190
189
* becomes byte 0.
191
190
*/
192
- uint bswap (uint v) pure ;
191
+ pure uint bswap(uint v);
193
192
194
- @system // not pure
195
- {
196
- /**
197
- * Reads I/O port at port_address.
198
- */
199
- ubyte inp (uint port_address);
200
193
194
+ /**
195
+ * Reads I/O port at port_address.
196
+ */
197
+ ubyte inp (uint port_address);
201
198
202
- /**
203
- * ditto
204
- */
205
- ushort inpw (uint port_address);
206
199
200
+ /**
201
+ * ditto
202
+ */
203
+ ushort inpw (uint port_address);
207
204
208
- /**
209
- * ditto
210
- */
211
- uint inpl (uint port_address);
212
205
206
+ /**
207
+ * ditto
208
+ */
209
+ uint inpl (uint port_address);
213
210
214
- /**
215
- * Writes and returns value to I/O port at port_address.
216
- */
217
- ubyte outp (uint port_address, ubyte value);
218
211
212
+ /**
213
+ * Writes and returns value to I/O port at port_address.
214
+ */
215
+ ubyte outp (uint port_address, ubyte value);
219
216
220
- /**
221
- * ditto
222
- */
223
- ushort outpw (uint port_address, ushort value);
224
217
218
+ /**
219
+ * ditto
220
+ */
221
+ ushort outpw (uint port_address, ushort value);
225
222
226
- /**
227
- * ditto
228
- */
229
- uint outpl ( uint port_address, uint value);
230
- }
223
+
224
+ /**
225
+ * ditto
226
+ */
227
+ uint outpl ( uint port_address, uint value);
231
228
232
229
233
230
/**
234
231
* Calculates the number of set bits in a 32-bit integer.
235
232
*/
236
- int popcnt ( uint x ) pure
233
+ pure int popcnt( uint x )
237
234
{
238
235
// Avoid branches, and the potential for cache misses which
239
236
// could be incurred with a table lookup.
@@ -280,7 +277,7 @@ unittest
280
277
/**
281
278
* Reverses the order of bits in a 32-bit integer.
282
279
*/
283
- @trusted uint bitswap( uint x ) pure
280
+ pure uint bitswap( uint x )
284
281
{
285
282
version (AsmX86)
286
283
{
0 commit comments