.eh_frame的一些资料

Posted on 2011年10月12日 16:26

http://www.x86-64.org/pipermail/discuss/2004-September/005114.html

  这封邮件中提到CIE pointer在“当前”版本的gcc中实现为当前地址和CIE起始地址的差。

 

http://www.x86-64.org/pipermail/discuss/2004-August/005017.html

  这封邮件后面的附件中描述的eh_frame的格式。

附件的地址:

http://www.x86-64.org/pipermail/discuss/attachments/20040816/914f9b7c/attachment.txt

 

http://www.airs.com/blog/archives/460

  这篇文章描述了eh_frame的一些相关信息。其中提到gcc处理异常的时候会生成eh_frame。推测eh_frame完全是依赖编译器的实现,因此dwarf规范没提到这东西。

 

根据前面的几篇文章中的信息,可以确定在eh_frame中,CIE_id的值应该是0。现在不确定debug_frame中CIE_id是否和此不同。但根据实际测试,debug_frame中的通常是-1。

 

http://www.airs.com/blog/archives/166

  GCC Exception Frame,也就是eh_frame。这里提到eh_frame是dwarf调试信息的变体(variant)