en:pfw:crc32_ieee_tablebased
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:pfw:crc32_ieee_tablebased [2023-09-04 18:12] – gelöscht - Externe Bearbeitung (Unbekanntes Datum) 127.0.0.1 | en:pfw:crc32_ieee_tablebased [2023-09-04 18:12] (current) – ↷ Seite von pfw:crc32_ieee_tablebased nach en:pfw:crc32_ieee_tablebased verschoben uho | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{pfw: | ||
+ | ==== CRC, fast 32bit IEEE CRC generation using a table ==== | ||
+ | |||
+ | Generating a CRC is a pretty slow process. One way of speeding up this process is by using a table. This table contains pre-calculated values of the 8 shifts and XOR steps done for each byte added to a CRC. This saves time, as a major part of the work is be done only once, during initialisation. | ||
+ | |||
+ | The shortest run-time for the standard crc test (" | ||
+ | |||
+ | The code is split up in two sections: an initialisation part to create a table with values and a CRC-creation part which uses the table to quickly generate a CRC. | ||
+ | |||
+ | If you look at the code you will see that the part which generates/ | ||
+ | |||
+ | If you look at the part of the code which updates the CRC for a next byte (below) you will see that instead of 8 loops, the CRC is now be updated in 1 go. Hence the speed-up of this algorithm compared to the simple implementations. The essential trick for the routine is that the byte used as input is first XOR'd with the previous CRC and only then is used as index into the table. | ||
+ | |||
+ | < | ||
+ | hex | ||
+ | : (CRC32) | ||
+ | over \ crc c crc | ||
+ | xor \ crc cou | ||
+ | FF and \ crc cou_8b | ||
+ | cells \ crc cou_8b*4=> | ||
+ | CRCtable + @ \ crc value | ||
+ | swap \ value crc | ||
+ | 8 rshift | ||
+ | xor \ crc_new | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | ===== Contributions ===== | ||
+ | |||
+ | < | ||