1 #include "llvm/Support/ScopedPrinter.h" 2 3 #include "llvm/ADT/StringExtras.h" 4 #include "llvm/Support/Format.h" 5 #include <cctype> 6 7 using namespace llvm::support; 8 9 namespace llvm { 10 11 raw_ostream &operator<<(raw_ostream &OS, const HexNumber &Value) { 12 OS << "0x" << to_hexString(Value.Value); 13 return OS; 14 } 15 16 const std::string to_hexString(uint64_t Value, bool UpperCase) { 17 std::string number; 18 llvm::raw_string_ostream stream(number); 19 stream << format_hex_no_prefix(Value, 1, UpperCase); 20 return stream.str(); 21 } 22 23 void ScopedPrinter::printBinaryImpl(StringRef Label, StringRef Str, 24 ArrayRef<uint8_t> Data, bool Block) { 25 if (Data.size() > 16) 26 Block = true; 27 28 if (Block) { 29 startLine() << Label; 30 if (!Str.empty()) 31 OS << ": " << Str; 32 OS << " (\n"; 33 if (!Data.empty()) 34 OS << format_bytes_with_ascii(Data, 0, 16, 4, (IndentLevel + 1) * 2, true) 35 << "\n"; 36 startLine() << ")\n"; 37 } else { 38 startLine() << Label << ":"; 39 if (!Str.empty()) 40 OS << " " << Str; 41 OS << " (" << format_bytes(Data, None, Data.size(), 1, 0, true) << ")\n"; 42 } 43 } 44 45 } // namespace llvm 46