1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00
llvm-mirror/tools/llvm-pdbutil
Zachary Turner 7fd80a3c2e [PDB] Fix failure on big endian machines.
We changed an ArrayRef<uint8_t> to an ArrayRef<uint32_t>, but
it needs to be an ArrayRef<support::ulittle32_t>.

We also change ArrayRef<> to FixedStreamArray<>.  Technically
an ArrayRef<> will work, but it can cause a copy in the underlying
implementation if the memory is not contiguous, and there's no
reason not to use a FixedStreamArray<>.

Thanks to nemanjai@ and thakis@ for helping me track this down
and confirm the fix.

llvm-svn: 344063
2018-10-09 17:58:51 +00:00
..
Analyze.cpp
Analyze.h
BytesOutputStyle.cpp
BytesOutputStyle.h
CMakeLists.txt
DumpOutputStyle.cpp [PDB] Fix failure on big endian machines. 2018-10-09 17:58:51 +00:00
DumpOutputStyle.h [PDB] Emit old fpo data to the PDB file. 2018-09-12 21:02:01 +00:00
ExplainOutputStyle.cpp
ExplainOutputStyle.h
FormatUtil.cpp
FormatUtil.h
InputFile.cpp
InputFile.h
LinePrinter.cpp
LinePrinter.h
llvm-pdbutil.cpp [PDB] Add the ability to lookup global symbols by name. 2018-10-08 04:19:16 +00:00
llvm-pdbutil.h [PDB] Add the ability to lookup global symbols by name. 2018-10-08 04:19:16 +00:00
LLVMBuild.txt
MinimalSymbolDumper.cpp Apply local fixes intended to be part of r341999.' 2018-09-11 22:02:31 +00:00
MinimalSymbolDumper.h [codeview] Decode and dump FP regs from S_FRAMEPROC records 2018-09-11 22:00:50 +00:00
MinimalTypeDumper.cpp Fix -Wtrigraphs. 2018-09-20 18:26:38 +00:00
MinimalTypeDumper.h [PDB] Add the ability to map forward references to full decls. 2018-09-20 15:50:13 +00:00
OutputStyle.h
PdbYaml.cpp
PdbYaml.h
PrettyBuiltinDumper.cpp
PrettyBuiltinDumper.h
PrettyClassDefinitionDumper.cpp [PDB] Make the pretty dumper output modified types. 2018-09-14 22:29:19 +00:00
PrettyClassDefinitionDumper.h
PrettyClassLayoutGraphicalDumper.cpp
PrettyClassLayoutGraphicalDumper.h
PrettyCompilandDumper.cpp
PrettyCompilandDumper.h
PrettyEnumDumper.cpp [PDB] Make the pretty dumper output modified types. 2018-09-14 22:29:19 +00:00
PrettyEnumDumper.h
PrettyExternalSymbolDumper.cpp
PrettyExternalSymbolDumper.h
PrettyFunctionDumper.cpp [PDB] Add support for parsing VFTable Shape records. 2018-10-01 17:55:16 +00:00
PrettyFunctionDumper.h
PrettyTypedefDumper.cpp [PDB] Add support for dumping Typedef records. 2018-10-01 17:55:38 +00:00
PrettyTypedefDumper.h
PrettyTypeDumper.cpp [PDB] Add support for parsing VFTable Shape records. 2018-10-01 17:55:16 +00:00
PrettyTypeDumper.h [PDB] Add support for parsing VFTable Shape records. 2018-10-01 17:55:16 +00:00
PrettyVariableDumper.cpp
PrettyVariableDumper.h
StreamUtil.cpp
StreamUtil.h
YAMLOutputStyle.cpp
YAMLOutputStyle.h