Greg Clayton | 432efbc | 2011-09-24 01:32:22 +0000 | [diff] [blame] | 1 | //===-- SWIG Interface for SBSection ----------------------------*- 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 | namespace lldb { |
| 11 | |
| 12 | %feature("docstring", |
Johnny Chen | dc0cbd1 | 2011-09-24 04:51:43 +0000 | [diff] [blame] | 13 | "Represents an executable image section. |
| 14 | |
| 15 | SBSection supports iteration through its subsection, represented as SBSection |
Johnny Chen | 681bb5e | 2011-10-03 23:06:33 +0000 | [diff] [blame] | 16 | as well. For example, |
| 17 | |
| 18 | for sec in exe_module: |
| 19 | if sec.GetName() == '__TEXT': |
| 20 | print sec |
| 21 | break |
| 22 | print INDENT + 'Number of subsections: %d' % sec.GetNumSubSections() |
| 23 | for subsec in sec: |
| 24 | print INDENT + repr(subsec) |
| 25 | |
| 26 | produces: |
| 27 | |
| 28 | [0x0000000100000000-0x0000000100002000) a.out.__TEXT |
| 29 | Number of subsections: 6 |
| 30 | [0x0000000100001780-0x0000000100001d5c) a.out.__TEXT.__text |
| 31 | [0x0000000100001d5c-0x0000000100001da4) a.out.__TEXT.__stubs |
| 32 | [0x0000000100001da4-0x0000000100001e2c) a.out.__TEXT.__stub_helper |
| 33 | [0x0000000100001e2c-0x0000000100001f10) a.out.__TEXT.__cstring |
| 34 | [0x0000000100001f10-0x0000000100001f68) a.out.__TEXT.__unwind_info |
| 35 | [0x0000000100001f68-0x0000000100001ff8) a.out.__TEXT.__eh_frame |
| 36 | |
| 37 | See also SBModule." |
Greg Clayton | 432efbc | 2011-09-24 01:32:22 +0000 | [diff] [blame] | 38 | ) SBSection; |
| 39 | |
| 40 | class SBSection |
| 41 | { |
| 42 | public: |
| 43 | |
| 44 | SBSection (); |
| 45 | |
| 46 | SBSection (const lldb::SBSection &rhs); |
| 47 | |
| 48 | ~SBSection (); |
| 49 | |
| 50 | bool |
| 51 | IsValid () const; |
| 52 | |
Greg Clayton | 980c750 | 2011-09-24 01:37:21 +0000 | [diff] [blame] | 53 | const char * |
| 54 | GetName (); |
| 55 | |
Greg Clayton | 432efbc | 2011-09-24 01:32:22 +0000 | [diff] [blame] | 56 | lldb::SBSection |
| 57 | FindSubSection (const char *sect_name); |
| 58 | |
| 59 | size_t |
| 60 | GetNumSubSections (); |
| 61 | |
| 62 | lldb::SBSection |
| 63 | GetSubSectionAtIndex (size_t idx); |
| 64 | |
| 65 | lldb::addr_t |
| 66 | GetFileAddress (); |
| 67 | |
| 68 | lldb::addr_t |
| 69 | GetByteSize (); |
| 70 | |
| 71 | uint64_t |
| 72 | GetFileOffset (); |
| 73 | |
| 74 | uint64_t |
| 75 | GetFileByteSize (); |
| 76 | |
| 77 | lldb::SBData |
Greg Clayton | 15ef51e | 2011-09-24 05:04:40 +0000 | [diff] [blame] | 78 | GetSectionData (); |
| 79 | |
| 80 | lldb::SBData |
Greg Clayton | 432efbc | 2011-09-24 01:32:22 +0000 | [diff] [blame] | 81 | GetSectionData (uint64_t offset, |
| 82 | uint64_t size); |
| 83 | |
| 84 | SectionType |
| 85 | GetSectionType (); |
| 86 | |
| 87 | bool |
| 88 | GetDescription (lldb::SBStream &description); |
| 89 | |
Greg Clayton | 1b92520 | 2012-01-29 06:07:39 +0000 | [diff] [blame^] | 90 | %pythoncode %{ |
| 91 | __swig_getmethods__["name"] = GetName |
| 92 | if _newclass: x = property(GetName, None) |
| 93 | |
| 94 | __swig_getmethods__["file_addr"] = GetFileAddress |
| 95 | if _newclass: x = property(GetFileAddress, None) |
| 96 | |
| 97 | __swig_getmethods__["size"] = GetByteSize |
| 98 | if _newclass: x = property(GetByteSize, None) |
| 99 | |
| 100 | __swig_getmethods__["file_offset"] = GetFileOffset |
| 101 | if _newclass: x = property(GetFileOffset, None) |
| 102 | |
| 103 | __swig_getmethods__["file_size"] = GetFileByteSize |
| 104 | if _newclass: x = property(GetFileByteSize, None) |
| 105 | |
| 106 | __swig_getmethods__["data"] = GetSectionData |
| 107 | if _newclass: x = property(GetSectionData, None) |
| 108 | |
| 109 | __swig_getmethods__["type"] = GetSectionType |
| 110 | if _newclass: x = property(GetSectionType, None) |
| 111 | |
| 112 | %} |
| 113 | |
Greg Clayton | 432efbc | 2011-09-24 01:32:22 +0000 | [diff] [blame] | 114 | private: |
| 115 | |
| 116 | std::auto_ptr<lldb_private::SectionImpl> m_opaque_ap; |
| 117 | }; |
| 118 | |
| 119 | } // namespace lldb |