summaryrefslogtreecommitdiff
path: root/lib/Object/YAML.cpp
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-06-05 23:47:23 +0000
committerSean Silva <silvas@purdue.edu>2013-06-05 23:47:23 +0000
commit4370ddb8b821bda66478160c1a1c5714a1877d85 (patch)
tree9632d15c08a003962b84c09394459c9d8825a53f /lib/Object/YAML.cpp
parentc170230b3a8c1e0a43614a929061ad24888bfe52 (diff)
downloadllvm-4370ddb8b821bda66478160c1a1c5714a1877d85.tar.gz
llvm-4370ddb8b821bda66478160c1a1c5714a1877d85.tar.bz2
llvm-4370ddb8b821bda66478160c1a1c5714a1877d85.tar.xz
Add writeAsHex(raw_ostream &) method to BinaryRef.
This hides the implementation. A future commit will remove the error-prone getHex() and getBinary() methods. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183352 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Object/YAML.cpp')
-rw-r--r--lib/Object/YAML.cpp21
1 files changed, 14 insertions, 7 deletions
diff --git a/lib/Object/YAML.cpp b/lib/Object/YAML.cpp
index cf6e616241..e63bd5df27 100644
--- a/lib/Object/YAML.cpp
+++ b/lib/Object/YAML.cpp
@@ -20,13 +20,7 @@ using namespace object::yaml;
void yaml::ScalarTraits<object::yaml::BinaryRef>::output(
const object::yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) {
- ArrayRef<uint8_t> Data = Val.getBinary();
- for (ArrayRef<uint8_t>::iterator I = Data.begin(), E = Data.end(); I != E;
- ++I) {
- uint8_t Byte = *I;
- Out << hexdigit(Byte >> 4);
- Out << hexdigit(Byte & 0xf);
- }
+ Val.writeAsHex(Out);
}
// Can't find this anywhere else in the codebase (clang has one, but it has
@@ -61,3 +55,16 @@ void BinaryRef::writeAsBinary(raw_ostream &OS) const {
OS.write(Byte);
}
}
+
+void BinaryRef::writeAsHex(raw_ostream &OS) const {
+ if (DataIsHexString) {
+ OS.write((const char *)Data.data(), Data.size());
+ return;
+ }
+ for (ArrayRef<uint8_t>::iterator I = Data.begin(), E = Data.end(); I != E;
+ ++I) {
+ uint8_t Byte = *I;
+ OS << hexdigit(Byte >> 4);
+ OS << hexdigit(Byte & 0xf);
+ }
+}