llvm/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp

//===- DWARFDebugAbbrev.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/DWARFDebugAbbrev.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
#include <cinttypes>
#include <cstdint>

usingnamespacellvm;

DWARFAbbreviationDeclarationSet::DWARFAbbreviationDeclarationSet() {}

void DWARFAbbreviationDeclarationSet::clear() {}

Error DWARFAbbreviationDeclarationSet::extract(DataExtractor Data,
                                               uint64_t *OffsetPtr) {}

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

const DWARFAbbreviationDeclaration *
DWARFAbbreviationDeclarationSet::getAbbreviationDeclaration(
    uint32_t AbbrCode) const {}

std::string DWARFAbbreviationDeclarationSet::getCodeRange() const {}

DWARFDebugAbbrev::DWARFDebugAbbrev(DataExtractor Data)
    :{}

Error DWARFDebugAbbrev::parse() const {}

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

Expected<const DWARFAbbreviationDeclarationSet *>
DWARFDebugAbbrev::getAbbreviationDeclarationSet(uint64_t CUAbbrOffset) const {}