Hello all I have following 2 queries:
1. Can SB APIs of LLDB provide information regarding the loadable *Code Segment* (r-xp part of /proc/$PID/maps file in case of Linux) of a debugged process? The information I am looking for is start address and end address of the loadable code segment of the debugged process. I know that SBModule class can provide all the *Sections* of the object file via SBSection class. However, I couldn't find any API in this class that can provide the information I need. 2. SBSection::GetSectionType() API returns an enum 'SectionType'. Does SectionType represent the section types as specified by different object file formats (Mach-O, PECOFF, ELF)? As an example, ELF specification specifies section types like SHT_NULL, SHT_PROGBITS, SHT_RELA, SHT_HASH, SHT_NOTE, SHT_NOBITS etc. However, SectionType enum doesn't contain all these types. Hence, enum SectionType is either a mix of all section types of different object file formats or it is a custom type of LLDB. I will appreciate any comment on this. Thanks Abhishek Aggarwal
_______________________________________________ lldb-dev mailing list lldb-dev@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev