2015-02-07 04:30:52 +08:00
|
|
|
//===- PDBSymbolCustom.cpp - compiler-specific types ------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-02-14 11:53:56 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolCustom.h"
|
|
|
|
|
2015-02-07 04:30:52 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
|
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymbol.h"
|
2015-02-23 06:03:38 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
|
2015-02-14 11:53:56 +08:00
|
|
|
|
2015-02-13 17:09:03 +08:00
|
|
|
#include <utility>
|
2015-02-07 04:30:52 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2015-02-09 06:53:53 +08:00
|
|
|
PDBSymbolCustom::PDBSymbolCustom(const IPDBSession &PDBSession,
|
2015-02-09 04:58:09 +08:00
|
|
|
std::unique_ptr<IPDBRawSymbol> CustomSymbol)
|
|
|
|
: PDBSymbol(PDBSession, std::move(CustomSymbol)) {}
|
2015-02-08 08:29:29 +08:00
|
|
|
|
2015-02-07 04:30:52 +08:00
|
|
|
void PDBSymbolCustom::getDataBytes(llvm::SmallVector<uint8_t, 32> &bytes) {
|
|
|
|
RawSymbol->getDataBytes(bytes);
|
|
|
|
}
|
2015-02-08 08:29:29 +08:00
|
|
|
|
2015-05-16 03:13:31 +08:00
|
|
|
void PDBSymbolCustom::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); }
|