Coverage Report

Created: 2026-06-30 07:12

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/xz/src/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
10.8k
{
21
10.8k
  if (size < 4)
22
1.09k
    return 0;
23
24
9.79k
  size -= 4;
25
26
9.79k
  size_t i;
27
3.20M
  for (i = 0; i <= size; i += 2) {
28
3.19M
    if ((buffer[i + 1] & 0xF8) == 0xF0
29
1.38k
        && (buffer[i + 3] & 0xF8) == 0xF8) {
30
292
      uint32_t src = (((uint32_t)(buffer[i + 1]) & 7) << 19)
31
292
        | ((uint32_t)(buffer[i + 0]) << 11)
32
292
        | (((uint32_t)(buffer[i + 3]) & 7) << 8)
33
292
        | (uint32_t)(buffer[i + 2]);
34
35
292
      src <<= 1;
36
37
292
      uint32_t dest;
38
292
      if (is_encoder)
39
0
        dest = now_pos + (uint32_t)(i) + 4 + src;
40
292
      else
41
292
        dest = src - (now_pos + (uint32_t)(i) + 4);
42
43
292
      dest >>= 1;
44
292
      buffer[i + 1] = 0xF0 | ((dest >> 19) & 0x7);
45
292
      buffer[i + 0] = (dest >> 11);
46
292
      buffer[i + 3] = 0xF8 | ((dest >> 8) & 0x7);
47
292
      buffer[i + 2] = (dest);
48
292
      i += 2;
49
292
    }
50
3.19M
  }
51
52
9.79k
  return i;
53
10.8k
}
54
55
56
static lzma_ret
57
armthumb_coder_init(lzma_next_coder *next, const lzma_allocator *allocator,
58
    const lzma_filter_info *filters, bool is_encoder)
59
430
{
60
430
  return lzma_simple_coder_init(next, allocator, filters,
61
430
      &armthumb_code, 0, 4, 2, is_encoder);
62
430
}
63
64
65
#ifdef HAVE_ENCODER_ARMTHUMB
66
extern lzma_ret
67
lzma_simple_armthumb_encoder_init(lzma_next_coder *next,
68
    const lzma_allocator *allocator,
69
    const lzma_filter_info *filters)
70
0
{
71
0
  return armthumb_coder_init(next, allocator, filters, true);
72
0
}
73
#endif
74
75
76
#ifdef HAVE_DECODER_ARMTHUMB
77
extern lzma_ret
78
lzma_simple_armthumb_decoder_init(lzma_next_coder *next,
79
    const lzma_allocator *allocator,
80
    const lzma_filter_info *filters)
81
430
{
82
  return armthumb_coder_init(next, allocator, filters, false);
83
430
}
84
#endif