Age | Commit message (Expand) | Author | Files | Lines |
2015-01-07 | Introduce an example statepoint GC strategy | Philip Reames | 1 | -0/+1 |
2014-12-12 | Comment and minor code cleanup for GCStrategy (NFC) | Philip Reames | 1 | -13/+0 |
2014-12-11 | GCStrategy should not own GCFunctionInfo | Philip Reames | 1 | -6/+0 |
2014-08-04 | Remove the TargetMachine forwards for TargetSubtargetInfo based | Eric Christopher | 1 | -2/+3 |
2014-04-15 | Use unique_ptr to manage ownership of GCFunctionInfos in GCStrategy | David Blaikie | 1 | -10/+2 |
2014-04-14 | [C++11] More 'nullptr' conversion. In some cases just using a boolean check i... | Craig Topper | 1 | -1/+1 |
2014-03-07 | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 1 | -6/+6 |
2014-01-13 | [PM] Split DominatorTree into a concrete analysis result object which | Chandler Carruth | 1 | -3/+4 |
2014-01-13 | [PM] Pull the generic graph algorithms and data structures for dominator | Chandler Carruth | 1 | -1/+0 |
2014-01-13 | [cleanup] Move the Dominators.h and Verifier.h headers into the IR | Chandler Carruth | 1 | -2/+2 |
2013-01-02 | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 1 | -2/+2 |
2012-12-03 | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 1 | -7/+7 |
2012-10-26 | Remove GC roots that reference dead objects. | Nicolas Geoffray | 1 | -3/+10 |
2012-10-23 | Per the C++ standard, we need to include the definition of llvm::Calculate in | Richard Smith | 1 | -0/+1 |
2012-02-19 | Remove dead code. Improve llvm_unreachable text. Simplify some control flow. | Ahmed Charles | 1 | -1/+1 |
2012-02-08 | Codegen pass definition cleanup. No functionality. | Andrew Trick | 1 | -23/+18 |
2012-02-08 | whitespace | Andrew Trick | 1 | -52/+52 |
2012-01-20 | More dead code removal (using -Wunreachable-code) | David Blaikie | 1 | -2/+0 |
2011-12-07 | Add bundle aware API for querying instruction properties and switch the code | Evan Cheng | 1 | -1/+1 |
2011-11-11 | Add a custom safepoint method, in order for language implementers to decide w... | Nicolas Geoffray | 1 | -2/+15 |
2011-01-10 | Rename TargetFrameInfo into TargetFrameLowering. Also, put couple of FIXMEs a... | Anton Korobeynikov | 1 | -2/+2 |
2011-01-08 | Make more passes preserve dominators (or state that they preserve dominators if | Cameron Zwarich | 1 | -2/+11 |
2010-11-20 | Move some more hooks to TargetFrameInfo | Anton Korobeynikov | 1 | -3/+3 |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 1 | -1/+8 |
2010-09-24 | Attach a DebugLoc to a GC point in order to get precise information in the JI... | Nicolas Geoffray | 1 | -6/+8 |
2010-08-06 | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 1 | -2/+2 |
2010-08-06 | Revert r110396 to fix buildbots. | Owen Anderson | 1 | -2/+2 |
2010-08-05 | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 1 | -2/+2 |
2010-07-22 | undo 80 column trespassing I caused | Gabor Greif | 1 | -2/+3 |
2010-06-25 | use ArgOperand API and CallSite to access arguments of CallInst | Gabor Greif | 1 | -3/+3 |
2010-04-16 | Revert 101465, it broke internal OpenGL testing. | Eric Christopher | 1 | -3/+3 |
2010-04-16 | reapply r101434 | Gabor Greif | 1 | -3/+3 |
2010-04-16 | back out r101423 and r101397, they break llvm-gcc self-host on darwin10 | Gabor Greif | 1 | -3/+3 |
2010-04-15 | reapply r101364, which has been backed out in r101368 | Gabor Greif | 1 | -3/+3 |
2010-04-15 | Make sure the initialization of a GC root is after its definition. | Nicolas Geoffray | 1 | -3/+4 |
2010-04-15 | back out r101364, as it trips the linux nightlybot on some clang C++ tests | Gabor Greif | 1 | -3/+3 |
2010-04-15 | rotate CallInst operands, i.e. move callee to the back | Gabor Greif | 1 | -3/+3 |
2010-03-17 | fix GetOrCreateTemporarySymbol to require a name, clients | Chris Lattner | 1 | -1/+1 |
2010-03-14 | Change this code to allocate temporary labels from mccontext, | Chris Lattner | 1 | -1/+1 |
2010-03-14 | switch GC_LABEL to use an MCSymbol operand instead of a label ID operand. | Chris Lattner | 1 | -11/+8 |
2010-02-09 | move target-independent opcodes out of TargetInstrInfo | Chris Lattner | 1 | -1/+1 |
2010-01-04 | Change errs() to dbgs(). | David Greene | 1 | -1/+2 |
2009-10-25 | Remove includes of Support/Compiler.h that are no longer needed after the | Nick Lewycky | 1 | -1/+0 |
2009-10-25 | Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. | Nick Lewycky | 1 | -2/+2 |
2009-09-08 | When emitting a label for a PostCall safe point, the machine | Nicolas Geoffray | 1 | -6/+11 |
2009-08-23 | Change Pass::print to take a raw ostream instead of std::ostream, | Chris Lattner | 1 | -1/+2 |
2009-07-14 | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 1 | -1/+1 |
2009-07-11 | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin | 1 | -1/+2 |
2009-02-18 | Eliminate several more unnecessary intptr_t casts. | Dan Gohman | 1 | -1/+1 |
2009-02-03 | Whitespace and comment changes. No functionality change. | Bill Wendling | 1 | -0/+1 |