Displaying 1 result from an estimated 1 matches for "prettyvariabledump".
Did you mean:
prettyvariabledumper
2017 Apr 07
2
llvm-pdbdump proposal
...mpts to special case the complex types. Unfortunately, the special
cases can't be combined generally (e.g., making an array of pointers to
functions), so it's always possible to find a new bug by adding an extra
layer of type information.
I'm proposing a restructure of VariableDumper (PrettyVariableDumper.cpp)
that I think should allow for pretty-printing of all types and actually
simplify away most of the special-case code.
The existing approach is to emit the type information for a symbol and then
the identifier, using recursion as necessary to emit the type information
of subtypes. For exampl...