llvm-project/llvm/tools/llvm-pdbdump
Zachary Turner 4d5535a70a Fix some display bugs in llvm-pdbdump.
We were incorrectly reporting all non-64 bit integers as int64s.
This is most evident when trying to print the "short" type, but
in theory could happen with chars too (although usually chars use
a different builtin type).

Additionally, we were using the wrong check when deciding whether
to print an enum definition as a global enum.  We were checking
whether or not the enum was "nested", and if so saving it until
we print the class definition that it was nested in.  But this is
not correct in rare situations where the enum is nested, but the
class that it's nested in does not have type information in the PDB.
So instead we check if there is a class definition for the parent
in the PDB.  If so we save it for later, otherwise we print it.

llvm-svn: 265993
2016-04-11 20:39:17 +00:00
..
BuiltinDumper.cpp Fix some display bugs in llvm-pdbdump. 2016-04-11 20:39:17 +00:00
BuiltinDumper.h llmv-pdbdump: Make BuiltinDumper shorter. NFC. 2015-11-03 20:16:18 +00:00
CMakeLists.txt [llvm-pdbdump] Support dynamic load address and external symbols. 2015-05-01 20:24:26 +00:00
ClassDefinitionDumper.cpp [llvm-pdbdump] Display full enum definitions. 2015-03-04 06:09:53 +00:00
ClassDefinitionDumper.h [llvm-pdbdump] Clean up method signatures. 2015-03-01 06:51:29 +00:00
CompilandDumper.cpp [llvm-pdbdump] Dump line table information. 2016-03-08 21:42:24 +00:00
CompilandDumper.h [llvm-pdbdump] Dump line table information. 2016-03-08 21:42:24 +00:00
EnumDumper.cpp [llvm-pdbdump] Display full enum definitions. 2015-03-04 06:09:53 +00:00
EnumDumper.h [llvm-pdbdump] Display full enum definitions. 2015-03-04 06:09:53 +00:00
ExternalSymbolDumper.cpp [llvm-pdbdump] Support dynamic load address and external symbols. 2015-05-01 20:24:26 +00:00
ExternalSymbolDumper.h [llvm-pdbdump] Support dynamic load address and external symbols. 2015-05-01 20:24:26 +00:00
FunctionDumper.cpp [readobj] Expand CodeView dumping functionality 2016-01-13 19:32:35 +00:00
FunctionDumper.h [llvm-pdbdump] Clean up method signatures. 2015-03-01 06:51:29 +00:00
LLVMBuild.txt Rewrite llvm-pdbdump in terms of LLVMDebugInfoPDB. 2015-02-10 22:43:25 +00:00
LinePrinter.cpp Introduce a range version of std::any_of, and use it in SCEV 2015-12-01 07:49:23 +00:00
LinePrinter.h llvm-pdbdump: Simplify. NFC. 2015-11-03 01:04:44 +00:00
TypeDumper.cpp Fix some display bugs in llvm-pdbdump. 2016-04-11 20:39:17 +00:00
TypeDumper.h [llvm-pdbdump] Display full enum definitions. 2015-03-04 06:09:53 +00:00
TypedefDumper.cpp [llvm-pdbdump] Many minor fixes and improvements 2015-03-02 04:39:56 +00:00
TypedefDumper.h [llvm-pdbdump] Clean up method signatures. 2015-03-01 06:51:29 +00:00
VariableDumper.cpp [llvm-pdbdump] Support dynamic load address and external symbols. 2015-05-01 20:24:26 +00:00
VariableDumper.h [llvm-pdbdump] Clean up method signatures. 2015-03-01 06:51:29 +00:00
llvm-pdbdump.cpp [llvm-pdbdump] Dump line table information. 2016-03-08 21:42:24 +00:00
llvm-pdbdump.h [llvm-pdbdump] Add include-only filters. 2015-09-29 19:49:06 +00:00