LLVM  8.0.1
ScopedPrinter.cpp
Go to the documentation of this file.
2 
3 #include "llvm/Support/Format.h"
4 #include <cctype>
5 
6 using namespace llvm::support;
7 
8 namespace llvm {
9 
11  OS << "0x" << to_hexString(Value.Value);
12  return OS;
13 }
14 
15 const std::string to_hexString(uint64_t Value, bool UpperCase) {
16  std::string number;
17  llvm::raw_string_ostream stream(number);
18  stream << format_hex_no_prefix(Value, 1, UpperCase);
19  return stream.str();
20 }
21 
22 void ScopedPrinter::printBinaryImpl(StringRef Label, StringRef Str,
23  ArrayRef<uint8_t> Data, bool Block,
24  uint32_t StartOffset) {
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, StartOffset, 16, 4,
35  (IndentLevel + 1) * 2, true)
36  << "\n";
37  startLine() << ")\n";
38  } else {
39  startLine() << Label << ":";
40  if (!Str.empty())
41  OS << " " << Str;
42  OS << " (" << format_bytes(Data, None, Data.size(), 1, 0, true) << ")\n";
43  }
44 }
45 
46 } // namespace llvm
const NoneType None
Definition: None.h:24
This class represents lattice values for constants.
Definition: AllocatorList.h:24
FormattedBytes format_bytes_with_ascii(ArrayRef< uint8_t > Bytes, Optional< uint64_t > FirstByteOffset=None, uint32_t NumPerLine=16, uint8_t ByteGroupSize=4, uint32_t IndentLevel=0, bool Upper=false)
Definition: Format.h:247
FormattedBytes format_bytes(ArrayRef< uint8_t > Bytes, Optional< uint64_t > FirstByteOffset=None, uint32_t NumPerLine=16, uint8_t ByteGroupSize=4, uint32_t IndentLevel=0, bool Upper=false)
Definition: Format.h:239
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:133
size_t size() const
size - Get the array size.
Definition: ArrayRef.h:149
std::string & str()
Flushes the stream contents to the target string and returns the string&#39;s reference.
Definition: raw_ostream.h:499
const std::string to_hexString(uint64_t Value, bool UpperCase=true)
FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width, bool Upper=false)
format_hex_no_prefix - Output N as a fixed width hexadecimal.
Definition: Format.h:199
raw_ostream & operator<<(raw_ostream &OS, const APInt &I)
Definition: APInt.h:2039
A raw_ostream that writes to an std::string.
Definition: raw_ostream.h:483
LLVM Value Representation.
Definition: Value.h:73
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
bool empty() const
empty - Check if the array is empty.
Definition: ArrayRef.h:144