llvm/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp

//===- DebugInlineeLinesSubsection.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/CodeView/DebugInlineeLinesSubsection.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/DebugInfo/CodeView/CodeView.h"
#include "llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h"
#include "llvm/DebugInfo/CodeView/RecordSerialization.h"
#include "llvm/Support/BinaryStreamReader.h"
#include "llvm/Support/BinaryStreamWriter.h"
#include "llvm/Support/Endian.h"
#include "llvm/Support/Error.h"
#include <cassert>
#include <cstdint>

usingnamespacellvm;
usingnamespacellvm::codeview;

Error VarStreamArrayExtractor<InlineeSourceLine>::
operator()(BinaryStreamRef Stream, uint32_t &Len, InlineeSourceLine &Item) {}

DebugInlineeLinesSubsectionRef::DebugInlineeLinesSubsectionRef()
    :{}

Error DebugInlineeLinesSubsectionRef::initialize(BinaryStreamReader Reader) {}

bool DebugInlineeLinesSubsectionRef::hasExtraFiles() const {}

DebugInlineeLinesSubsection::DebugInlineeLinesSubsection(
    DebugChecksumsSubsection &Checksums, bool HasExtraFiles)
    :{}

uint32_t DebugInlineeLinesSubsection::calculateSerializedSize() const {}

Error DebugInlineeLinesSubsection::commit(BinaryStreamWriter &Writer) const {}

void DebugInlineeLinesSubsection::addExtraFile(StringRef FileName) {}

void DebugInlineeLinesSubsection::addInlineSite(TypeIndex FuncId,
                                                StringRef FileName,
                                                uint32_t SourceLine) {}