Coverage Report

Created: 2026-03-12 06:35

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/CMake/Utilities/cmliblzma/liblzma/simple/armthumb.c
Line
Count
Source
1
// SPDX-License-Identifier: 0BSD
2
3
///////////////////////////////////////////////////////////////////////////////
4
//
5
/// \file       armthumb.c
6
/// \brief      Filter for ARM-Thumb binaries
7
///
8
//  Authors:    Igor Pavlov
9
//              Lasse Collin
10
//
11
///////////////////////////////////////////////////////////////////////////////
12
13
#include "simple_private.h"
14
15
16
static size_t
17
armthumb_code(void *simple lzma_attribute((__unused__)),
18
    uint32_t now_pos, bool is_encoder,
19
    uint8_t *buffer, size_t size)
20
154
{
21
154
  size_t i;
22
952
  for (i = 0; i + 4 <= size; i += 2) {
23
798
    if ((buffer[i + 1] & 0xF8) == 0xF0
24
44
        && (buffer[i + 3] & 0xF8) == 0xF8) {
25
10
      uint32_t src = (((uint32_t)(buffer[i + 1]) & 7) << 19)
26
10
        | ((uint32_t)(buffer[i + 0]) << 11)
27
10
        | (((uint32_t)(buffer[i + 3]) & 7) << 8)
28
10
        | (uint32_t)(buffer[i + 2]);
29
30
10
      src <<= 1;
31
32
10
      uint32_t dest;
33
10
      if (is_encoder)
34
0
        dest = now_pos + (uint32_t)(i) + 4 + src;
35
10
      else
36
10
        dest = src - (now_pos + (uint32_t)(i) + 4);
37
38
10
      dest >>= 1;
39
10
      buffer[i + 1] = 0xF0 | ((dest >> 19) & 0x7);
40
10
      buffer[i + 0] = (dest >> 11);
41
10
      buffer[i + 3] = 0xF8 | ((dest >> 8) & 0x7);
42
10
      buffer[i + 2] = (dest);
43
10
      i += 2;
44
10
    }
45
798
  }
46
47
154
  return i;
48
154
}
49
50
51
static lzma_ret
52
armthumb_coder_init(lzma_next_coder *next, const lzma_allocator *allocator,
53
    const lzma_filter_info *filters, bool is_encoder)
54
38
{
55
38
  return lzma_simple_coder_init(next, allocator, filters,
56
38
      &armthumb_code, 0, 4, 2, is_encoder);
57
38
}
58
59
60
#ifdef HAVE_ENCODER_ARMTHUMB
61
extern lzma_ret
62
lzma_simple_armthumb_encoder_init(lzma_next_coder *next,
63
    const lzma_allocator *allocator,
64
    const lzma_filter_info *filters)
65
0
{
66
0
  return armthumb_coder_init(next, allocator, filters, true);
67
0
}
68
#endif
69
70
71
#ifdef HAVE_DECODER_ARMTHUMB
72
extern lzma_ret
73
lzma_simple_armthumb_decoder_init(lzma_next_coder *next,
74
    const lzma_allocator *allocator,
75
    const lzma_filter_info *filters)
76
38
{
77
  return armthumb_coder_init(next, allocator, filters, false);
78
38
}
79
#endif