llvm/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp

//===- NativeTypeArray.cpp - info about arrays ------------------*- 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/PDB/Native/NativeTypeArray.h"

#include "llvm/DebugInfo/CodeView/CodeView.h"
#include "llvm/DebugInfo/PDB/Native/NativeSession.h"
#include "llvm/DebugInfo/PDB/Native/SymbolCache.h"
#include "llvm/DebugInfo/PDB/PDBExtras.h"

usingnamespacellvm;
usingnamespacellvm::codeview;
usingnamespacellvm::pdb;

NativeTypeArray::NativeTypeArray(NativeSession &Session, SymIndexId Id,
                                 codeview::TypeIndex TI,
                                 codeview::ArrayRecord Record)
    :{}
NativeTypeArray::~NativeTypeArray() = default;

void NativeTypeArray::dump(raw_ostream &OS, int Indent,
                           PdbSymbolIdField ShowIdFields,
                           PdbSymbolIdField RecurseIdFields) const {}

SymIndexId NativeTypeArray::getArrayIndexTypeId() const {}

bool NativeTypeArray::isConstType() const {}

bool NativeTypeArray::isUnalignedType() const {}

bool NativeTypeArray::isVolatileType() const {}

uint32_t NativeTypeArray::getCount() const {}

SymIndexId NativeTypeArray::getTypeId() const {}

uint64_t NativeTypeArray::getLength() const {}