llvm-mirror/tools
David Majnemer bf189bdcd7 [IR] Reformulate LLVM's EH funclet IR
While we have successfully implemented a funclet-oriented EH scheme on
top of LLVM IR, our scheme has some notable deficiencies:
- catchendpad and cleanupendpad are necessary in the current design
  but they are difficult to explain to others, even to seasoned LLVM
  experts.
- catchendpad and cleanupendpad are optimization barriers.  They cannot
  be split and force all potentially throwing call-sites to be invokes.
  This has a noticable effect on the quality of our code generation.
- catchpad, while similar in some aspects to invoke, is fairly awkward.
  It is unsplittable, starts a funclet, and has control flow to other
  funclets.
- The nesting relationship between funclets is currently a property of
  control flow edges.  Because of this, we are forced to carefully
  analyze the flow graph to see if there might potentially exist illegal
  nesting among funclets.  While we have logic to clone funclets when
  they are illegally nested, it would be nicer if we had a
  representation which forbade them upfront.

Let's clean this up a bit by doing the following:
- Instead, make catchpad more like cleanuppad and landingpad: no control
  flow, just a bunch of simple operands;  catchpad would be splittable.
- Introduce catchswitch, a control flow instruction designed to model
  the constraints of funclet oriented EH.
- Make funclet scoping explicit by having funclet instructions consume
  the token produced by the funclet which contains them.
- Remove catchendpad and cleanupendpad.  Their presence can be inferred
  implicitly using coloring information.

N.B.  The state numbering code for the CLR has been updated but the
veracity of it's output cannot be spoken for.  An expert should take a
look to make sure the results are reasonable.

Reviewers: rnk, JosephTremoulet, andrew.w.kaylor

Differential Revision: http://reviews.llvm.org/D15139

llvm-svn: 255422
2015-12-12 05:38:55 +00:00
..
bugpoint Simplify testMergedProgram. 2015-12-09 00:55:05 +00:00
bugpoint-passes
dsymutil [dsymutil] Ignore absolute symbols in the debug map 2015-12-11 17:50:37 +00:00
gold [ThinLTO] Release files in gold plugin during combined index (take 2) 2015-12-10 16:11:23 +00:00
llc fix 'the the '; NFC 2015-12-07 19:21:39 +00:00
lli [Orc] Rename IndirectStubsManagerBase to IndirectStubsManager. 2015-12-06 19:44:45 +00:00
llvm-ar
llvm-as
llvm-as-fuzzer
llvm-bcanalyzer [IR] Reformulate LLVM's EH funclet IR 2015-12-12 05:38:55 +00:00
llvm-c-test
llvm-config
llvm-cov
llvm-cxxdump
llvm-diff
llvm-dis
llvm-dwarfdump
llvm-dwp [llvm-dwp] Sink debug_types.dwo emission into the code parsing the type signatures (NFC) 2015-12-09 21:02:33 +00:00
llvm-extract
llvm-go
llvm-jitlistener
llvm-link
llvm-lto Let llvm-lto installed. A few tests in clang/test are using it. 2015-12-07 23:07:16 +00:00
llvm-mc
llvm-mc-fuzzer
llvm-mcmarkup
llvm-nm
llvm-objdump [llvm-objdump/MachODump] Reduce code duplication. 2015-12-11 22:27:59 +00:00
llvm-pdbdump
llvm-profdata Revert "[llvm-profdata] Add support for weighted merge of profile data" 2015-12-04 02:13:58 +00:00
llvm-readobj [llvm-readobj] report_error() does not return, so we can simplify. 2015-12-05 23:36:52 +00:00
llvm-rtdyld [Orc] Removing traces of takeOwnershipOfBuffers left after r251560. 2015-12-07 17:35:56 +00:00
llvm-shlib
llvm-size
llvm-split
llvm-stress
llvm-symbolizer
lto Fix the order of destructors in LibLTOCodeGenerator 2015-12-09 03:37:51 +00:00
msbuild
obj2yaml
opt [opt] Fix run-twice option for non-idempotent passes 2015-12-05 01:38:12 +00:00
sancov fixing Makefile 2015-12-04 19:11:54 +00:00
verify-uselistorder
xcode-toolchain
yaml2obj
CMakeLists.txt
LLVMBuild.txt
Makefile