llvm/llvm/tools/llvm-pdbutil/PrettyVariableDumper.cpp

//===- PrettyVariableDumper.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 "PrettyVariableDumper.h"

#include "PrettyBuiltinDumper.h"
#include "PrettyFunctionDumper.h"
#include "llvm-pdbutil.h"

#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
#include "llvm/DebugInfo/PDB/IPDBSession.h"
#include "llvm/DebugInfo/PDB/PDBSymbolData.h"
#include "llvm/DebugInfo/PDB/PDBSymbolFunc.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeArray.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypePointer.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h"
#include "llvm/DebugInfo/PDB/PDBTypes.h"

#include "llvm/Support/Format.h"

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

VariableDumper::VariableDumper(LinePrinter &P)
    :{}

void VariableDumper::start(const PDBSymbolData &Var, uint32_t Offset) {}

void VariableDumper::startVbptr(uint32_t Offset, uint32_t Size) {}

void VariableDumper::start(const PDBSymbolTypeVTable &Var, uint32_t Offset) {}

void VariableDumper::dump(const PDBSymbolTypeArray &Symbol) {}

void VariableDumper::dumpRight(const PDBSymbolTypeArray &Symbol) {}

void VariableDumper::dump(const PDBSymbolTypeBuiltin &Symbol) {}

void VariableDumper::dump(const PDBSymbolTypeEnum &Symbol) {}

void VariableDumper::dump(const PDBSymbolTypeFunctionSig &Symbol) {}

void VariableDumper::dumpRight(const PDBSymbolTypeFunctionSig &Symbol) {}

void VariableDumper::dump(const PDBSymbolTypePointer &Symbol) {}

void VariableDumper::dumpRight(const PDBSymbolTypePointer &Symbol) {}

void VariableDumper::dump(const PDBSymbolTypeTypedef &Symbol) {}

void VariableDumper::dump(const PDBSymbolTypeUDT &Symbol) {}

void VariableDumper::dumpSymbolTypeAndName(const PDBSymbol &Type,
                                           StringRef Name) {}