compile time toBytes
This commit is contained in:
parent
21dc4c6519
commit
0b06077c55
|
@ -1,4 +1,4 @@
|
||||||
import ./bitops2_priv, ./datatypes
|
import ./bitops2_priv, ./datatypes, ./uint_bitwise_ops
|
||||||
|
|
||||||
import stew/endians2
|
import stew/endians2
|
||||||
export endians2
|
export endians2
|
||||||
|
@ -9,13 +9,29 @@ func swapBytes*(x: UintImpl): UintImpl {.inline.} =
|
||||||
|
|
||||||
UintImpl(hi: hi, lo: lo)
|
UintImpl(hi: hi, lo: lo)
|
||||||
|
|
||||||
|
func copyMem(x: UintImpl): auto {.compileTime.} =
|
||||||
|
const size = bitsof(x) div 8
|
||||||
|
var ret: array[size, byte]
|
||||||
|
|
||||||
|
type DT = type x.leastSignificantWord
|
||||||
|
for i in 0 ..< size:
|
||||||
|
let pos = i * 8
|
||||||
|
ret[i] = byte((x shr pos).leastSignificantWord and 0xFF.DT)
|
||||||
|
ret
|
||||||
|
|
||||||
func toBytes*(x: UintImpl, endian: Endianness = system.cpuEndian): auto {.inline.} =
|
func toBytes*(x: UintImpl, endian: Endianness = system.cpuEndian): auto {.inline.} =
|
||||||
# TODO can't use bitsof in return type (compiler bug?), hence return auto
|
# TODO can't use bitsof in return type (compiler bug?), hence return auto
|
||||||
# TODO compile-time version
|
|
||||||
var ret: array[bitsof(x) div 8, byte]
|
var ret: array[bitsof(x) div 8, byte]
|
||||||
if endian == system.cpuEndian:
|
when nimvm:
|
||||||
copyMem(addr ret[0], unsafeAddr x, ret.len)
|
if endian == system.cpuEndian:
|
||||||
|
ret = copyMem(x)
|
||||||
|
else:
|
||||||
|
let v = swapBytes(x)
|
||||||
|
ret = copyMem(v)
|
||||||
else:
|
else:
|
||||||
let v = swapBytes(x)
|
if endian == system.cpuEndian:
|
||||||
copyMem(addr ret[0], unsafeAddr v, ret.len)
|
copyMem(addr ret[0], unsafeAddr x, ret.len)
|
||||||
|
else:
|
||||||
|
let v = swapBytes(x)
|
||||||
|
copyMem(addr ret[0], unsafeAddr v, ret.len)
|
||||||
ret
|
ret
|
||||||
|
|
Loading…
Reference in New Issue