LLVM 19.0.0git
DWARFAddressRange.cpp
Go to the documentation of this file.
1//===- DWARFDebugAranges.cpp ------------------------------------*- C++ -*-===//
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
13
14using namespace llvm;
15
17 DIDumpOptions DumpOpts,
18 const DWARFObject *Obj) const {
19
20 OS << (DumpOpts.DisplayRawContents ? " " : "[");
22 OS << ", ";
24 OS << (DumpOpts.DisplayRawContents ? "" : ")");
25
26 if (Obj)
28}
29
31 R.dump(OS, /* AddressSize */ 8);
32 return OS;
33}
raw_pwrite_stream & OS
void dumpAddress(raw_ostream &OS, uint64_t Address) const
static void dumpAddressSection(const DWARFObject &Obj, raw_ostream &OS, DIDumpOptions DumpOpts, uint64_t SectionIndex)
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
Definition: APFixedPoint.h:293
Container for dump options that control which debug information will be dumped.
Definition: DIContext.h:193
void dump(raw_ostream &OS, uint32_t AddressSize, DIDumpOptions DumpOpts={}, const DWARFObject *Obj=nullptr) const