Coverage Report

Created: 2026-09-14 06:43

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/CMake/Utilities/cmliblzma/liblzma/simple/ia64.c
Line
Count
Source
1
// SPDX-License-Identifier: 0BSD
2
3
///////////////////////////////////////////////////////////////////////////////
4
//
5
/// \file       ia64.c
6
/// \brief      Filter for IA64 (Itanium) binaries
7
///
8
//  Authors:    Igor Pavlov
9
//              Lasse Collin
10
//
11
///////////////////////////////////////////////////////////////////////////////
12
13
#include "simple_private.h"
14
15
16
static size_t
17
ia64_code(void *simple lzma_attribute((__unused__)),
18
    uint32_t now_pos, bool is_encoder,
19
    uint8_t *buffer, size_t size)
20
1.49k
{
21
1.49k
  static const uint32_t BRANCH_TABLE[32] = {
22
1.49k
    0, 0, 0, 0, 0, 0, 0, 0,
23
1.49k
    0, 0, 0, 0, 0, 0, 0, 0,
24
1.49k
    4, 4, 6, 6, 0, 0, 7, 7,
25
1.49k
    4, 4, 0, 0, 4, 4, 0, 0
26
1.49k
  };
27
28
1.49k
  size_t i;
29
285k
  for (i = 0; i + 16 <= size; i += 16) {
30
283k
    const uint32_t instr_template = buffer[i] & 0x1F;
31
283k
    const uint32_t mask = BRANCH_TABLE[instr_template];
32
283k
    uint32_t bit_pos = 5;
33
34
1.13M
    for (size_t slot = 0; slot < 3; ++slot, bit_pos += 41) {
35
851k
      if (((mask >> slot) & 1) == 0)
36
815k
        continue;
37
38
35.5k
      const size_t byte_pos = (bit_pos >> 3);
39
35.5k
      const uint32_t bit_res = bit_pos & 0x7;
40
35.5k
      uint64_t instruction = 0;
41
42
249k
      for (size_t j = 0; j < 6; ++j)
43
213k
        instruction += (uint64_t)(
44
213k
            buffer[i + j + byte_pos])
45
213k
            << (8 * j);
46
47
35.5k
      uint64_t inst_norm = instruction >> bit_res;
48
49
35.5k
      if (((inst_norm >> 37) & 0xF) == 0x5
50
4.65k
          && ((inst_norm >> 9) & 0x7) == 0
51
          /* &&  (inst_norm & 0x3F)== 0 */
52
35.5k
          ) {
53
1.31k
        uint32_t src = (uint32_t)(
54
1.31k
            (inst_norm >> 13) & 0xFFFFF);
55
1.31k
        src |= ((inst_norm >> 36) & 1) << 20;
56
57
1.31k
        src <<= 4;
58
59
1.31k
        uint32_t dest;
60
1.31k
        if (is_encoder)
61
0
          dest = now_pos + (uint32_t)(i) + src;
62
1.31k
        else
63
1.31k
          dest = src - (now_pos + (uint32_t)(i));
64
65
1.31k
        dest >>= 4;
66
67
1.31k
        inst_norm &= ~((uint64_t)(0x8FFFFF) << 13);
68
1.31k
        inst_norm |= (uint64_t)(dest & 0xFFFFF) << 13;
69
1.31k
        inst_norm |= (uint64_t)(dest & 0x100000)
70
1.31k
            << (36 - 20);
71
72
1.31k
        instruction &= (1U << bit_res) - 1;
73
1.31k
        instruction |= (inst_norm << bit_res);
74
75
9.21k
        for (size_t j = 0; j < 6; j++)
76
7.89k
          buffer[i + j + byte_pos] = (uint8_t)(
77
7.89k
              instruction
78
7.89k
              >> (8 * j));
79
1.31k
      }
80
35.5k
    }
81
283k
  }
82
83
1.49k
  return i;
84
1.49k
}
85
86
87
static lzma_ret
88
ia64_coder_init(lzma_next_coder *next, const lzma_allocator *allocator,
89
    const lzma_filter_info *filters, bool is_encoder)
90
858
{
91
858
  return lzma_simple_coder_init(next, allocator, filters,
92
858
      &ia64_code, 0, 16, 16, is_encoder);
93
858
}
94
95
96
#ifdef HAVE_ENCODER_IA64
97
extern lzma_ret
98
lzma_simple_ia64_encoder_init(lzma_next_coder *next,
99
    const lzma_allocator *allocator,
100
    const lzma_filter_info *filters)
101
0
{
102
0
  return ia64_coder_init(next, allocator, filters, true);
103
0
}
104
#endif
105
106
107
#ifdef HAVE_DECODER_IA64
108
extern lzma_ret
109
lzma_simple_ia64_decoder_init(lzma_next_coder *next,
110
    const lzma_allocator *allocator,
111
    const lzma_filter_info *filters)
112
858
{
113
  return ia64_coder_init(next, allocator, filters, false);
114
858
}
115
#endif