mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
883740b39f
gcc exception handling: if an exception unwinds through an invoke, then execution must branch to the invoke's unwind target. We previously tried to enforce this by appending a cleanup action to every selector, however this does not always work correctly due to an optimization in the C++ unwinding runtime: if only cleanups would be run while unwinding an exception, then the program just terminates without actually executing the cleanups, as invoke semantics would require. I was hoping this wouldn't be a problem, but in fact it turns out to be the cause of all the remaining failures in the LLVM testsuite (these also fail with -enable-correct-eh-support, so turning on -enable-eh didn't make things worse!). Instead we need to append a full-blown catch-all to the end of each selector. The correct way of doing this depends on the personality function, i.e. it is language dependent, so can only be done by gcc. Thus this patch which generalizes the eh.selector intrinsic so that it can handle all possible kinds of action table entries (before it didn't accomodate cleanups): now 0 indicates a cleanup, and filters have to be specified using the number of type infos plus one rather than the number of type infos. Related gcc patches will cause Ada to pass a cleanup (0) to force the selector to always fire, while C++ will use a C++ catch-all (null). llvm-svn: 41484 |
||
---|---|---|
.. | ||
CommandGuide | ||
HistoricalNotes | ||
img | ||
AliasAnalysis.html | ||
BitCodeFormat.html | ||
Bugpoint.html | ||
CFEBuildInstrs.html | ||
CodeGenerator.html | ||
CodingStandards.html | ||
CommandLine.html | ||
CompilerDriver.html | ||
CompilerWriterInfo.html | ||
DeveloperPolicy.html | ||
doxygen.cfg.in | ||
doxygen.css | ||
doxygen.footer | ||
doxygen.header | ||
doxygen.intro | ||
ExceptionHandling.html | ||
ExtendingLLVM.html | ||
FAQ.html | ||
GarbageCollection.html | ||
GetElementPtr.html | ||
GettingStarted.html | ||
GettingStartedVS.html | ||
HowToReleaseLLVM.html | ||
HowToSubmitABug.html | ||
index.html | ||
LangRef.html | ||
Lexicon.html | ||
LinkTimeOptimization.html | ||
llvm.css | ||
Makefile | ||
MakefileGuide.html | ||
Passes.html | ||
ProgrammersManual.html | ||
Projects.html | ||
ReleaseNotes.html | ||
SourceLevelDebugging.html | ||
Stacker.html | ||
SystemLibrary.html | ||
TableGenFundamentals.html | ||
TestingGuide.html | ||
UsingLibraries.html | ||
WritingAnLLVMBackend.html | ||
WritingAnLLVMPass.html |