]> granicus.if.org Git - clang/commit
Validated by nightly-test runs on x86 and x86-64 darwin, including after
authorJohn McCall <rjmccall@apple.com>
Tue, 6 Jul 2010 01:34:17 +0000 (01:34 +0000)
committerJohn McCall <rjmccall@apple.com>
Tue, 6 Jul 2010 01:34:17 +0000 (01:34 +0000)
commitf1549f66a8216a78112286e3978cea2c29d6334c
treeabcabedb8b72594ef7ea106fc08684927d3a386b
parent6c47a9b9779216ef24526c064d5b6ab0db0b5009
Validated by nightly-test runs on x86 and x86-64 darwin, including after
self-host.  Hopefully these results hold up on different platforms.

I tried to keep the GNU ObjC runtime happy, but it's hard for me to test.
Reimplement how clang generates IR for exceptions.  Instead of creating new
invoke destinations which sequentially chain to the previous destination,
push a more semantic representation of *why* we need the cleanup/catch/filter
behavior, then collect that information into a single landing pad upon request.

Also reorganizes how normal cleanups (i.e. cleanups triggered by non-exceptional
control flow) are generated, since it's actually fairly closely tied in with
the former.  Remove the need to track which cleanup scope a block is associated
with.

Document a lot of previously poorly-understood (by me, at least) behavior.

The new framework implements the Horrible Hack (tm), which requires every
landing pad to have a catch-all so that inlining will work.  Clang no longer
requires the Horrible Hack just to make exceptions flow correctly within
a function, however.  The HH is an unfortunate requirement of LLVM's EH IR.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107631 91177308-0d34-0410-b5e6-96231b3b80d8
25 files changed:
lib/CodeGen/CGBlocks.cpp
lib/CodeGen/CGBlocks.h
lib/CodeGen/CGCall.cpp
lib/CodeGen/CGClass.cpp
lib/CodeGen/CGDecl.cpp
lib/CodeGen/CGDeclCXX.cpp
lib/CodeGen/CGException.cpp
lib/CodeGen/CGException.h [new file with mode: 0644]
lib/CodeGen/CGExpr.cpp
lib/CodeGen/CGExprAgg.cpp
lib/CodeGen/CGObjC.cpp
lib/CodeGen/CGObjCGNU.cpp
lib/CodeGen/CGObjCMac.cpp
lib/CodeGen/CGObjCRuntime.h
lib/CodeGen/CGStmt.cpp
lib/CodeGen/CGTemporaries.cpp
lib/CodeGen/CodeGenFunction.cpp
lib/CodeGen/CodeGenFunction.h
test/CXX/except/except.spec/p14-ir.cpp
test/CodeGenCXX/condition.cpp
test/CodeGenCXX/destructors.cpp
test/CodeGenCXX/eh.cpp
test/CodeGenCXX/nrvo.cpp
test/CodeGenCXX/threadsafe-statics-exceptions.cpp
test/CodeGenObjC/exceptions.m