#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) { … }