[Lldb-commits] [PATCH] D69944: [lldb] Add -m option to 'target modules dump symtab' to disable demangling

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 7 06:36:54 PST 2019


labath accepted this revision.
labath added a comment.
This revision is now accepted and ready to land.

BTW, is it possible to prune the yaml to remove the stuff irrelevant for the test? I'm not that familiar with how macho2yaml works, but the equivalent elf representation of this can be as short as:

  --- !ELF
  FileHeader:
    Class:           ELFCLASS64
    Data:            ELFDATA2LSB
    Type:            ET_REL
    Machine:         EM_X86_64
  Sections:
    - Name:            .text
      Type:            SHT_PROGBITS
      Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]
      AddressAlign:    0x0000000000000010
      Content:         554889E5897DFC5DC3
  Symbols:
    - Name:            _ZN3foo3barEi
      Type:            STT_FUNC
      Section:         .text
      Size:            0x0000000000000009
  ...


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D69944/new/

https://reviews.llvm.org/D69944





More information about the lldb-commits mailing list