BinSection Type
Represents a format-agnostic binary section.
Record fields
| Record Field |
Description
|
Virtual address of the section.
|
|
Full Usage:
FileSize
Field type: uint64
|
Size of the section's file-backed data. 0 when the section occupies no space in the file (e.g., uninitialized data).
|
|
Section kind.
|
Full Usage:
Name
Field type: string
|
Section name.
|
Full Usage:
Offset
Field type: uint64 option
|
File offset of the section. None when the format records no meaningful file position for the section. A section can have an offset yet hold no file-backed data (e.g., ELF .bss), in which case FileSize is 0.
|
|
Section permission.
|
Full Usage:
Size
Field type: uint64
|
Section size in memory.
|
B2R2