Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BranchPPC.c « Branch « Compress « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb3aafb42141ed4cdcfe6e96965d63129d766881 (plain)
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
27
28
29
30
31
32
33
34
35
36
// BranchPPC.c

#include "BranchPPC.h"

UInt32 PPC_B_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding)
{
  UInt32 i;
  for (i = 0; i + 4 <= size; i += 4)
  {
    // PowerPC branch 6(48) 24(Offset) 1(Abs) 1(Link)
    if ((data[i] >> 2) == 0x12 && 
    (
      (data[i + 3] & 3) == 1 
      // || (data[i+3] & 3) == 3
      )
    )
    {
      UInt32 src = ((data[i + 0] & 3) << 24) |
        (data[i + 1] << 16) |
        (data[i + 2] << 8) |
        (data[i + 3] & (~3));
      
      UInt32 dest;
      if (encoding)
        dest = nowPos + i + src;
      else
        dest = src - (nowPos + i);
      data[i + 0] = 0x48 | ((dest >> 24) &  0x3);
      data[i + 1] = (dest >> 16);
      data[i + 2] = (dest >> 8);
      data[i + 3] &= 0x3;
      data[i + 3] |= dest;
    }
  }
  return i;
}