llvm/llvm/lib/DebugInfo/CodeView/TypeTableCollection.cpp

//===- TypeTableCollection.cpp -------------------------------- *- C++ --*-===//
//
// 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/TypeTableCollection.h"

#include "llvm/DebugInfo/CodeView/CodeView.h"
#include "llvm/DebugInfo/CodeView/RecordName.h"
#include "llvm/DebugInfo/CodeView/TypeIndex.h"
#include "llvm/Support/ErrorHandling.h"

usingnamespacellvm;
usingnamespacellvm::codeview;

TypeTableCollection::TypeTableCollection(ArrayRef<ArrayRef<uint8_t>> Records)
    :{}

std::optional<TypeIndex> TypeTableCollection::getFirst() {}

std::optional<TypeIndex> TypeTableCollection::getNext(TypeIndex Prev) {}

CVType TypeTableCollection::getType(TypeIndex Index) {}

StringRef TypeTableCollection::getTypeName(TypeIndex Index) {}

bool TypeTableCollection::contains(TypeIndex Index) {}

uint32_t TypeTableCollection::size() {}

uint32_t TypeTableCollection::capacity() {}

bool TypeTableCollection::replaceType(TypeIndex &Index, CVType Data,
                                      bool Stabilize) {}