aboutsummaryrefslogtreecommitdiff
path: root/sp/src/utils/lzma/C/7zip/Compress/Branch/BranchARM.c
blob: 04bd81e0de4fb7793cc6b250c86dc19a417b2ebc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* BranchARM.c */

#include "BranchARM.h"

UInt32 ARM_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding)
{
  UInt32 i;
  for (i = 0; i + 4 <= size; i += 4)
  {
    if (data[i + 3] == 0xEB)
    {
      UInt32 src = (data[i + 2] << 16) | (data[i + 1] << 8) | (data[i + 0]);
      src <<= 2;
      UInt32 dest;
      if (encoding)
        dest = nowPos + i + 8 + src;
      else
        dest = src - (nowPos + i + 8);
      dest >>= 2;
      data[i + 2] = (dest >> 16);
      data[i + 1] = (dest >> 8);
      data[i + 0] = dest;
    }
  }
  return i;
}