diff options
author | Richard Henderson <rth@twiddle.net> | 2015-09-23 10:12:16 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2015-10-07 20:03:14 +1100 |
commit | ba1fc78f65fdea9d4b14d6449514c1351ad64fa4 (patch) | |
tree | 427dcb7fc140e7367d8f88d07cd5da58f61dde68 /target-tilegx/helper.c | |
parent | 38c949ffe7497b1d833bca5f70b22c87df9bd567 (diff) |
target-tilegx: Implement crc instructions
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-tilegx/helper.c')
-rw-r--r-- | target-tilegx/helper.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/target-tilegx/helper.c b/target-tilegx/helper.c index a01bb8d513..cad5daeaae 100644 --- a/target-tilegx/helper.c +++ b/target-tilegx/helper.c @@ -21,6 +21,7 @@ #include "cpu.h" #include "qemu-common.h" #include "exec/helper-proto.h" +#include <zlib.h> /* For crc32 */ void helper_exception(CPUTLGState *env, uint32_t excp) { @@ -78,3 +79,21 @@ uint64_t helper_shufflebytes(uint64_t dest, uint64_t srca, uint64_t srcb) return vdst; } + +uint64_t helper_crc32_8(uint64_t accum, uint64_t input) +{ + uint8_t buf = input; + + /* zlib crc32 converts the accumulator and output to one's complement. */ + return crc32(accum ^ 0xffffffff, &buf, 1) ^ 0xffffffff; +} + +uint64_t helper_crc32_32(uint64_t accum, uint64_t input) +{ + uint8_t buf[4]; + + stl_le_p(buf, input); + + /* zlib crc32 converts the accumulator and output to one's complement. */ + return crc32(accum ^ 0xffffffff, buf, 4) ^ 0xffffffff; +} |