Any Word32 number can be expressed as a linear combination of Word8 numbers as follows:
x = a + b * 2^8 + c * 2^16 + d * 2^24
In other words, this is the representation of x in the base 2^8. In order to obtain these factors, I implemented the following function:
word32to8 :: Word32 -> (Word8,Word8,Word8,Word8)
word32to8 n = (fromIntegral a,fromIntegral b,fromIntegral c,fromIntegral d)
where
(d,r1) = divMod n (2^24)
(c,r2) = divMod r1 (2^16)
(b,a) = divMod r2 (2^8)
It works properly but, since my program is using this function bunch of times, I thought that you guys can give me an idea of how to improve (if possible) the performance of this operation. Any minor improvement is good to me, either in time or space. To me, it looks like it is so simple that a performance improvement can't be achieved, but I still wanted to ask the question, just in case there is something I am missing.
By the way, I feel annoyed with all the repetitions of fromIntegral, but the conversion is necessary so the types can match.
Thanks in advance.
Storableinstance ofWord32to access the underlying byte-level representation and then read all four bytes directly from that. – Gabriel Gonzalez Jan 23 at 3:14divMods, but it's definitely not optimal. UsingStorablewould mean allocating a new memory chunk, copying to it, and reading back. @ertes's solution will avoid that extra allocation and copy. – John L Jan 23 at 4:43