This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Interpreter/libffi ARM Porting


Craig A. Vanderborgh wrote:

What does this do?  Is it related to exception handling in some way?  Do
we need to have the equivalent thing in our ARM implementation?

Yes, it is used for the dwarf unwinder. I do not know if arm supports dwarf, but you can easily find out.


Take this snippet and compile it with gcc -fPIC z.c -fexceptions -S -dA


#include <stdio.h> extern foo(); main() { printf(" back in main\n"); foo(); return 10; }

Then have a look at the .s file and investigate the output. If so, it should look similar to the snippet you added in the mail.

Andreas


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]