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

Side by Side Diff: tools/relocation_packer/src/packer.cc

Issue 410933004: Extend relocation packing to cover arm64. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to master Created 6 years, 4 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
« no previous file with comments | « tools/relocation_packer/src/packer.h ('k') | tools/relocation_packer/src/packer_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "packer.h" 5 #include "packer.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "debug.h" 9 #include "debug.h"
10 #include "delta_encoder.h"
10 #include "elf_traits.h" 11 #include "elf_traits.h"
11 #include "leb128.h" 12 #include "leb128.h"
12 #include "run_length_encoder.h" 13 #include "run_length_encoder.h"
14 #include "sleb128.h"
13 15
14 namespace relocation_packer { 16 namespace relocation_packer {
15 17
16 // Pack ARM relative relocations into a run-length encoded packed 18 // Pack relative relocations into a run-length encoded packed
17 // representation. 19 // representation.
18 void RelocationPacker::PackRelativeRelocations( 20 void RelocationPacker::PackRelativeRelocations(
19 const std::vector<ELF::Rel>& relocations, 21 const std::vector<ELF::Rel>& relocations,
20 std::vector<uint8_t>* packed) { 22 std::vector<uint8_t>* packed) {
21
22 // Run-length encode. 23 // Run-length encode.
23 std::vector<ELF::Xword> packed_words; 24 std::vector<ELF::Xword> packed_words;
24 RelocationRunLengthCodec codec; 25 RelocationRunLengthCodec codec;
25 codec.Encode(relocations, &packed_words); 26 codec.Encode(relocations, &packed_words);
26 27
27 // If insufficient data to run-length encode, do nothing. 28 // If insufficient data to run-length encode, do nothing.
28 if (packed_words.empty()) 29 if (packed_words.empty())
29 return; 30 return;
30 31
31 // LEB128 encode, with "APR1" prefix. 32 // LEB128 encode, with "APR1" prefix.
32 Leb128Encoder encoder; 33 Leb128Encoder encoder;
33 encoder.Enqueue('A'); 34 encoder.Enqueue('A');
34 encoder.Enqueue('P'); 35 encoder.Enqueue('P');
35 encoder.Enqueue('R'); 36 encoder.Enqueue('R');
36 encoder.Enqueue('1'); 37 encoder.Enqueue('1');
37 encoder.EnqueueAll(packed_words); 38 encoder.EnqueueAll(packed_words);
38 39
39 encoder.GetEncoding(packed); 40 encoder.GetEncoding(packed);
40 41
41 // Pad packed to a whole number of words. This padding will decode as 42 // Pad packed to a whole number of words. This padding will decode as
42 // LEB128 zeroes. Run-length decoding ignores it because encoding 43 // LEB128 zeroes. Run-length decoding ignores it because encoding
43 // embeds the pairs count in the stream itself. 44 // embeds the pairs count in the stream itself.
44 while (packed->size() % sizeof(ELF::Word)) 45 while (packed->size() % sizeof(ELF::Word))
45 packed->push_back(0); 46 packed->push_back(0);
46 } 47 }
47 48
48 // Unpack ARM relative relocations from a run-length encoded packed 49 // Unpack relative relocations from a run-length encoded packed
49 // representation. 50 // representation.
50 void RelocationPacker::UnpackRelativeRelocations( 51 void RelocationPacker::UnpackRelativeRelocations(
51 const std::vector<uint8_t>& packed, 52 const std::vector<uint8_t>& packed,
52 std::vector<ELF::Rel>* relocations) { 53 std::vector<ELF::Rel>* relocations) {
53
54 // LEB128 decode, after checking and stripping "APR1" prefix. 54 // LEB128 decode, after checking and stripping "APR1" prefix.
55 std::vector<ELF::Xword> packed_words; 55 std::vector<ELF::Xword> packed_words;
56 Leb128Decoder decoder(packed); 56 Leb128Decoder decoder(packed);
57 CHECK(decoder.Dequeue() == 'A' && decoder.Dequeue() == 'P' && 57 CHECK(decoder.Dequeue() == 'A' &&
58 decoder.Dequeue() == 'R' && decoder.Dequeue() == '1'); 58 decoder.Dequeue() == 'P' &&
59 decoder.Dequeue() == 'R' &&
60 decoder.Dequeue() == '1');
59 decoder.DequeueAll(&packed_words); 61 decoder.DequeueAll(&packed_words);
60 62
61 // Run-length decode. 63 // Run-length decode.
62 RelocationRunLengthCodec codec; 64 RelocationRunLengthCodec codec;
63 codec.Decode(packed_words, relocations); 65 codec.Decode(packed_words, relocations);
64 } 66 }
65 67
68 // Pack relative relocations with addends into a delta encoded packed
69 // representation.
70 void RelocationPacker::PackRelativeRelocations(
71 const std::vector<ELF::Rela>& relocations,
72 std::vector<uint8_t>* packed) {
73 // Delta encode.
74 std::vector<ELF::Sxword> packed_words;
75 RelocationDeltaCodec codec;
76 codec.Encode(relocations, &packed_words);
77
78 // If insufficient data to delta encode, do nothing.
79 if (packed_words.empty())
80 return;
81
82 // Signed LEB128 encode, with "APA1" prefix. ASCII does not encode as
83 // itself under signed LEB128, so we have to treat it specially.
84 Sleb128Encoder encoder;
85 encoder.EnqueueAll(packed_words);
86 std::vector<uint8_t> encoded;
87 encoder.GetEncoding(&encoded);
88
89 packed->push_back('A');
90 packed->push_back('P');
91 packed->push_back('A');
92 packed->push_back('1');
93 packed->insert(packed->end(), encoded.begin(), encoded.end());
94
95 // Pad packed to a whole number of words. This padding will decode as
96 // signed LEB128 zeroes. Delta decoding ignores it because encoding
97 // embeds the pairs count in the stream itself.
98 while (packed->size() % sizeof(ELF::Word))
99 packed->push_back(0);
100 }
101
102 // Unpack relative relocations with addends from a delta encoded
103 // packed representation.
104 void RelocationPacker::UnpackRelativeRelocations(
105 const std::vector<uint8_t>& packed,
106 std::vector<ELF::Rela>* relocations) {
107 // Check "APA1" prefix.
108 CHECK(packed.at(0) == 'A' &&
109 packed.at(1) == 'P' &&
110 packed.at(2) == 'A' &&
111 packed.at(3) == '1');
112
113 // Signed LEB128 decode, after stripping "APA1" prefix.
114 std::vector<ELF::Sxword> packed_words;
115 std::vector<uint8_t> stripped(packed.begin() + 4, packed.end());
116 Sleb128Decoder decoder(stripped);
117 decoder.DequeueAll(&packed_words);
118
119 // Delta decode.
120 RelocationDeltaCodec codec;
121 codec.Decode(packed_words, relocations);
122 }
123
66 } // namespace relocation_packer 124 } // namespace relocation_packer
OLDNEW
« no previous file with comments | « tools/relocation_packer/src/packer.h ('k') | tools/relocation_packer/src/packer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698