Rizin
unix-like reverse engineering framework and cli tools
sparc.c File Reference

Filter for SPARC binaries. More...

#include "simple_private.h"

Go to the source code of this file.

Functions

static size_t sparc_code (void *simple lzma_attribute((__unused__)), uint32_t now_pos, bool is_encoder, uint8_t *buffer, size_t size)
 
static lzma_ret sparc_coder_init (lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, bool is_encoder)
 
lzma_ret lzma_simple_sparc_encoder_init (lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters)
 
lzma_ret lzma_simple_sparc_decoder_init (lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters)
 

Detailed Description

Filter for SPARC binaries.

Definition in file sparc.c.

Function Documentation

◆ lzma_simple_sparc_decoder_init()

lzma_ret lzma_simple_sparc_decoder_init ( lzma_next_coder next,
const lzma_allocator allocator,
const lzma_filter_info filters 
)

Definition at line 78 of file sparc.c.

81 {
82  return sparc_coder_init(next, allocator, filters, false);
83 }
const lzma_allocator * allocator
Definition: block.h:377
const lzma_filter * filters
Definition: container.h:315
static lzma_ret sparc_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, bool is_encoder)
Definition: sparc.c:60

References allocator, filters, and sparc_coder_init().

◆ lzma_simple_sparc_encoder_init()

lzma_ret lzma_simple_sparc_encoder_init ( lzma_next_coder next,
const lzma_allocator allocator,
const lzma_filter_info filters 
)

Definition at line 69 of file sparc.c.

72 {
73  return sparc_coder_init(next, allocator, filters, true);
74 }

References allocator, filters, and sparc_coder_init().

◆ sparc_code()

static size_t sparc_code ( void *simple   lzma_attribute(__unused__),
uint32_t  now_pos,
bool  is_encoder,
uint8_t buffer,
size_t  size 
)
static

Definition at line 18 of file sparc.c.

21 {
22  size_t i;
23  for (i = 0; i + 4 <= size; i += 4) {
24 
25  if ((buffer[i] == 0x40 && (buffer[i + 1] & 0xC0) == 0x00)
26  || (buffer[i] == 0x7F
27  && (buffer[i + 1] & 0xC0) == 0xC0)) {
28 
29  uint32_t src = ((uint32_t)buffer[i + 0] << 24)
30  | ((uint32_t)buffer[i + 1] << 16)
31  | ((uint32_t)buffer[i + 2] << 8)
32  | ((uint32_t)buffer[i + 3]);
33 
34  src <<= 2;
35 
36  uint32_t dest;
37  if (is_encoder)
38  dest = now_pos + (uint32_t)(i) + src;
39  else
40  dest = src - (now_pos + (uint32_t)(i));
41 
42  dest >>= 2;
43 
44  dest = (((0 - ((dest >> 22) & 1)) << 22) & 0x3FFFFFFF)
45  | (dest & 0x3FFFFF)
46  | 0x40000000;
47 
48  buffer[i + 0] = (uint8_t)(dest >> 24);
49  buffer[i + 1] = (uint8_t)(dest >> 16);
50  buffer[i + 2] = (uint8_t)(dest >> 8);
51  buffer[i + 3] = (uint8_t)(dest);
52  }
53  }
54 
55  return i;
56 }
lzma_index ** i
Definition: index.h:629
lzma_index * src
Definition: index.h:567
voidpf void uLong size
Definition: ioapi.h:138
char * dest
Definition: lz4.h:697
unsigned int uint32_t
Definition: sftypes.h:29
unsigned char uint8_t
Definition: sftypes.h:31
Definition: buffer.h:15

References dest, i, and src.

Referenced by sparc_coder_init().

◆ sparc_coder_init()

static lzma_ret sparc_coder_init ( lzma_next_coder next,
const lzma_allocator allocator,
const lzma_filter_info filters,
bool  is_encoder 
)
static

Definition at line 60 of file sparc.c.

62 {
64  &sparc_code, 0, 4, 4, is_encoder);
65 }
lzma_ret lzma_simple_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, size_t(*filter)(void *simple, uint32_t now_pos, bool is_encoder, uint8_t *buffer, size_t size), size_t simple_size, size_t unfiltered_max, uint32_t alignment, bool is_encoder)
Definition: simple_coder.c:235
static size_t sparc_code(void *simple lzma_attribute((__unused__)), uint32_t now_pos, bool is_encoder, uint8_t *buffer, size_t size)
Definition: sparc.c:18

References allocator, filters, lzma_simple_coder_init(), and sparc_code().

Referenced by lzma_simple_sparc_decoder_init(), and lzma_simple_sparc_encoder_init().