diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-05 02:32:26 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-05 02:32:26 +0000 |
commit | 8e71301637584643cca7ce2a7fe09e6dcd06f24b (patch) | |
tree | 658a68e67f5a87d8c6a02d7e866f051e2a87d6ed /llvm/lib/Object/YAML.cpp | |
parent | beef23fe2117d0d66c28bc9b48df285a882c026d (diff) | |
download | bcm5719-llvm-8e71301637584643cca7ce2a7fe09e6dcd06f24b.tar.gz bcm5719-llvm-8e71301637584643cca7ce2a7fe09e6dcd06f24b.zip |
Move BinaryRef to a new include/llvm/Object/YAML.h file.
It will be used for ELF dumping too.
llvm-svn: 183287
Diffstat (limited to 'llvm/lib/Object/YAML.cpp')
-rw-r--r-- | llvm/lib/Object/YAML.cpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/llvm/lib/Object/YAML.cpp b/llvm/lib/Object/YAML.cpp new file mode 100644 index 00000000000..36b19974b0e --- /dev/null +++ b/llvm/lib/Object/YAML.cpp @@ -0,0 +1,34 @@ +//===- YAML.cpp - YAMLIO utilities for object files -----------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defines utility classes for handling the YAML representation of +// object files. +// +//===----------------------------------------------------------------------===// + +#include "llvm/Object/YAML.h" + +using namespace llvm; + +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); + } +} + +StringRef yaml::ScalarTraits<object::yaml::BinaryRef>::input( + StringRef Scalar, void *, object::yaml::BinaryRef &Val) { + Val = object::yaml::BinaryRef(Scalar); + return StringRef(); +} |