This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC 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: Structured Exception Handling in gcc


"Rodrigo Dominguez" <roddomi@hotmail.com> writes:

> I am looking for information on how GCC implements Structured Exception
> Handling (try/catch) in C++ programs. I would really appreciate any pointers
> that helped me understand the internals.

gcc does not implement Structured Exception Handling in the Microsoft
C++ sense.

gcc does implement plain old C++ exception handling including
try/catch.  The ABI is documented here:

http://www.codesourcery.com/cxx-abi/abi-eh.html

Ignore the fact that this is labelled "Itanium," it's used for all
targets.

Ian


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