Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Side by Side Diff: xz/src/liblzma/simple/arm.c

Issue 2869016: Add an unpatched version of xz, XZ Utils, to /trunk/deps/third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « xz/src/liblzma/simple/Makefile.inc ('k') | xz/src/liblzma/simple/armthumb.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file arm.c
4 /// \brief Filter for ARM binaries
5 ///
6 // Authors: Igor Pavlov
7 // Lasse Collin
8 //
9 // This file has been put into the public domain.
10 // You can do whatever you want with this file.
11 //
12 ///////////////////////////////////////////////////////////////////////////////
13
14 #include "simple_private.h"
15
16
17 static size_t
18 arm_code(lzma_simple *simple lzma_attribute((unused)),
19 uint32_t now_pos, bool is_encoder,
20 uint8_t *buffer, size_t size)
21 {
22 size_t i;
23 for (i = 0; i + 4 <= size; i += 4) {
24 if (buffer[i + 3] == 0xEB) {
25 uint32_t src = (buffer[i + 2] << 16)
26 | (buffer[i + 1] << 8)
27 | (buffer[i + 0]);
28 src <<= 2;
29
30 uint32_t dest;
31 if (is_encoder)
32 dest = now_pos + (uint32_t)(i) + 8 + src;
33 else
34 dest = src - (now_pos + (uint32_t)(i) + 8);
35
36 dest >>= 2;
37 buffer[i + 2] = (dest >> 16);
38 buffer[i + 1] = (dest >> 8);
39 buffer[i + 0] = dest;
40 }
41 }
42
43 return i;
44 }
45
46
47 static lzma_ret
48 arm_coder_init(lzma_next_coder *next, lzma_allocator *allocator,
49 const lzma_filter_info *filters, bool is_encoder)
50 {
51 return lzma_simple_coder_init(next, allocator, filters,
52 &arm_code, 0, 4, 4, is_encoder);
53 }
54
55
56 extern lzma_ret
57 lzma_simple_arm_encoder_init(lzma_next_coder *next, lzma_allocator *allocator,
58 const lzma_filter_info *filters)
59 {
60 return arm_coder_init(next, allocator, filters, true);
61 }
62
63
64 extern lzma_ret
65 lzma_simple_arm_decoder_init(lzma_next_coder *next, lzma_allocator *allocator,
66 const lzma_filter_info *filters)
67 {
68 return arm_coder_init(next, allocator, filters, false);
69 }
OLDNEW
« no previous file with comments | « xz/src/liblzma/simple/Makefile.inc ('k') | xz/src/liblzma/simple/armthumb.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698