Understanding Delphi MAP File

后端 未结 3 1616
囚心锁ツ
囚心锁ツ 2021-02-07 23:19

Here is the sample of MAP file from my test project...

.......
 .......
 .......
 0001:001EFC14 00000020 C=CODE     S=.text    G=(none)   M=Vcl.CategoryButtons A         


        
3条回答
  •  情书的邮戳
    2021-02-07 23:28

    The format is:
    SegmentId:StartAddress Length C=SegmentClass S=SegmentName G=SegmentGroup M=ModuleName

    The ACBP has something to do with alignment but I can't tell you what the hex numbers mean.

    C=CODE: Code-Segment
    C=ICODE: Initialization Code-Segment
    C=DATA: (initialized) Data-Segment
    C=BSS: (uninitialized) Data-Segment
    C=TLS: Thread Local Storage

    G=(none): No Segment-Group

提交回复
热议问题