Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 1 | //===- MinimalSymbolDumper.cpp -------------------------------- *- C++ --*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "MinimalSymbolDumper.h" |
| 11 | |
| 12 | #include "FormatUtil.h" |
Zachary Turner | 6047858 | 2018-01-05 19:12:40 +0000 | [diff] [blame] | 13 | #include "InputFile.h" |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 14 | #include "LinePrinter.h" |
| 15 | |
| 16 | #include "llvm/DebugInfo/CodeView/CVRecord.h" |
| 17 | #include "llvm/DebugInfo/CodeView/CodeView.h" |
| 18 | #include "llvm/DebugInfo/CodeView/Formatters.h" |
| 19 | #include "llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h" |
| 20 | #include "llvm/DebugInfo/CodeView/SymbolRecord.h" |
| 21 | #include "llvm/DebugInfo/CodeView/TypeRecord.h" |
Zachary Turner | 6047858 | 2018-01-05 19:12:40 +0000 | [diff] [blame] | 22 | #include "llvm/DebugInfo/PDB/Native/PDBStringTable.h" |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 23 | #include "llvm/Support/FormatVariadic.h" |
| 24 | |
| 25 | using namespace llvm; |
| 26 | using namespace llvm::codeview; |
| 27 | using namespace llvm::pdb; |
| 28 | |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 29 | static std::string formatLocalSymFlags(uint32_t IndentLevel, |
| 30 | LocalSymFlags Flags) { |
| 31 | std::vector<std::string> Opts; |
| 32 | if (Flags == LocalSymFlags::None) |
| 33 | return "none"; |
| 34 | |
| 35 | PUSH_FLAG(LocalSymFlags, IsParameter, Flags, "param"); |
| 36 | PUSH_FLAG(LocalSymFlags, IsAddressTaken, Flags, "address is taken"); |
| 37 | PUSH_FLAG(LocalSymFlags, IsCompilerGenerated, Flags, "compiler generated"); |
| 38 | PUSH_FLAG(LocalSymFlags, IsAggregate, Flags, "aggregate"); |
| 39 | PUSH_FLAG(LocalSymFlags, IsAggregated, Flags, "aggregated"); |
| 40 | PUSH_FLAG(LocalSymFlags, IsAliased, Flags, "aliased"); |
| 41 | PUSH_FLAG(LocalSymFlags, IsAlias, Flags, "alias"); |
| 42 | PUSH_FLAG(LocalSymFlags, IsReturnValue, Flags, "return val"); |
| 43 | PUSH_FLAG(LocalSymFlags, IsOptimizedOut, Flags, "optimized away"); |
| 44 | PUSH_FLAG(LocalSymFlags, IsEnregisteredGlobal, Flags, "enreg global"); |
| 45 | PUSH_FLAG(LocalSymFlags, IsEnregisteredStatic, Flags, "enreg static"); |
| 46 | return typesetItemList(Opts, 4, IndentLevel, " | "); |
| 47 | } |
| 48 | |
| 49 | static std::string formatExportFlags(uint32_t IndentLevel, ExportFlags Flags) { |
| 50 | std::vector<std::string> Opts; |
| 51 | if (Flags == ExportFlags::None) |
| 52 | return "none"; |
| 53 | |
| 54 | PUSH_FLAG(ExportFlags, IsConstant, Flags, "constant"); |
| 55 | PUSH_FLAG(ExportFlags, IsData, Flags, "data"); |
| 56 | PUSH_FLAG(ExportFlags, IsPrivate, Flags, "private"); |
| 57 | PUSH_FLAG(ExportFlags, HasNoName, Flags, "no name"); |
| 58 | PUSH_FLAG(ExportFlags, HasExplicitOrdinal, Flags, "explicit ord"); |
| 59 | PUSH_FLAG(ExportFlags, IsForwarder, Flags, "forwarder"); |
| 60 | |
| 61 | return typesetItemList(Opts, 4, IndentLevel, " | "); |
| 62 | } |
| 63 | |
| 64 | static std::string formatCompileSym2Flags(uint32_t IndentLevel, |
| 65 | CompileSym2Flags Flags) { |
| 66 | std::vector<std::string> Opts; |
| 67 | Flags &= ~CompileSym2Flags::SourceLanguageMask; |
| 68 | if (Flags == CompileSym2Flags::None) |
| 69 | return "none"; |
| 70 | |
| 71 | PUSH_FLAG(CompileSym2Flags, EC, Flags, "edit and continue"); |
| 72 | PUSH_FLAG(CompileSym2Flags, NoDbgInfo, Flags, "no dbg info"); |
| 73 | PUSH_FLAG(CompileSym2Flags, LTCG, Flags, "ltcg"); |
| 74 | PUSH_FLAG(CompileSym2Flags, NoDataAlign, Flags, "no data align"); |
| 75 | PUSH_FLAG(CompileSym2Flags, ManagedPresent, Flags, "has managed code"); |
| 76 | PUSH_FLAG(CompileSym2Flags, SecurityChecks, Flags, "security checks"); |
| 77 | PUSH_FLAG(CompileSym2Flags, HotPatch, Flags, "hot patchable"); |
| 78 | PUSH_FLAG(CompileSym2Flags, CVTCIL, Flags, "cvtcil"); |
| 79 | PUSH_FLAG(CompileSym2Flags, MSILModule, Flags, "msil module"); |
| 80 | return typesetItemList(Opts, 4, IndentLevel, " | "); |
| 81 | } |
| 82 | |
| 83 | static std::string formatCompileSym3Flags(uint32_t IndentLevel, |
| 84 | CompileSym3Flags Flags) { |
| 85 | std::vector<std::string> Opts; |
| 86 | Flags &= ~CompileSym3Flags::SourceLanguageMask; |
| 87 | |
| 88 | if (Flags == CompileSym3Flags::None) |
| 89 | return "none"; |
| 90 | |
| 91 | PUSH_FLAG(CompileSym3Flags, EC, Flags, "edit and continue"); |
| 92 | PUSH_FLAG(CompileSym3Flags, NoDbgInfo, Flags, "no dbg info"); |
| 93 | PUSH_FLAG(CompileSym3Flags, LTCG, Flags, "ltcg"); |
| 94 | PUSH_FLAG(CompileSym3Flags, NoDataAlign, Flags, "no data align"); |
| 95 | PUSH_FLAG(CompileSym3Flags, ManagedPresent, Flags, "has managed code"); |
| 96 | PUSH_FLAG(CompileSym3Flags, SecurityChecks, Flags, "security checks"); |
| 97 | PUSH_FLAG(CompileSym3Flags, HotPatch, Flags, "hot patchable"); |
| 98 | PUSH_FLAG(CompileSym3Flags, CVTCIL, Flags, "cvtcil"); |
| 99 | PUSH_FLAG(CompileSym3Flags, MSILModule, Flags, "msil module"); |
| 100 | PUSH_FLAG(CompileSym3Flags, Sdl, Flags, "sdl"); |
| 101 | PUSH_FLAG(CompileSym3Flags, PGO, Flags, "pgo"); |
| 102 | PUSH_FLAG(CompileSym3Flags, Exp, Flags, "exp"); |
| 103 | return typesetItemList(Opts, 4, IndentLevel, " | "); |
| 104 | } |
| 105 | |
| 106 | static std::string formatFrameProcedureOptions(uint32_t IndentLevel, |
| 107 | FrameProcedureOptions FPO) { |
| 108 | std::vector<std::string> Opts; |
| 109 | if (FPO == FrameProcedureOptions::None) |
| 110 | return "none"; |
| 111 | |
| 112 | PUSH_FLAG(FrameProcedureOptions, HasAlloca, FPO, "has alloca"); |
| 113 | PUSH_FLAG(FrameProcedureOptions, HasSetJmp, FPO, "has setjmp"); |
| 114 | PUSH_FLAG(FrameProcedureOptions, HasLongJmp, FPO, "has longjmp"); |
| 115 | PUSH_FLAG(FrameProcedureOptions, HasInlineAssembly, FPO, "has inline asm"); |
| 116 | PUSH_FLAG(FrameProcedureOptions, HasExceptionHandling, FPO, "has eh"); |
| 117 | PUSH_FLAG(FrameProcedureOptions, MarkedInline, FPO, "marked inline"); |
| 118 | PUSH_FLAG(FrameProcedureOptions, HasStructuredExceptionHandling, FPO, |
| 119 | "has seh"); |
| 120 | PUSH_FLAG(FrameProcedureOptions, Naked, FPO, "naked"); |
| 121 | PUSH_FLAG(FrameProcedureOptions, SecurityChecks, FPO, "secure checks"); |
| 122 | PUSH_FLAG(FrameProcedureOptions, AsynchronousExceptionHandling, FPO, |
| 123 | "has async eh"); |
| 124 | PUSH_FLAG(FrameProcedureOptions, NoStackOrderingForSecurityChecks, FPO, |
| 125 | "no stack order"); |
| 126 | PUSH_FLAG(FrameProcedureOptions, Inlined, FPO, "inlined"); |
| 127 | PUSH_FLAG(FrameProcedureOptions, StrictSecurityChecks, FPO, |
| 128 | "strict secure checks"); |
| 129 | PUSH_FLAG(FrameProcedureOptions, SafeBuffers, FPO, "safe buffers"); |
| 130 | PUSH_FLAG(FrameProcedureOptions, ProfileGuidedOptimization, FPO, "pgo"); |
| 131 | PUSH_FLAG(FrameProcedureOptions, ValidProfileCounts, FPO, |
| 132 | "has profile counts"); |
| 133 | PUSH_FLAG(FrameProcedureOptions, OptimizedForSpeed, FPO, "opt speed"); |
| 134 | PUSH_FLAG(FrameProcedureOptions, GuardCfg, FPO, "guard cfg"); |
| 135 | PUSH_FLAG(FrameProcedureOptions, GuardCfw, FPO, "guard cfw"); |
| 136 | return typesetItemList(Opts, 4, IndentLevel, " | "); |
| 137 | } |
| 138 | |
Reid Kleckner | 18d90e1 | 2017-06-19 16:54:51 +0000 | [diff] [blame] | 139 | static std::string formatPublicSymFlags(uint32_t IndentLevel, |
| 140 | PublicSymFlags Flags) { |
| 141 | std::vector<std::string> Opts; |
| 142 | if (Flags == PublicSymFlags::None) |
| 143 | return "none"; |
| 144 | |
| 145 | PUSH_FLAG(PublicSymFlags, Code, Flags, "code"); |
| 146 | PUSH_FLAG(PublicSymFlags, Function, Flags, "function"); |
| 147 | PUSH_FLAG(PublicSymFlags, Managed, Flags, "managed"); |
| 148 | PUSH_FLAG(PublicSymFlags, MSIL, Flags, "msil"); |
| 149 | return typesetItemList(Opts, 4, IndentLevel, " | "); |
| 150 | } |
| 151 | |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 152 | static std::string formatProcSymFlags(uint32_t IndentLevel, |
| 153 | ProcSymFlags Flags) { |
| 154 | std::vector<std::string> Opts; |
| 155 | if (Flags == ProcSymFlags::None) |
| 156 | return "none"; |
| 157 | |
| 158 | PUSH_FLAG(ProcSymFlags, HasFP, Flags, "has fp"); |
| 159 | PUSH_FLAG(ProcSymFlags, HasIRET, Flags, "has iret"); |
| 160 | PUSH_FLAG(ProcSymFlags, HasFRET, Flags, "has fret"); |
| 161 | PUSH_FLAG(ProcSymFlags, IsNoReturn, Flags, "noreturn"); |
| 162 | PUSH_FLAG(ProcSymFlags, IsUnreachable, Flags, "unreachable"); |
| 163 | PUSH_FLAG(ProcSymFlags, HasCustomCallingConv, Flags, "custom calling conv"); |
| 164 | PUSH_FLAG(ProcSymFlags, IsNoInline, Flags, "noinline"); |
| 165 | PUSH_FLAG(ProcSymFlags, HasOptimizedDebugInfo, Flags, "opt debuginfo"); |
| 166 | return typesetItemList(Opts, 4, IndentLevel, " | "); |
| 167 | } |
| 168 | |
| 169 | static std::string formatThunkOrdinal(ThunkOrdinal Ordinal) { |
| 170 | switch (Ordinal) { |
| 171 | RETURN_CASE(ThunkOrdinal, Standard, "thunk"); |
| 172 | RETURN_CASE(ThunkOrdinal, ThisAdjustor, "this adjustor"); |
| 173 | RETURN_CASE(ThunkOrdinal, Vcall, "vcall"); |
| 174 | RETURN_CASE(ThunkOrdinal, Pcode, "pcode"); |
| 175 | RETURN_CASE(ThunkOrdinal, UnknownLoad, "unknown load"); |
| 176 | RETURN_CASE(ThunkOrdinal, TrampIncremental, "tramp incremental"); |
| 177 | RETURN_CASE(ThunkOrdinal, BranchIsland, "branch island"); |
| 178 | } |
| 179 | return formatUnknownEnum(Ordinal); |
| 180 | } |
| 181 | |
| 182 | static std::string formatTrampolineType(TrampolineType Tramp) { |
| 183 | switch (Tramp) { |
| 184 | RETURN_CASE(TrampolineType, TrampIncremental, "tramp incremental"); |
| 185 | RETURN_CASE(TrampolineType, BranchIsland, "branch island"); |
| 186 | } |
| 187 | return formatUnknownEnum(Tramp); |
| 188 | } |
| 189 | |
| 190 | static std::string formatSourceLanguage(SourceLanguage Lang) { |
| 191 | switch (Lang) { |
| 192 | RETURN_CASE(SourceLanguage, C, "c"); |
| 193 | RETURN_CASE(SourceLanguage, Cpp, "c++"); |
| 194 | RETURN_CASE(SourceLanguage, Fortran, "fortran"); |
| 195 | RETURN_CASE(SourceLanguage, Masm, "masm"); |
| 196 | RETURN_CASE(SourceLanguage, Pascal, "pascal"); |
| 197 | RETURN_CASE(SourceLanguage, Basic, "basic"); |
| 198 | RETURN_CASE(SourceLanguage, Cobol, "cobol"); |
| 199 | RETURN_CASE(SourceLanguage, Link, "link"); |
| 200 | RETURN_CASE(SourceLanguage, VB, "vb"); |
| 201 | RETURN_CASE(SourceLanguage, Cvtres, "cvtres"); |
| 202 | RETURN_CASE(SourceLanguage, Cvtpgd, "cvtpgd"); |
| 203 | RETURN_CASE(SourceLanguage, CSharp, "c#"); |
| 204 | RETURN_CASE(SourceLanguage, ILAsm, "il asm"); |
| 205 | RETURN_CASE(SourceLanguage, Java, "java"); |
| 206 | RETURN_CASE(SourceLanguage, JScript, "javascript"); |
| 207 | RETURN_CASE(SourceLanguage, MSIL, "msil"); |
| 208 | RETURN_CASE(SourceLanguage, HLSL, "hlsl"); |
Reid Kleckner | 898ddf6 | 2017-07-24 16:16:42 +0000 | [diff] [blame] | 209 | RETURN_CASE(SourceLanguage, D, "d"); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 210 | } |
| 211 | return formatUnknownEnum(Lang); |
| 212 | } |
| 213 | |
| 214 | static std::string formatMachineType(CPUType Cpu) { |
| 215 | switch (Cpu) { |
| 216 | RETURN_CASE(CPUType, Intel8080, "intel 8080"); |
| 217 | RETURN_CASE(CPUType, Intel8086, "intel 8086"); |
| 218 | RETURN_CASE(CPUType, Intel80286, "intel 80286"); |
| 219 | RETURN_CASE(CPUType, Intel80386, "intel 80386"); |
| 220 | RETURN_CASE(CPUType, Intel80486, "intel 80486"); |
| 221 | RETURN_CASE(CPUType, Pentium, "intel pentium"); |
| 222 | RETURN_CASE(CPUType, PentiumPro, "intel pentium pro"); |
| 223 | RETURN_CASE(CPUType, Pentium3, "intel pentium 3"); |
| 224 | RETURN_CASE(CPUType, MIPS, "mips"); |
| 225 | RETURN_CASE(CPUType, MIPS16, "mips-16"); |
| 226 | RETURN_CASE(CPUType, MIPS32, "mips-32"); |
| 227 | RETURN_CASE(CPUType, MIPS64, "mips-64"); |
| 228 | RETURN_CASE(CPUType, MIPSI, "mips i"); |
| 229 | RETURN_CASE(CPUType, MIPSII, "mips ii"); |
| 230 | RETURN_CASE(CPUType, MIPSIII, "mips iii"); |
| 231 | RETURN_CASE(CPUType, MIPSIV, "mips iv"); |
| 232 | RETURN_CASE(CPUType, MIPSV, "mips v"); |
| 233 | RETURN_CASE(CPUType, M68000, "motorola 68000"); |
| 234 | RETURN_CASE(CPUType, M68010, "motorola 68010"); |
| 235 | RETURN_CASE(CPUType, M68020, "motorola 68020"); |
| 236 | RETURN_CASE(CPUType, M68030, "motorola 68030"); |
| 237 | RETURN_CASE(CPUType, M68040, "motorola 68040"); |
| 238 | RETURN_CASE(CPUType, Alpha, "alpha"); |
| 239 | RETURN_CASE(CPUType, Alpha21164, "alpha 21164"); |
| 240 | RETURN_CASE(CPUType, Alpha21164A, "alpha 21164a"); |
| 241 | RETURN_CASE(CPUType, Alpha21264, "alpha 21264"); |
| 242 | RETURN_CASE(CPUType, Alpha21364, "alpha 21364"); |
| 243 | RETURN_CASE(CPUType, PPC601, "powerpc 601"); |
| 244 | RETURN_CASE(CPUType, PPC603, "powerpc 603"); |
| 245 | RETURN_CASE(CPUType, PPC604, "powerpc 604"); |
| 246 | RETURN_CASE(CPUType, PPC620, "powerpc 620"); |
| 247 | RETURN_CASE(CPUType, PPCFP, "powerpc fp"); |
| 248 | RETURN_CASE(CPUType, PPCBE, "powerpc be"); |
| 249 | RETURN_CASE(CPUType, SH3, "sh3"); |
| 250 | RETURN_CASE(CPUType, SH3E, "sh3e"); |
| 251 | RETURN_CASE(CPUType, SH3DSP, "sh3 dsp"); |
| 252 | RETURN_CASE(CPUType, SH4, "sh4"); |
| 253 | RETURN_CASE(CPUType, SHMedia, "shmedia"); |
| 254 | RETURN_CASE(CPUType, ARM3, "arm 3"); |
| 255 | RETURN_CASE(CPUType, ARM4, "arm 4"); |
| 256 | RETURN_CASE(CPUType, ARM4T, "arm 4t"); |
| 257 | RETURN_CASE(CPUType, ARM5, "arm 5"); |
| 258 | RETURN_CASE(CPUType, ARM5T, "arm 5t"); |
| 259 | RETURN_CASE(CPUType, ARM6, "arm 6"); |
| 260 | RETURN_CASE(CPUType, ARM_XMAC, "arm xmac"); |
| 261 | RETURN_CASE(CPUType, ARM_WMMX, "arm wmmx"); |
| 262 | RETURN_CASE(CPUType, ARM7, "arm 7"); |
Mandeep Singh Grang | d41ac89 | 2017-07-20 20:20:00 +0000 | [diff] [blame] | 263 | RETURN_CASE(CPUType, ARM64, "arm64"); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 264 | RETURN_CASE(CPUType, Omni, "omni"); |
| 265 | RETURN_CASE(CPUType, Ia64, "intel itanium ia64"); |
| 266 | RETURN_CASE(CPUType, Ia64_2, "intel itanium ia64 2"); |
| 267 | RETURN_CASE(CPUType, CEE, "cee"); |
| 268 | RETURN_CASE(CPUType, AM33, "am33"); |
| 269 | RETURN_CASE(CPUType, M32R, "m32r"); |
| 270 | RETURN_CASE(CPUType, TriCore, "tri-core"); |
| 271 | RETURN_CASE(CPUType, X64, "intel x86-x64"); |
| 272 | RETURN_CASE(CPUType, EBC, "ebc"); |
| 273 | RETURN_CASE(CPUType, Thumb, "thumb"); |
| 274 | RETURN_CASE(CPUType, ARMNT, "arm nt"); |
| 275 | RETURN_CASE(CPUType, D3D11_Shader, "d3d11 shader"); |
| 276 | } |
| 277 | return formatUnknownEnum(Cpu); |
| 278 | } |
| 279 | |
| 280 | static std::string formatCookieKind(FrameCookieKind Kind) { |
| 281 | switch (Kind) { |
| 282 | RETURN_CASE(FrameCookieKind, Copy, "copy"); |
| 283 | RETURN_CASE(FrameCookieKind, XorStackPointer, "xor stack ptr"); |
| 284 | RETURN_CASE(FrameCookieKind, XorFramePointer, "xor frame ptr"); |
| 285 | RETURN_CASE(FrameCookieKind, XorR13, "xor rot13"); |
| 286 | } |
| 287 | return formatUnknownEnum(Kind); |
| 288 | } |
| 289 | |
| 290 | static std::string formatRegisterId(RegisterId Id) { |
| 291 | switch (Id) { |
Hans Wennborg | 6605310 | 2017-10-03 18:27:22 +0000 | [diff] [blame] | 292 | #define CV_REGISTER(name, val) RETURN_CASE(RegisterId, name, #name) |
| 293 | #include "llvm/DebugInfo/CodeView/CodeViewRegisters.def" |
| 294 | #undef CV_REGISTER |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 295 | } |
Hans Wennborg | dc8d6f2 | 2017-10-03 18:44:12 +0000 | [diff] [blame] | 296 | return formatUnknownEnum(Id); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Reid Kleckner | ee0e8ba | 2018-09-07 18:48:27 +0000 | [diff] [blame] | 299 | static std::string formatRegisterId(uint16_t Reg16) { |
| 300 | return formatRegisterId(RegisterId(Reg16)); |
| 301 | } |
| 302 | |
| 303 | static std::string formatRegisterId(ulittle16_t &Reg16) { |
| 304 | return formatRegisterId(uint16_t(Reg16)); |
| 305 | } |
| 306 | |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 307 | static std::string formatRange(LocalVariableAddrRange Range) { |
| 308 | return formatv("[{0},+{1})", |
| 309 | formatSegmentOffset(Range.ISectStart, Range.OffsetStart), |
| 310 | Range.Range) |
| 311 | .str(); |
| 312 | } |
| 313 | |
| 314 | static std::string formatGaps(uint32_t IndentLevel, |
| 315 | ArrayRef<LocalVariableAddrGap> Gaps) { |
| 316 | std::vector<std::string> GapStrs; |
| 317 | for (const auto &G : Gaps) { |
| 318 | GapStrs.push_back(formatv("({0},{1})", G.GapStartOffset, G.Range).str()); |
| 319 | } |
| 320 | return typesetItemList(GapStrs, 7, IndentLevel, ", "); |
| 321 | } |
| 322 | |
| 323 | Error MinimalSymbolDumper::visitSymbolBegin(codeview::CVSymbol &Record) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 324 | return visitSymbolBegin(Record, 0); |
| 325 | } |
| 326 | |
| 327 | Error MinimalSymbolDumper::visitSymbolBegin(codeview::CVSymbol &Record, |
| 328 | uint32_t Offset) { |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 329 | // formatLine puts the newline at the beginning, so we use formatLine here |
| 330 | // to start a new line, and then individual visit methods use format to |
| 331 | // append to the existing line. |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 332 | P.formatLine("{0} | {1} [size = {2}]", |
| 333 | fmt_align(Offset, AlignStyle::Right, 6), |
Zachary Turner | d1de2f4 | 2017-08-21 14:53:25 +0000 | [diff] [blame] | 334 | formatSymbolKind(Record.Type), Record.length()); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 335 | P.Indent(); |
| 336 | return Error::success(); |
| 337 | } |
| 338 | |
| 339 | Error MinimalSymbolDumper::visitSymbolEnd(CVSymbol &Record) { |
Zachary Turner | f401e11 | 2017-08-17 20:04:31 +0000 | [diff] [blame] | 340 | if (RecordBytes) { |
| 341 | AutoIndent Indent(P, 7); |
| 342 | P.formatBinary("bytes", Record.content(), 0); |
| 343 | } |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 344 | P.Unindent(); |
| 345 | return Error::success(); |
| 346 | } |
| 347 | |
Zachary Turner | 59e3ae8 | 2017-08-08 18:34:44 +0000 | [diff] [blame] | 348 | std::string MinimalSymbolDumper::typeOrIdIndex(codeview::TypeIndex TI, |
| 349 | bool IsType) const { |
Zachary Turner | a1eb943 | 2017-12-15 00:27:49 +0000 | [diff] [blame] | 350 | if (TI.isSimple() || TI.isDecoratedItemId()) |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 351 | return formatv("{0}", TI).str(); |
Zachary Turner | 59e3ae8 | 2017-08-08 18:34:44 +0000 | [diff] [blame] | 352 | auto &Container = IsType ? Types : Ids; |
| 353 | StringRef Name = Container.getTypeName(TI); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 354 | if (Name.size() > 32) { |
| 355 | Name = Name.take_front(32); |
| 356 | return formatv("{0} ({1}...)", TI, Name); |
| 357 | } else |
| 358 | return formatv("{0} ({1})", TI, Name); |
| 359 | } |
| 360 | |
Zachary Turner | 59e3ae8 | 2017-08-08 18:34:44 +0000 | [diff] [blame] | 361 | std::string MinimalSymbolDumper::idIndex(codeview::TypeIndex TI) const { |
| 362 | return typeOrIdIndex(TI, false); |
| 363 | } |
| 364 | |
| 365 | std::string MinimalSymbolDumper::typeIndex(TypeIndex TI) const { |
| 366 | return typeOrIdIndex(TI, true); |
| 367 | } |
| 368 | |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 369 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, BlockSym &Block) { |
| 370 | P.format(" `{0}`", Block.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 371 | AutoIndent Indent(P, 7); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 372 | P.formatLine("parent = {0}, end = {1}", Block.Parent, Block.End); |
| 373 | P.formatLine("code size = {0}, addr = {1}", Block.CodeSize, |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 374 | formatSegmentOffset(Block.Segment, Block.CodeOffset)); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 375 | return Error::success(); |
| 376 | } |
| 377 | |
| 378 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, Thunk32Sym &Thunk) { |
| 379 | P.format(" `{0}`", Thunk.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 380 | AutoIndent Indent(P, 7); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 381 | P.formatLine("parent = {0}, end = {1}, next = {2}", Thunk.Parent, Thunk.End, |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 382 | Thunk.Next); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 383 | P.formatLine("kind = {0}, size = {1}, addr = {2}", |
| 384 | formatThunkOrdinal(Thunk.Thunk), Thunk.Length, |
| 385 | formatSegmentOffset(Thunk.Segment, Thunk.Offset)); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 386 | |
| 387 | return Error::success(); |
| 388 | } |
| 389 | |
| 390 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 391 | TrampolineSym &Tramp) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 392 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 393 | P.formatLine("type = {0}, size = {1}, source = {2}, target = {3}", |
| 394 | formatTrampolineType(Tramp.Type), Tramp.Size, |
| 395 | formatSegmentOffset(Tramp.ThunkSection, Tramp.ThunkOffset), |
| 396 | formatSegmentOffset(Tramp.TargetSection, Tramp.ThunkOffset)); |
| 397 | |
| 398 | return Error::success(); |
| 399 | } |
| 400 | |
| 401 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 402 | SectionSym &Section) { |
| 403 | P.format(" `{0}`", Section.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 404 | AutoIndent Indent(P, 7); |
Zachary Turner | 28e31ee | 2017-08-11 20:46:28 +0000 | [diff] [blame] | 405 | P.formatLine("length = {0}, alignment = {1}, rva = {2}, section # = {3}", |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 406 | Section.Length, Section.Alignment, Section.Rva, |
Zachary Turner | 28e31ee | 2017-08-11 20:46:28 +0000 | [diff] [blame] | 407 | Section.SectionNumber); |
| 408 | P.printLine("characteristics ="); |
| 409 | AutoIndent Indent2(P, 2); |
| 410 | P.printLine(formatSectionCharacteristics(P.getIndentLevel(), |
| 411 | Section.Characteristics, 1, "", |
| 412 | CharacteristicStyle::Descriptive)); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 413 | return Error::success(); |
| 414 | } |
| 415 | |
| 416 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, CoffGroupSym &CG) { |
| 417 | P.format(" `{0}`", CG.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 418 | AutoIndent Indent(P, 7); |
Zachary Turner | 28e31ee | 2017-08-11 20:46:28 +0000 | [diff] [blame] | 419 | P.formatLine("length = {0}, addr = {1}", CG.Size, |
| 420 | formatSegmentOffset(CG.Segment, CG.Offset)); |
| 421 | P.printLine("characteristics ="); |
| 422 | AutoIndent Indent2(P, 2); |
| 423 | P.printLine(formatSectionCharacteristics(P.getIndentLevel(), |
| 424 | CG.Characteristics, 1, "", |
| 425 | CharacteristicStyle::Descriptive)); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 426 | return Error::success(); |
| 427 | } |
| 428 | |
| 429 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 430 | BPRelativeSym &BPRel) { |
| 431 | P.format(" `{0}`", BPRel.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 432 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 433 | P.formatLine("type = {0}, offset = {1}", typeIndex(BPRel.Type), BPRel.Offset); |
| 434 | return Error::success(); |
| 435 | } |
| 436 | |
| 437 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 438 | BuildInfoSym &BuildInfo) { |
| 439 | P.format(" BuildId = `{0}`", BuildInfo.BuildId); |
| 440 | return Error::success(); |
| 441 | } |
| 442 | |
| 443 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 444 | CallSiteInfoSym &CSI) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 445 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 446 | P.formatLine("type = {0}, addr = {1}", typeIndex(CSI.Type), |
| 447 | formatSegmentOffset(CSI.Segment, CSI.CodeOffset)); |
| 448 | return Error::success(); |
| 449 | } |
| 450 | |
| 451 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 452 | EnvBlockSym &EnvBlock) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 453 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 454 | for (const auto &Entry : EnvBlock.Fields) { |
| 455 | P.formatLine("- {0}", Entry); |
| 456 | } |
| 457 | return Error::success(); |
| 458 | } |
| 459 | |
| 460 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, FileStaticSym &FS) { |
| 461 | P.format(" `{0}`", FS.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 462 | AutoIndent Indent(P, 7); |
Zachary Turner | 6047858 | 2018-01-05 19:12:40 +0000 | [diff] [blame] | 463 | if (SymGroup) { |
| 464 | Expected<StringRef> FileName = |
| 465 | SymGroup->getNameFromStringTable(FS.ModFilenameOffset); |
| 466 | if (FileName) { |
| 467 | P.formatLine("type = {0}, file name = {1} ({2}), flags = {3}", |
| 468 | typeIndex(FS.Index), FS.ModFilenameOffset, *FileName, |
| 469 | formatLocalSymFlags(P.getIndentLevel() + 9, FS.Flags)); |
| 470 | } |
| 471 | return Error::success(); |
| 472 | } |
| 473 | |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 474 | P.formatLine("type = {0}, file name offset = {1}, flags = {2}", |
| 475 | typeIndex(FS.Index), FS.ModFilenameOffset, |
| 476 | formatLocalSymFlags(P.getIndentLevel() + 9, FS.Flags)); |
| 477 | return Error::success(); |
| 478 | } |
| 479 | |
| 480 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, ExportSym &Export) { |
| 481 | P.format(" `{0}`", Export.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 482 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 483 | P.formatLine("ordinal = {0}, flags = {1}", Export.Ordinal, |
| 484 | formatExportFlags(P.getIndentLevel() + 9, Export.Flags)); |
| 485 | return Error::success(); |
| 486 | } |
| 487 | |
| 488 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 489 | Compile2Sym &Compile2) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 490 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 491 | SourceLanguage Lang = static_cast<SourceLanguage>( |
| 492 | Compile2.Flags & CompileSym2Flags::SourceLanguageMask); |
| 493 | P.formatLine("machine = {0}, ver = {1}, language = {2}", |
| 494 | formatMachineType(Compile2.Machine), Compile2.Version, |
| 495 | formatSourceLanguage(Lang)); |
| 496 | P.formatLine("frontend = {0}.{1}.{2}, backend = {3}.{4}.{5}", |
| 497 | Compile2.VersionFrontendMajor, Compile2.VersionFrontendMinor, |
| 498 | Compile2.VersionFrontendBuild, Compile2.VersionBackendMajor, |
| 499 | Compile2.VersionBackendMinor, Compile2.VersionBackendBuild); |
| 500 | P.formatLine("flags = {0}", |
| 501 | formatCompileSym2Flags(P.getIndentLevel() + 9, Compile2.Flags)); |
| 502 | P.formatLine( |
| 503 | "extra strings = {0}", |
| 504 | typesetStringList(P.getIndentLevel() + 9 + 2, Compile2.ExtraStrings)); |
| 505 | return Error::success(); |
| 506 | } |
| 507 | |
| 508 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 509 | Compile3Sym &Compile3) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 510 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 511 | SourceLanguage Lang = static_cast<SourceLanguage>( |
| 512 | Compile3.Flags & CompileSym3Flags::SourceLanguageMask); |
| 513 | P.formatLine("machine = {0}, Ver = {1}, language = {2}", |
| 514 | formatMachineType(Compile3.Machine), Compile3.Version, |
| 515 | formatSourceLanguage(Lang)); |
| 516 | P.formatLine("frontend = {0}.{1}.{2}.{3}, backend = {4}.{5}.{6}.{7}", |
| 517 | Compile3.VersionFrontendMajor, Compile3.VersionFrontendMinor, |
| 518 | Compile3.VersionFrontendBuild, Compile3.VersionFrontendQFE, |
| 519 | Compile3.VersionBackendMajor, Compile3.VersionBackendMinor, |
| 520 | Compile3.VersionBackendBuild, Compile3.VersionBackendQFE); |
| 521 | P.formatLine("flags = {0}", |
| 522 | formatCompileSym3Flags(P.getIndentLevel() + 9, Compile3.Flags)); |
| 523 | return Error::success(); |
| 524 | } |
| 525 | |
| 526 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 527 | ConstantSym &Constant) { |
| 528 | P.format(" `{0}`", Constant.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 529 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 530 | P.formatLine("type = {0}, value = {1}", typeIndex(Constant.Type), |
| 531 | Constant.Value.toString(10)); |
| 532 | return Error::success(); |
| 533 | } |
| 534 | |
| 535 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { |
| 536 | P.format(" `{0}`", Data.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 537 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 538 | P.formatLine("type = {0}, addr = {1}", typeIndex(Data.Type), |
| 539 | formatSegmentOffset(Data.Segment, Data.DataOffset)); |
| 540 | return Error::success(); |
| 541 | } |
| 542 | |
| 543 | Error MinimalSymbolDumper::visitKnownRecord( |
| 544 | CVSymbol &CVR, DefRangeFramePointerRelFullScopeSym &Def) { |
| 545 | P.format(" offset = {0}", Def.Offset); |
| 546 | return Error::success(); |
| 547 | } |
| 548 | |
| 549 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 550 | DefRangeFramePointerRelSym &Def) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 551 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 552 | P.formatLine("offset = {0}, range = {1}", Def.Offset, formatRange(Def.Range)); |
| 553 | P.formatLine("gaps = {2}", Def.Offset, |
| 554 | formatGaps(P.getIndentLevel() + 9, Def.Gaps)); |
| 555 | return Error::success(); |
| 556 | } |
| 557 | |
| 558 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 559 | DefRangeRegisterRelSym &Def) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 560 | AutoIndent Indent(P, 7); |
Reid Kleckner | ee0e8ba | 2018-09-07 18:48:27 +0000 | [diff] [blame] | 561 | P.formatLine("register = {0}, offset = {1}, offset in parent = {2}, has " |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 562 | "spilled udt = {3}", |
Reid Kleckner | ee0e8ba | 2018-09-07 18:48:27 +0000 | [diff] [blame] | 563 | formatRegisterId(Def.Hdr.Register), |
| 564 | int32_t(Def.Hdr.BasePointerOffset), Def.offsetInParent(), |
| 565 | Def.hasSpilledUDTMember()); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 566 | P.formatLine("range = {0}, gaps = {1}", formatRange(Def.Range), |
| 567 | formatGaps(P.getIndentLevel() + 9, Def.Gaps)); |
| 568 | return Error::success(); |
| 569 | } |
| 570 | |
| 571 | Error MinimalSymbolDumper::visitKnownRecord( |
| 572 | CVSymbol &CVR, DefRangeRegisterSym &DefRangeRegister) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 573 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 574 | P.formatLine("register = {0}, may have no name = {1}, range start = " |
| 575 | "{2}, length = {3}", |
Reid Kleckner | ee0e8ba | 2018-09-07 18:48:27 +0000 | [diff] [blame] | 576 | formatRegisterId(DefRangeRegister.Hdr.Register), |
| 577 | bool(DefRangeRegister.Hdr.MayHaveNoName), |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 578 | formatSegmentOffset(DefRangeRegister.Range.ISectStart, |
| 579 | DefRangeRegister.Range.OffsetStart), |
| 580 | DefRangeRegister.Range.Range); |
| 581 | P.formatLine("gaps = [{0}]", |
| 582 | formatGaps(P.getIndentLevel() + 9, DefRangeRegister.Gaps)); |
| 583 | return Error::success(); |
| 584 | } |
| 585 | |
| 586 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 587 | DefRangeSubfieldRegisterSym &Def) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 588 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 589 | bool NoName = !!(Def.Hdr.MayHaveNoName == 0); |
| 590 | P.formatLine("register = {0}, may have no name = {1}, offset in parent = {2}", |
Reid Kleckner | ee0e8ba | 2018-09-07 18:48:27 +0000 | [diff] [blame] | 591 | formatRegisterId(Def.Hdr.Register), NoName, |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 592 | uint32_t(Def.Hdr.OffsetInParent)); |
| 593 | P.formatLine("range = {0}, gaps = {1}", formatRange(Def.Range), |
| 594 | formatGaps(P.getIndentLevel() + 9, Def.Gaps)); |
| 595 | return Error::success(); |
| 596 | } |
| 597 | |
| 598 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 599 | DefRangeSubfieldSym &Def) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 600 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 601 | P.formatLine("program = {0}, offset in parent = {1}, range = {2}", |
| 602 | Def.Program, Def.OffsetInParent, formatRange(Def.Range)); |
| 603 | P.formatLine("gaps = {0}", formatGaps(P.getIndentLevel() + 9, Def.Gaps)); |
| 604 | return Error::success(); |
| 605 | } |
| 606 | |
| 607 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, DefRangeSym &Def) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 608 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 609 | P.formatLine("program = {0}, range = {1}", Def.Program, |
| 610 | formatRange(Def.Range)); |
| 611 | P.formatLine("gaps = {0}", formatGaps(P.getIndentLevel() + 9, Def.Gaps)); |
| 612 | return Error::success(); |
| 613 | } |
| 614 | |
| 615 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, FrameCookieSym &FC) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 616 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 617 | P.formatLine("code offset = {0}, Register = {1}, kind = {2}, flags = {3}", |
Reid Kleckner | ee0e8ba | 2018-09-07 18:48:27 +0000 | [diff] [blame] | 618 | FC.CodeOffset, formatRegisterId(FC.Register), |
| 619 | formatCookieKind(FC.CookieKind), FC.Flags); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 620 | return Error::success(); |
| 621 | } |
| 622 | |
| 623 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, FrameProcSym &FP) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 624 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 625 | P.formatLine("size = {0}, padding size = {1}, offset to padding = {2}", |
| 626 | FP.TotalFrameBytes, FP.PaddingFrameBytes, FP.OffsetToPadding); |
| 627 | P.formatLine("bytes of callee saved registers = {0}, exception handler addr " |
| 628 | "= {1}", |
| 629 | FP.BytesOfCalleeSavedRegisters, |
| 630 | formatSegmentOffset(FP.SectionIdOfExceptionHandler, |
| 631 | FP.OffsetOfExceptionHandler)); |
| 632 | P.formatLine("flags = {0}", |
| 633 | formatFrameProcedureOptions(P.getIndentLevel() + 9, FP.Flags)); |
| 634 | return Error::success(); |
| 635 | } |
| 636 | |
| 637 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 638 | HeapAllocationSiteSym &HAS) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 639 | AutoIndent Indent(P, 7); |
Reid Kleckner | 8aa32ff | 2017-10-24 17:02:40 +0000 | [diff] [blame] | 640 | P.formatLine("type = {0}, addr = {1} call size = {2}", typeIndex(HAS.Type), |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 641 | formatSegmentOffset(HAS.Segment, HAS.CodeOffset), |
| 642 | HAS.CallInstructionSize); |
| 643 | return Error::success(); |
| 644 | } |
| 645 | |
| 646 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, InlineSiteSym &IS) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 647 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 648 | auto Bytes = makeArrayRef(IS.AnnotationData); |
| 649 | StringRef Annotations(reinterpret_cast<const char *>(Bytes.begin()), |
| 650 | Bytes.size()); |
| 651 | |
Zachary Turner | 96bcd6a | 2017-08-17 20:04:51 +0000 | [diff] [blame] | 652 | P.formatLine("inlinee = {0}, parent = {1}, end = {2}", idIndex(IS.Inlinee), |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 653 | IS.Parent, IS.End); |
| 654 | P.formatLine("annotations = {0}", toHex(Annotations)); |
| 655 | return Error::success(); |
| 656 | } |
| 657 | |
| 658 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 659 | RegisterSym &Register) { |
| 660 | P.format(" `{0}`", Register.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 661 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 662 | P.formatLine("register = {0}, type = {1}", |
| 663 | formatRegisterId(Register.Register), typeIndex(Register.Index)); |
| 664 | return Error::success(); |
| 665 | } |
| 666 | |
| 667 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 668 | PublicSym32 &Public) { |
| 669 | P.format(" `{0}`", Public.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 670 | AutoIndent Indent(P, 7); |
Reid Kleckner | 18d90e1 | 2017-06-19 16:54:51 +0000 | [diff] [blame] | 671 | P.formatLine("flags = {0}, addr = {1}", |
| 672 | formatPublicSymFlags(P.getIndentLevel() + 9, Public.Flags), |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 673 | formatSegmentOffset(Public.Segment, Public.Offset)); |
| 674 | return Error::success(); |
| 675 | } |
| 676 | |
| 677 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, ProcRefSym &PR) { |
| 678 | P.format(" `{0}`", PR.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 679 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 680 | P.formatLine("module = {0}, sum name = {1}, offset = {2}", PR.Module, |
| 681 | PR.SumName, PR.SymOffset); |
| 682 | return Error::success(); |
| 683 | } |
| 684 | |
| 685 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, LabelSym &Label) { |
| 686 | P.format(" `{0}` (addr = {1})", Label.Name, |
| 687 | formatSegmentOffset(Label.Segment, Label.CodeOffset)); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 688 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 689 | P.formatLine("flags = {0}", |
| 690 | formatProcSymFlags(P.getIndentLevel() + 9, Label.Flags)); |
| 691 | return Error::success(); |
| 692 | } |
| 693 | |
| 694 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, LocalSym &Local) { |
| 695 | P.format(" `{0}`", Local.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 696 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 697 | |
| 698 | std::string FlagStr = |
| 699 | formatLocalSymFlags(P.getIndentLevel() + 9, Local.Flags); |
| 700 | P.formatLine("type={0}, flags = {1}", typeIndex(Local.Type), FlagStr); |
| 701 | return Error::success(); |
| 702 | } |
| 703 | |
| 704 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 705 | ObjNameSym &ObjName) { |
| 706 | P.format(" sig={0}, `{1}`", ObjName.Signature, ObjName.Name); |
| 707 | return Error::success(); |
| 708 | } |
| 709 | |
| 710 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) { |
| 711 | P.format(" `{0}`", Proc.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 712 | AutoIndent Indent(P, 7); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 713 | P.formatLine("parent = {0}, end = {1}, addr = {2}, code size = {3}", |
| 714 | Proc.Parent, Proc.End, |
| 715 | formatSegmentOffset(Proc.Segment, Proc.CodeOffset), |
| 716 | Proc.CodeSize); |
Zachary Turner | 59e3ae8 | 2017-08-08 18:34:44 +0000 | [diff] [blame] | 717 | bool IsType = true; |
| 718 | switch (Proc.getKind()) { |
| 719 | case SymbolRecordKind::GlobalProcIdSym: |
| 720 | case SymbolRecordKind::ProcIdSym: |
| 721 | case SymbolRecordKind::DPCProcIdSym: |
| 722 | IsType = false; |
| 723 | break; |
| 724 | default: |
| 725 | break; |
| 726 | } |
Reid Kleckner | af88a91 | 2017-07-15 18:10:39 +0000 | [diff] [blame] | 727 | P.formatLine("type = `{0}`, debug start = {1}, debug end = {2}, flags = {3}", |
Zachary Turner | 59e3ae8 | 2017-08-08 18:34:44 +0000 | [diff] [blame] | 728 | typeOrIdIndex(Proc.FunctionType, IsType), Proc.DbgStart, |
| 729 | Proc.DbgEnd, |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 730 | formatProcSymFlags(P.getIndentLevel() + 9, Proc.Flags)); |
| 731 | return Error::success(); |
| 732 | } |
| 733 | |
| 734 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 735 | ScopeEndSym &ScopeEnd) { |
| 736 | return Error::success(); |
| 737 | } |
| 738 | |
| 739 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, CallerSym &Caller) { |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 740 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 741 | for (const auto &I : Caller.Indices) { |
Zachary Turner | 96bcd6a | 2017-08-17 20:04:51 +0000 | [diff] [blame] | 742 | P.formatLine("callee: {0}", idIndex(I)); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 743 | } |
| 744 | return Error::success(); |
| 745 | } |
| 746 | |
| 747 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 748 | RegRelativeSym &RegRel) { |
| 749 | P.format(" `{0}`", RegRel.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 750 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 751 | P.formatLine("type = {0}, register = {1}, offset = {2}", |
| 752 | typeIndex(RegRel.Type), formatRegisterId(RegRel.Register), |
| 753 | RegRel.Offset); |
| 754 | return Error::success(); |
| 755 | } |
| 756 | |
| 757 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 758 | ThreadLocalDataSym &Data) { |
| 759 | P.format(" `{0}`", Data.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 760 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 761 | P.formatLine("type = {0}, addr = {1}", typeIndex(Data.Type), |
| 762 | formatSegmentOffset(Data.Segment, Data.DataOffset)); |
| 763 | return Error::success(); |
| 764 | } |
| 765 | |
| 766 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, UDTSym &UDT) { |
| 767 | P.format(" `{0}`", UDT.Name); |
Zachary Turner | af8c75a | 2017-06-30 21:35:00 +0000 | [diff] [blame] | 768 | AutoIndent Indent(P, 7); |
Zachary Turner | 6305545 | 2017-06-15 22:24:24 +0000 | [diff] [blame] | 769 | P.formatLine("original type = {0}", UDT.Type); |
| 770 | return Error::success(); |
| 771 | } |
Alexandre Ganea | ee8a720 | 2018-07-31 19:15:50 +0000 | [diff] [blame] | 772 | |
| 773 | Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, |
| 774 | UsingNamespaceSym &UN) { |
| 775 | P.format(" `{0}`", UN.Name); |
| 776 | return Error::success(); |
| 777 | } |