| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add a comment about ATTRIBUTE_UNUSED to avoid further confusion over when to | Chandler Carruth | 2010-10-20 | 1 | -0/+8 |
* | Add RegionPass support. | Tobias Grosser | 2010-10-20 | 3 | -1/+130 |
* | Make CodeGen TBAA-aware. | Dan Gohman | 2010-10-20 | 4 | -7/+20 |
* | Spelling typo fix. s/incput/input/. Thanks, Bob! | Jim Grosbach | 2010-10-19 | 1 | -1/+1 |
* | Add a pre-dispatch SjLj EH hook on the unwind edge for targets to do any | Jim Grosbach | 2010-10-19 | 2 | -0/+8 |
* | Move NoAA out of BasicAliasAnalysis.cpp into its own file, now that | Dan Gohman | 2010-10-19 | 2 | -9/+1 |
* | Reapply r116831 and r116839, converting AliasAnalysis to use | Dan Gohman | 2010-10-19 | 2 | -30/+30 |
* | Extend StringRef's edit-distance algorithm to permit an upper bound on the al... | Douglas Gregor | 2010-10-19 | 1 | -1/+6 |
* | Revert r116831 and r116839, which are breaking selfhost builds. | Dan Gohman | 2010-10-19 | 2 | -30/+30 |
* | Shrink MachineOperand from 40 to 32 bytes on 64-bit hosts. | Jakob Stoklund Olesen | 2010-10-19 | 1 | -6/+18 |
* | Remove extraneous slash. | Owen Anderson | 2010-10-19 | 1 | -1/+1 |
* | Re-enable register pressure aware machine licm with fixes. Hoist() may have | Evan Cheng | 2010-10-19 | 1 | -0/+14 |
* | Oops, check in all the files for converting AliasAnalysis to | Dan Gohman | 2010-10-19 | 2 | -30/+30 |
* | Factor out the call-once implementation into its own macro. | Owen Anderson | 2010-10-19 | 1 | -70/+21 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 18 | -30/+60 |
* | Revert r116781 "- Add a hook for target to determine whether an instruction def | Daniel Dunbar | 2010-10-19 | 1 | -14/+0 |
* | GlobalOpt: EvaluateFunction() must not evaluate stores to weak_odr globals. | Mikhail Glushenkov | 2010-10-19 | 1 | -1/+28 |
* | Trailing whitespace. | Mikhail Glushenkov | 2010-10-19 | 1 | -1/+1 |
* | First step to allowing the resource directory of Clang to be adjusted for | Chandler Carruth | 2010-10-19 | 2 | -0/+6 |
* | - Add a hook for target to determine whether an instruction def is | Evan Cheng | 2010-10-19 | 1 | -0/+14 |
* | Move the definition of this to the source file to anchor the vtable. | Chandler Carruth | 2010-10-19 | 1 | -1/+1 |
* | Make the representation of AliasSets explicitly differentiate | Dan Gohman | 2010-10-18 | 1 | -13/+9 |
* | Add a virtual destructor to silence a GCC warning. | Chandler Carruth | 2010-10-18 | 1 | -0/+2 |
* | Don't pass the raw invalid pointer used to represent conflicting | Dan Gohman | 2010-10-18 | 1 | -1/+16 |
* | Don't recompute MachineRegisterInfo in the Optimize* method. | Bill Wendling | 2010-10-18 | 1 | -0/+1 |
* | Make AliasSetTracker TBAA-aware, enabling TBAA-enabled LICM. | Dan Gohman | 2010-10-18 | 2 | -13/+30 |
* | Add TypeBasedAliasAnalysis to the standard pass lists. Note that it | Dan Gohman | 2010-10-18 | 1 | -3/+11 |
* | Make BasicAliasAnalysis a normal AliasAnalysis implementation which | Dan Gohman | 2010-10-18 | 1 | -0/+6 |
* | Add a MCObjectFormat class so that code common to all targets that use a | Rafael Espindola | 2010-10-16 | 3 | -15/+58 |
* | MC-COFF: Add support for default-null weak externals. | Michael J. Spencer | 2010-10-16 | 1 | -1/+1 |
* | X86-Windows: Emit an undefined global __fltused symbol when targeting Windows | Michael J. Spencer | 2010-10-16 | 1 | -1/+14 |
* | Whitespace! | Michael J. Spencer | 2010-10-16 | 2 | -42/+42 |
* | Grammar. | Jim Grosbach | 2010-10-15 | 1 | -3/+3 |
* | Always use binary mode for output stream. This is important to prevent unwant... | Francois Pichet | 2010-10-14 | 1 | -4/+1 |
* | Try again at implementing thread-safe lazy pass initialization, without depen... | Owen Anderson | 2010-10-14 | 1 | -10/+72 |
* | Revert r116489. It included some changes I didn't intend to commit, and brok... | Owen Anderson | 2010-10-14 | 1 | -23/+23 |
* | Apparently MSVC doesn't support thread-safe static local initialization. Rol... | Owen Anderson | 2010-10-14 | 1 | -23/+23 |
* | add uadd_ov/usub_ov to apint, consolidate constant folding | Chris Lattner | 2010-10-14 | 1 | -3/+3 |
* | missed a line :( | Chris Lattner | 2010-10-13 | 1 | -1/+1 |
* | constify these methods. | Chris Lattner | 2010-10-13 | 1 | -4/+4 |
* | add a few operations for signed operations that also | Chris Lattner | 2010-10-13 | 1 | -11/+23 |
* | Conversely, Analysis-implementations do NOT need to initialize the AnalysisGr... | Owen Anderson | 2010-10-13 | 1 | -3/+1 |
* | Analysis groups need to initialize their default implementations. | Owen Anderson | 2010-10-13 | 1 | -1/+2 |
* | Take advantage of C++'s thread-safe static local initialization to simplify t... | Owen Anderson | 2010-10-13 | 1 | -11/+31 |
* | Remove noisy semicolon. | Benjamin Kramer | 2010-10-13 | 1 | -1/+1 |
* | Add Region::isTopLevelRegion(). | Tobias Grosser | 2010-10-13 | 1 | -0/+5 |
* | RegionInfo: Update RegionInfo after a BB was split. | Tobias Grosser | 2010-10-13 | 1 | -0/+6 |
* | RegioInfo: Add getExpandedRegion(). | Tobias Grosser | 2010-10-13 | 1 | -0/+8 |
* | RegionInfo: Allow to update exit and entry of a region. | Tobias Grosser | 2010-10-13 | 1 | -0/+12 |
* | RegionInfo: Enhance addSubregion. | Tobias Grosser | 2010-10-13 | 1 | -2/+4 |