2018-04-25 19:21:25 +00:00
|
|
|
# Stint
|
2018-03-02 10:48:08 +00:00
|
|
|
# Copyright 2018 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
#
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
#
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
2018-05-06 20:29:08 +00:00
|
|
|
|
2019-07-22 07:53:58 +00:00
|
|
|
import ./datatypes, ./bitops2_priv
|
2018-02-16 10:33:11 +00:00
|
|
|
|
2018-05-06 20:29:08 +00:00
|
|
|
func `not`*(x: UintImpl): UintImpl {.inline.}=
|
2018-02-16 10:33:11 +00:00
|
|
|
## Bitwise complement of unsigned integer x
|
2018-10-25 10:58:40 +00:00
|
|
|
applyHiLo(x, `not`)
|
2018-02-16 10:33:11 +00:00
|
|
|
|
2018-05-06 20:29:08 +00:00
|
|
|
func `or`*(x, y: UintImpl): UintImpl {.inline.}=
|
2018-02-16 10:33:11 +00:00
|
|
|
## `Bitwise or` of numbers x and y
|
2018-10-25 10:58:40 +00:00
|
|
|
applyHiLo(x, y, `or`)
|
2018-02-16 10:33:11 +00:00
|
|
|
|
2018-05-06 20:29:08 +00:00
|
|
|
func `and`*(x, y: UintImpl): UintImpl {.inline.}=
|
2018-02-16 10:33:11 +00:00
|
|
|
## `Bitwise and` of numbers x and y
|
2018-10-25 10:58:40 +00:00
|
|
|
applyHiLo(x, y, `and`)
|
2018-02-16 10:33:11 +00:00
|
|
|
|
2018-05-06 20:29:08 +00:00
|
|
|
func `xor`*(x, y: UintImpl): UintImpl {.inline.}=
|
2018-02-16 10:33:11 +00:00
|
|
|
## `Bitwise xor` of numbers x and y
|
2018-10-25 10:58:40 +00:00
|
|
|
applyHiLo(x, y, `xor`)
|
2018-02-16 12:54:38 +00:00
|
|
|
|
2018-04-25 10:52:00 +00:00
|
|
|
func `shr`*(x: UintImpl, y: SomeInteger): UintImpl {.inline.}
|
2018-04-20 09:13:47 +00:00
|
|
|
# Forward declaration
|
|
|
|
|
2018-04-25 10:52:00 +00:00
|
|
|
func `shl`*(x: UintImpl, y: SomeInteger): UintImpl {.inline.}=
|
2018-02-16 12:54:38 +00:00
|
|
|
## Compute the `shift left` operation of x and y
|
2018-02-17 11:44:51 +00:00
|
|
|
# Note: inlining this poses codegen/aliasing issue when doing `x = x shl 1`
|
2018-04-20 09:13:47 +00:00
|
|
|
|
2018-06-18 10:54:25 +00:00
|
|
|
# TODO: would it be better to reimplement this with words iteration?
|
2018-10-25 10:58:40 +00:00
|
|
|
const halfSize: type(y) = bitsof(x) div 2
|
2018-02-16 12:54:38 +00:00
|
|
|
|
2018-04-20 09:13:47 +00:00
|
|
|
if y == 0:
|
|
|
|
return x
|
|
|
|
elif y == halfSize:
|
|
|
|
result.hi = x.lo
|
|
|
|
elif y < halfSize:
|
|
|
|
result.hi = (x.hi shl y) or (x.lo shr (halfSize - y))
|
2018-03-28 18:45:39 +00:00
|
|
|
result.lo = x.lo shl y
|
2018-04-20 09:13:47 +00:00
|
|
|
else:
|
|
|
|
result.hi = x.lo shl (y - halfSize)
|
2018-02-16 12:54:38 +00:00
|
|
|
|
2018-04-25 10:52:00 +00:00
|
|
|
func `shr`*(x: UintImpl, y: SomeInteger): UintImpl {.inline.}=
|
2018-02-16 12:54:38 +00:00
|
|
|
## Compute the `shift right` operation of x and y
|
2018-10-06 18:25:51 +00:00
|
|
|
## Similar to C standard, result is undefined if y is bigger
|
|
|
|
## than the number of bits in x.
|
2018-10-25 10:58:40 +00:00
|
|
|
const halfSize: type(y) = bitsof(x) div 2
|
2018-02-16 12:54:38 +00:00
|
|
|
|
2018-04-20 09:13:47 +00:00
|
|
|
if y == 0:
|
|
|
|
return x
|
|
|
|
elif y == halfSize:
|
|
|
|
result.lo = x.hi
|
|
|
|
elif y < halfSize:
|
|
|
|
result.lo = (x.lo shr y) or (x.hi shl (halfSize - y))
|
2018-03-28 18:45:39 +00:00
|
|
|
result.hi = x.hi shr y
|
2018-04-20 09:13:47 +00:00
|
|
|
else:
|
|
|
|
result.lo = x.hi shr (y - halfSize)
|