LCOV - differential code coverage report
Current view: top level - src/port - pg_crc32c_sse42_choose.c (source / functions) Coverage Total Hit UBC CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 88.9 % 9 8 1 8
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 2 2 2
Baseline: 16@8cea358b128 Branches: 50.0 % 2 1 1 1
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (240..) days: 88.9 % 9 8 1 8
Function coverage date bins:
(240..) days: 100.0 % 2 2 2
Branch coverage date bins:
(240..) days: 50.0 % 2 1 1 1

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * pg_crc32c_sse42_choose.c
                                  4                 :                :  *    Choose between Intel SSE 4.2 and software CRC-32C implementation.
                                  5                 :                :  *
                                  6                 :                :  * On first call, checks if the CPU we're running on supports Intel SSE
                                  7                 :                :  * 4.2. If it does, use the special SSE instructions for CRC-32C
                                  8                 :                :  * computation. Otherwise, fall back to the pure software implementation
                                  9                 :                :  * (slicing-by-8).
                                 10                 :                :  *
                                 11                 :                :  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
                                 12                 :                :  * Portions Copyright (c) 1994, Regents of the University of California
                                 13                 :                :  *
                                 14                 :                :  *
                                 15                 :                :  * IDENTIFICATION
                                 16                 :                :  *    src/port/pg_crc32c_sse42_choose.c
                                 17                 :                :  *
                                 18                 :                :  *-------------------------------------------------------------------------
                                 19                 :                :  */
                                 20                 :                : 
                                 21                 :                : #include "c.h"
                                 22                 :                : 
                                 23                 :                : #ifdef HAVE__GET_CPUID
                                 24                 :                : #include <cpuid.h>
                                 25                 :                : #endif
                                 26                 :                : 
                                 27                 :                : #ifdef HAVE__CPUID
                                 28                 :                : #include <intrin.h>
                                 29                 :                : #endif
                                 30                 :                : 
                                 31                 :                : #include "port/pg_crc32c.h"
                                 32                 :                : 
                                 33                 :                : static bool
 3288 heikki.linnakangas@i       34                 :CBC        1145 : pg_crc32c_sse42_available(void)
                                 35                 :                : {
                                 36                 :           1145 :     unsigned int exx[4] = {0, 0, 0, 0};
                                 37                 :                : 
                                 38                 :                : #if defined(HAVE__GET_CPUID)
                                 39                 :           1145 :     __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);
                                 40                 :                : #elif defined(HAVE__CPUID)
                                 41                 :                :     __cpuid(exx, 1);
                                 42                 :                : #else
                                 43                 :                : #error cpuid instruction not available
                                 44                 :                : #endif
                                 45                 :                : 
 3249 bruce@momjian.us           46                 :           1145 :     return (exx[2] & (1 << 20)) != 0; /* SSE 4.2 */
                                 47                 :                : }
                                 48                 :                : 
                                 49                 :                : /*
                                 50                 :                :  * This gets called on the first call. It replaces the function pointer
                                 51                 :                :  * so that subsequent calls are routed directly to the chosen implementation.
                                 52                 :                :  */
                                 53                 :                : static pg_crc32c
 3288 heikki.linnakangas@i       54                 :           1145 : pg_comp_crc32c_choose(pg_crc32c crc, const void *data, size_t len)
                                 55                 :                : {
                                 56         [ +  - ]:           1145 :     if (pg_crc32c_sse42_available())
                                 57                 :           1145 :         pg_comp_crc32c = pg_comp_crc32c_sse42;
                                 58                 :                :     else
 3288 heikki.linnakangas@i       59                 :UBC           0 :         pg_comp_crc32c = pg_comp_crc32c_sb8;
                                 60                 :                : 
 3288 heikki.linnakangas@i       61                 :CBC        1145 :     return pg_comp_crc32c(crc, data, len);
                                 62                 :                : }
                                 63                 :                : 
                                 64                 :                : pg_crc32c   (*pg_comp_crc32c) (pg_crc32c crc, const void *data, size_t len) = pg_comp_crc32c_choose;
        

Generated by: LCOV version 2.1-beta2-3-g6141622