llvm/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp

//===- DWARFGdbIndex.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/DWARFGdbIndex.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/DataExtractor.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/raw_ostream.h"
#include <cassert>
#include <cinttypes>
#include <cstdint>
#include <set>
#include <utility>

usingnamespacellvm;

// .gdb_index section format reference:
// https://sourceware.org/gdb/onlinedocs/gdb/Index-Section-Format.html

void DWARFGdbIndex::dumpCUList(raw_ostream &OS) const {}

void DWARFGdbIndex::dumpTUList(raw_ostream &OS) const {}

void DWARFGdbIndex::dumpAddressArea(raw_ostream &OS) const {}

void DWARFGdbIndex::dumpSymbolTable(raw_ostream &OS) const {}

void DWARFGdbIndex::dumpConstantPool(raw_ostream &OS) const {}

void DWARFGdbIndex::dump(raw_ostream &OS) {}

bool DWARFGdbIndex::parseImpl(DataExtractor Data) {}

void DWARFGdbIndex::parse(DataExtractor Data) {}