Skip to content

Commit 4df6c75

Browse files
committed
revert pull #266
1 parent ee0b688 commit 4df6c75

File tree

1 file changed

+34
-37
lines changed

1 file changed

+34
-37
lines changed

src/core/bitop.d

+34-37
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
module core.bitop;
1616

1717
nothrow:
18-
@safe:
1918

2019
version( D_InlineAsm_X86_64 )
2120
version = AsmX86;
@@ -39,7 +38,7 @@ else version( D_InlineAsm_X86 )
3938
* }
4039
* ---
4140
*/
42-
int bsf(size_t v) pure;
41+
pure int bsf(size_t v);
4342

4443
unittest
4544
{
@@ -64,7 +63,7 @@ unittest
6463
* }
6564
* ---
6665
*/
67-
int bsr(size_t v) pure;
66+
pure int bsr(size_t v);
6867

6968
unittest
7069
{
@@ -74,19 +73,19 @@ unittest
7473
/**
7574
* Tests the bit.
7675
*/
77-
int bt(in size_t* p, size_t bitnum) pure;
76+
pure int bt(in size_t* p, size_t bitnum);
7877

7978

8079
/**
8180
* Tests and complements the bit.
8281
*/
83-
int btc(size_t* p, size_t bitnum) pure;
82+
int btc(size_t* p, size_t bitnum);
8483

8584

8685
/**
8786
* Tests and resets (sets to 0) the bit.
8887
*/
89-
int btr(size_t* p, size_t bitnum) pure;
88+
int btr(size_t* p, size_t bitnum);
9089

9190

9291
/**
@@ -138,7 +137,7 @@ int main()
138137
}
139138
* ---
140139
*/
141-
int bts(size_t* p, size_t bitnum) pure;
140+
int bts(size_t* p, size_t bitnum);
142141

143142
unittest
144143
{
@@ -189,51 +188,49 @@ unittest
189188
* byte 3, byte 1 becomes byte 2, byte 2 becomes byte 1, byte 3
190189
* becomes byte 0.
191190
*/
192-
uint bswap(uint v) pure;
191+
pure uint bswap(uint v);
193192

194-
@system // not pure
195-
{
196-
/**
197-
* Reads I/O port at port_address.
198-
*/
199-
ubyte inp(uint port_address);
200193

194+
/**
195+
* Reads I/O port at port_address.
196+
*/
197+
ubyte inp(uint port_address);
201198

202-
/**
203-
* ditto
204-
*/
205-
ushort inpw(uint port_address);
206199

200+
/**
201+
* ditto
202+
*/
203+
ushort inpw(uint port_address);
207204

208-
/**
209-
* ditto
210-
*/
211-
uint inpl(uint port_address);
212205

206+
/**
207+
* ditto
208+
*/
209+
uint inpl(uint port_address);
213210

214-
/**
215-
* Writes and returns value to I/O port at port_address.
216-
*/
217-
ubyte outp(uint port_address, ubyte value);
218211

212+
/**
213+
* Writes and returns value to I/O port at port_address.
214+
*/
215+
ubyte outp(uint port_address, ubyte value);
219216

220-
/**
221-
* ditto
222-
*/
223-
ushort outpw(uint port_address, ushort value);
224217

218+
/**
219+
* ditto
220+
*/
221+
ushort outpw(uint port_address, ushort value);
225222

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);
231228

232229

233230
/**
234231
* Calculates the number of set bits in a 32-bit integer.
235232
*/
236-
int popcnt( uint x ) pure
233+
pure int popcnt( uint x )
237234
{
238235
// Avoid branches, and the potential for cache misses which
239236
// could be incurred with a table lookup.
@@ -280,7 +277,7 @@ unittest
280277
/**
281278
* Reverses the order of bits in a 32-bit integer.
282279
*/
283-
@trusted uint bitswap( uint x ) pure
280+
pure uint bitswap( uint x )
284281
{
285282
version (AsmX86)
286283
{

0 commit comments

Comments
 (0)