index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
CodeGen
/
CGException.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Don't get the exception obj from the slot more than once.
Bill Wendling
2011-12-08
1
-4
/
+3
*
Switch the Alignment argument on AggValueSlot over to CharUnits, per John's r...
Eli Friedman
2011-12-03
1
-1
/
+1
*
Track alignment in AggValueSlot. No functional change in this patch, but I'l...
Eli Friedman
2011-12-03
1
-4
/
+6
*
Whenever explicitly activating or deactivating a cleanup, we
John McCall
2011-11-10
1
-1
/
+1
*
Don't remove filters.
Bill Wendling
2011-09-22
1
-7
/
+3
*
Don't assume that the clause is a GlobalVariable. It could be a constant.
Bill Wendling
2011-09-20
1
-13
/
+11
*
The eh.selector intrinsic isn't used anymore. Replace the check here with a
Bill Wendling
2011-09-19
1
-16
/
+30
*
Throw the switch to convert clang to the new exception handling model!
Bill Wendling
2011-09-19
1
-59
/
+54
*
Refactor the load of the exception pointer and the exception selector from their
Bill Wendling
2011-09-15
1
-13
/
+18
*
Extend the ASTContext constructor to delay the initialization of
Douglas Gregor
2011-09-02
1
-1
/
+1
*
Remove unused variables noticed by GCC.
Benjamin Kramer
2011-08-27
1
-1
/
+0
*
The allocated exception slot does not alias anything; should fix self-host.
John McCall
2011-08-26
1
-1
/
+2
*
Use stronger typing for the flags on AggValueSlot and require
John McCall
2011-08-25
1
-2
/
+3
*
Simplify EH control flow by observing that EH scopes form a simple
John McCall
2011-08-11
1
-211
/
+268
*
Remove some unnecessary single element array temporaries.
Jay Foad
2011-07-29
1
-16
/
+8
*
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-23
1
-6
/
+6
*
de-constify llvm::Type, patch by David Blaikie!
Chris Lattner
2011-07-18
1
-19
/
+19
*
Convert CallInst and InvokeInst APIs to use ArrayRef.
Jay Foad
2011-07-15
1
-8
/
+7
*
Generalize Cleanup::Emit's "isForEH" parameter into a set
John McCall
2011-07-12
1
-5
/
+5
*
Do full-expression cleanups in a much more sensible way that still lets
John McCall
2011-07-12
1
-3
/
+4
*
Use cached types; no functionality change.
John McCall
2011-07-10
1
-35
/
+18
*
clang side to match the LLVM IR type system rewrite patch.
Chris Lattner
2011-07-09
1
-16
/
+24
*
Call objc_terminate() instead of abort() when a cleanup throws an
John McCall
2011-07-06
1
-2
/
+11
*
Support for catching objc pointer objects in c++ catch-statement
Fariborz Jahanian
2011-06-23
1
-1
/
+1
*
Alloa catching Objective-C id's being thrown with C++ throw
Fariborz Jahanian
2011-06-22
1
-1
/
+1
*
Emit @finally blocks completely lazily instead of forcing their
John McCall
2011-06-22
1
-56
/
+54
*
Automatic Reference Counting.
John McCall
2011-06-15
1
-2
/
+4
*
Convert Clang over to resuming from landing pads with llvm.eh.resume.
John McCall
2011-05-28
1
-69
/
+119
*
Back out r132209; it's breaking nightly tests.
Eli Friedman
2011-05-27
1
-80
/
+51
*
Implement a new, much improved version of the cleanup hack. We just need
John McCall
2011-05-27
1
-51
/
+80
*
IRgen/Darwin: Fix refacto introduced in Triple changes.
Daniel Dunbar
2011-04-26
1
-1
/
+1
*
ADT/Triple: Switch to using .isOSDarwin() predicate.
Daniel Dunbar
2011-04-19
1
-1
/
+1
*
Get rid of std::vector usage when getting function types in CGException.cpp
Anders Carlsson
2011-04-18
1
-30
/
+22
*
fix a bunch of comment typos found by codespell. Patch by
Chris Lattner
2011-04-15
1
-1
/
+1
*
Fix Objective-C++ exceptions (GNU runtime).
David Chisnall
2011-03-20
1
-1
/
+2
*
Reintroduce r127617: "Code generation for noexcept." with fixes.
Sebastian Redl
2011-03-15
1
-17
/
+25
*
Revert r127617: "Code generation for noexcept."
Jakob Stoklund Olesen
2011-03-15
1
-25
/
+17
*
Code generation for noexcept.
Sebastian Redl
2011-03-14
1
-17
/
+25
*
Propagate the new exception information to FunctionProtoType.
Sebastian Redl
2011-03-12
1
-4
/
+3
*
Add a -fcxx-exceptions flag to the frontend, which can be used to enable
Anders Carlsson
2011-02-28
1
-2
/
+2
*
Get rid of the areExceptionsEnabled() getter from LangOptions.
Anders Carlsson
2011-02-28
1
-3
/
+3
*
Reorganize the emission of local variables.
John McCall
2011-02-22
1
-7
/
+9
*
Add a LangOptions::areExceptionsEnabled and start using it.
Anders Carlsson
2011-02-20
1
-3
/
+3
*
Change the representation of GNU ?: expressions to use a different expression
John McCall
2011-02-17
1
-1
/
+2
*
Remove this FIXME; clear up an unused variable; style.
John McCall
2011-02-16
1
-8
/
+6
*
Save a copy expression for non-trivial copy constructions of catch variables.
John McCall
2011-02-16
1
-19
/
+19
*
Reorganize CodeGen{Function,Module} to eliminate the unfortunate
John McCall
2011-02-08
1
-12
/
+11
*
Move all the cleanups framework code into a single file.
John McCall
2011-01-28
1
-172
/
+1
*
Convert the exception-freeing cleanup over to the conditional cleanups code,
John McCall
2011-01-28
1
-89
/
+25
*
Fix some obvious bugs in the conditional-cleanup code and then make the
John McCall
2011-01-26
1
-2
/
+1
[next]