llvm/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp

//===- DWARFDebugMacro.cpp ------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "llvm/DebugInfo/DWARF/DWARFDebugMacro.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/BinaryFormat/Dwarf.h"
#include "llvm/DebugInfo/DWARF/DWARFDataExtractor.h"
#include "llvm/DebugInfo/DWARF/DWARFDie.h"
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
#include "llvm/Support/Errc.h"
#include "llvm/Support/WithColor.h"
#include "llvm/Support/raw_ostream.h"
#include <cstdint>

usingnamespacellvm;
usingnamespacedwarf;

DwarfFormat DWARFDebugMacro::MacroHeader::getDwarfFormat() const {}

uint8_t DWARFDebugMacro::MacroHeader::getOffsetByteSize() const {}

void DWARFDebugMacro::MacroHeader::dumpMacroHeader(raw_ostream &OS) const {}

void DWARFDebugMacro::dump(raw_ostream &OS) const {}

Error DWARFDebugMacro::parseImpl(
    std::optional<DWARFUnitVector::compile_unit_range> Units,
    std::optional<DataExtractor> StringExtractor, DWARFDataExtractor Data,
    bool IsMacro) {}

Error DWARFDebugMacro::MacroHeader::parseMacroHeader(DWARFDataExtractor Data,
                                                     uint64_t *Offset) {}