mirror of
https://github.com/RPCSX/llvm.git
synced 2026-01-31 01:05:23 +01:00
Previously this change was submitted from a Windows machine, so changes made to the case of filenames and directory names did not survive the commit, and as a result the CMake source file names and the on-disk file names did not match on case-sensitive file systems. I'm resubmitting this patch from a Linux system, which hopefully allows the case changes to make it through unfettered. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277213 91177308-0d34-0410-b5e6-96231b3b80d8
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
//===- NameHashTable.h - PDB Name Hash Table --------------------*- 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_RAW_NAMEHASHTABLE_H
|
|
#define LLVM_DEBUGINFO_PDB_RAW_NAMEHASHTABLE_H
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/DebugInfo/MSF/StreamArray.h"
|
|
#include "llvm/DebugInfo/MSF/StreamRef.h"
|
|
#include "llvm/Support/Endian.h"
|
|
#include "llvm/Support/Error.h"
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace llvm {
|
|
namespace msf {
|
|
class StreamReader;
|
|
}
|
|
namespace pdb {
|
|
|
|
class NameHashTable {
|
|
public:
|
|
NameHashTable();
|
|
|
|
Error load(msf::StreamReader &Stream);
|
|
|
|
uint32_t getNameCount() const { return NameCount; }
|
|
uint32_t getHashVersion() const { return HashVersion; }
|
|
uint32_t getSignature() const { return Signature; }
|
|
|
|
StringRef getStringForID(uint32_t ID) const;
|
|
uint32_t getIDForString(StringRef Str) const;
|
|
|
|
msf::FixedStreamArray<support::ulittle32_t> name_ids() const;
|
|
|
|
private:
|
|
msf::ReadableStreamRef NamesBuffer;
|
|
msf::FixedStreamArray<support::ulittle32_t> IDs;
|
|
uint32_t Signature;
|
|
uint32_t HashVersion;
|
|
uint32_t NameCount;
|
|
};
|
|
|
|
} // end namespace pdb
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_DEBUGINFO_PDB_RAW_NAMEHASHTABLE_H
|