LLDB mainline
MemoryRegionInfo.cpp
Go to the documentation of this file.
1//===-- MemoryRegionInfo.cpp ----------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
11using namespace lldb_private;
12
13llvm::raw_ostream &lldb_private::operator<<(llvm::raw_ostream &OS,
14 const MemoryRegionInfo &Info) {
15 return OS << llvm::formatv("MemoryRegionInfo([{0}, {1}), {2:r}{3:w}{4:x}, "
16 "{5}, `{6}`, {7}, {8}, {9})",
17 Info.GetRange().GetRangeBase(),
18 Info.GetRange().GetRangeEnd(), Info.GetReadable(),
19 Info.GetWritable(), Info.GetExecutable(),
20 Info.GetMapped(), Info.GetName(), Info.GetFlash(),
21 Info.GetBlocksize(), Info.GetMemoryTagged());
22}
23
24void llvm::format_provider<MemoryRegionInfo::OptionalBool>::format(
25 const MemoryRegionInfo::OptionalBool &B, raw_ostream &OS,
26 StringRef Options) {
27 assert(Options.size() <= 1);
28 bool Empty = Options.empty();
29 switch (B) {
31 OS << (Empty ? "no" : "-");
32 return;
34 OS << (Empty ? "yes" : Options);
35 return;
37 OS << (Empty ? "don't know" : "?");
38 return;
39 }
40}
@ Empty
If the Mangled object has neither a mangled name or demangled name we can encode the object with one ...
Definition: Mangled.cpp:413
A command line option parsing protocol class.
Definition: Options.h:58
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Stream & operator<<(Stream &s, const Mangled &obj)