mirror of https://github.com/status-im/nim-eth.git
parent
fe88d9e6b7
commit
34ab6bd986
|
@ -317,7 +317,7 @@ proc readImpl(rlp: var Rlp, T: type float64): T =
|
||||||
# https://github.com/gopherjs/gopherjs/blob/master/compiler/natives/src/math/math.go
|
# https://github.com/gopherjs/gopherjs/blob/master/compiler/natives/src/math/math.go
|
||||||
let uint64bits = rlp.toInt(uint64)
|
let uint64bits = rlp.toInt(uint64)
|
||||||
var uint32parts = [uint32(uint64bits), uint32(uint64bits shr 32)]
|
var uint32parts = [uint32(uint64bits), uint32(uint64bits shr 32)]
|
||||||
return cast[ptr float64](unsafeAddr uint32parts)[]
|
copyMem(addr result, unsafeAddr uint32parts, sizeof(result))
|
||||||
|
|
||||||
proc readImpl[R, E](rlp: var Rlp, T: type array[R, E]): T =
|
proc readImpl[R, E](rlp: var Rlp, T: type array[R, E]): T =
|
||||||
mixin read
|
mixin read
|
||||||
|
|
|
@ -8,23 +8,7 @@ type
|
||||||
pendingLists: seq[tuple[remainingItems, outBytes: int]]
|
pendingLists: seq[tuple[remainingItems, outBytes: int]]
|
||||||
output: seq[byte]
|
output: seq[byte]
|
||||||
|
|
||||||
IntLike* = concept x, y
|
Integer* = SomeInteger
|
||||||
type T = type(x)
|
|
||||||
|
|
||||||
# arithmetic ops
|
|
||||||
x + y is T
|
|
||||||
x * y is T
|
|
||||||
x - y is T
|
|
||||||
x div y is T
|
|
||||||
x mod y is T
|
|
||||||
|
|
||||||
# some int compatibility required for big endian encoding:
|
|
||||||
x shr int is T
|
|
||||||
x shl int is T
|
|
||||||
x and 0xff is int
|
|
||||||
x < 128 is bool
|
|
||||||
|
|
||||||
Integer* = SomeInteger # or IntLike
|
|
||||||
|
|
||||||
const
|
const
|
||||||
wrapObjsInList* = true
|
wrapObjsInList* = true
|
||||||
|
@ -157,8 +141,9 @@ proc appendFloat(self: var RlpWriter, data: float64) =
|
||||||
# This is not covered in the RLP spec, but Geth uses Go's
|
# This is not covered in the RLP spec, but Geth uses Go's
|
||||||
# `math.Float64bits`, which is defined here:
|
# `math.Float64bits`, which is defined here:
|
||||||
# https://github.com/gopherjs/gopherjs/blob/master/compiler/natives/src/math/math.go
|
# https://github.com/gopherjs/gopherjs/blob/master/compiler/natives/src/math/math.go
|
||||||
let uintWords = cast[ptr UncheckedArray[uint32]](unsafeAddr data)
|
var uint32Words: array[2, uint32]
|
||||||
let uint64bits = (uint64(uintWords[1]) shl 32) or uint64(uintWords[0])
|
copyMem(addr uint32Words[0], unsafeAddr data, sizeof(uint32Words))
|
||||||
|
let uint64bits = (uint64(uint32Words[1]) shl 32) or uint64(uint32Words[0])
|
||||||
self.appendInt(uint64bits)
|
self.appendInt(uint64bits)
|
||||||
|
|
||||||
template appendImpl(self: var RlpWriter, i: Integer) =
|
template appendImpl(self: var RlpWriter, i: Integer) =
|
||||||
|
|
Loading…
Reference in New Issue