mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
Summary: We were treating the GUIDs in TypeServer2Record as strings, and the non-ASCII bytes in the GUID would not round-trip through YAML. We already had the PDB_UniqueId type portably represent a Windows GUID, but we need to hoist that up to the DebugInfo/CodeView library so that we can use it in the TypeServer2Record as well as in PDB parsing code. Reviewers: inglorion, amccarth Subscribers: llvm-commits, hiraditya Differential Revision: https://reviews.llvm.org/D35495 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308234 91177308-0d34-0410-b5e6-96231b3b80d8
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
//===- NativeExeSymbol.h - native impl for PDBSymbolExe ---------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_DEBUGINFO_PDB_NATIVE_NATIVEEXESYMBOL_H
|
|
#define LLVM_DEBUGINFO_PDB_NATIVE_NATIVEEXESYMBOL_H
|
|
|
|
#include "llvm/DebugInfo/PDB/Native/NativeRawSymbol.h"
|
|
#include "llvm/DebugInfo/PDB/Native/NativeSession.h"
|
|
|
|
namespace llvm {
|
|
namespace pdb {
|
|
|
|
class NativeExeSymbol : public NativeRawSymbol {
|
|
public:
|
|
NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId);
|
|
|
|
std::unique_ptr<NativeRawSymbol> clone() const override;
|
|
|
|
std::unique_ptr<IPDBEnumSymbols>
|
|
findChildren(PDB_SymType Type) const override;
|
|
|
|
uint32_t getAge() const override;
|
|
std::string getSymbolsFileName() const override;
|
|
codeview::GUID getGuid() const override;
|
|
bool hasCTypes() const override;
|
|
bool hasPrivateSymbols() const override;
|
|
|
|
private:
|
|
PDBFile &File;
|
|
};
|
|
|
|
} // namespace pdb
|
|
} // namespace llvm
|
|
|
|
#endif
|