mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
Summary: There is a reserved range of type indexes for built-in types (like integers). This will create a symbol for a built-in type if the caller askes for one by type index. This is also plumbing for being able to recall symbols by type index in general, but user-defined types will come in subsequent patches. Reviewers: rnk, zturner Subscribers: mgorny, hiraditya, llvm-commits Differential Revision: https://reviews.llvm.org/D35163 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@307834 91177308-0d34-0410-b5e6-96231b3b80d8
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
//===- NativeCompilandSymbol.h - native impl for compiland syms -*- 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_NATIVECOMPILANDSYMBOL_H
|
|
#define LLVM_DEBUGINFO_PDB_NATIVE_NATIVECOMPILANDSYMBOL_H
|
|
|
|
#include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h"
|
|
#include "llvm/DebugInfo/PDB/Native/NativeRawSymbol.h"
|
|
|
|
namespace llvm {
|
|
namespace pdb {
|
|
|
|
class NativeCompilandSymbol : public NativeRawSymbol {
|
|
public:
|
|
NativeCompilandSymbol(NativeSession &Session, SymIndexId SymbolId,
|
|
DbiModuleDescriptor MI);
|
|
|
|
std::unique_ptr<NativeRawSymbol> clone() const override;
|
|
|
|
PDB_SymType getSymTag() const override;
|
|
bool isEditAndContinueEnabled() const override;
|
|
uint32_t getLexicalParentId() const override;
|
|
std::string getLibraryName() const override;
|
|
std::string getName() const override;
|
|
|
|
private:
|
|
DbiModuleDescriptor Module;
|
|
};
|
|
|
|
} // namespace pdb
|
|
} // namespace llvm
|
|
|
|
#endif
|