summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC/MCObjectWriter.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-11-05 11:52:44 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-11-05 11:52:44 +0000
commitc74798d5cfbb7ae62e7e430e3b7097397faac848 (patch)
treec3629a7e0ab61943e400055a5555fa8c08f8cdf1 /llvm/lib/MC/MCObjectWriter.cpp
parentf2905afe62306373916b21d6332b1e77ef20c826 (diff)
downloadbcm5719-llvm-c74798d5cfbb7ae62e7e430e3b7097397faac848.tar.gz
bcm5719-llvm-c74798d5cfbb7ae62e7e430e3b7097397faac848.zip
Add an option to pad an uleb128 to MCObjectWriter and remove the uleb128 encoding from the DWARF asm printer.
As a side effect we now print dwarf ulebs with .ascii directives. llvm-svn: 143809
Diffstat (limited to 'llvm/lib/MC/MCObjectWriter.cpp')
-rw-r--r--llvm/lib/MC/MCObjectWriter.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCObjectWriter.cpp b/llvm/lib/MC/MCObjectWriter.cpp
index efe9f68ee22..18887397ab6 100644
--- a/llvm/lib/MC/MCObjectWriter.cpp
+++ b/llvm/lib/MC/MCObjectWriter.cpp
@@ -33,14 +33,22 @@ void MCObjectWriter::EncodeSLEB128(int64_t Value, raw_ostream &OS) {
}
/// Utility function to encode a ULEB128 value.
-void MCObjectWriter::EncodeULEB128(uint64_t Value, raw_ostream &OS) {
+void MCObjectWriter::EncodeULEB128(uint64_t Value, raw_ostream &OS,
+ unsigned Padding) {
do {
uint8_t Byte = Value & 0x7f;
Value >>= 7;
- if (Value != 0)
+ if (Value != 0 || Padding != 0)
Byte |= 0x80; // Mark this byte that that more bytes will follow.
OS << char(Byte);
} while (Value != 0);
+
+ // Pad with 0x80 and emit a null byte at the end.
+ if (Padding != 0) {
+ for (; Padding != 1; --Padding)
+ OS << '\x80';
+ OS << '\x00';
+ }
}
bool
OpenPOWER on IntegriCloud