| Commit message (Expand) | Author | Age | Files | Lines |
* | Move EVER MORE stuff over to LLVMContext. | Owen Anderson | 2009-07-14 | 3 | -21/+24 |
* | Port this unittest to use LLVMContext. | Dan Gohman | 2009-07-14 | 1 | -30/+33 |
* | Fix an error in ConstantRange::getSignedMax on wrapped ranges. Thanks once | Nick Lewycky | 2009-07-13 | 1 | -0/+4 |
* | 'i8 full-range' sign extended to i16 should equal [-128, 128) not [-128, 127). | Nick Lewycky | 2009-07-13 | 1 | -1/+1 |
* | Begin the painful process of tearing apart the rat'ss nest that is Constants.... | Owen Anderson | 2009-07-13 | 2 | -7/+12 |
* | Multiply was very wrong for wrapped ranges. This supplies a half-fix that will | Nick Lewycky | 2009-07-13 | 1 | -0/+5 |
* | Fix a bug summing two full sets. The overflow checking doesn't handle sets as | Nick Lewycky | 2009-07-13 | 1 | -0/+1 |
* | Clarify a FIXME. | Daniel Dunbar | 2009-07-12 | 1 | -4/+5 |
* | Implement udiv for ConstantRanges. | Nick Lewycky | 2009-07-12 | 1 | -13/+9 |
* | This is not overly conservative. | Nick Lewycky | 2009-07-12 | 1 | -1/+0 |
* | Implement ConstantRange::multiply based on the code in LoopVR. | Nick Lewycky | 2009-07-12 | 1 | -10/+6 |
* | Fix handling of max and full set. | Nick Lewycky | 2009-07-11 | 1 | -7/+8 |
* | Break the world's largest unit test down a few logical lines. No semantic | Nick Lewycky | 2009-07-11 | 1 | -23/+65 |
* | Don't use a void return type with a function that returns a value. | Dan Gohman | 2009-07-11 | 1 | -1/+2 |
* | Fix unit tests. | Owen Anderson | 2009-07-10 | 2 | -91/+92 |
* | Revert the part of 75177 that split ConstantRange into two classes, and | Dan Gohman | 2009-07-09 | 1 | -298/+21 |
* | Add a ConstantSignedRange class, which does for signed integers | Dan Gohman | 2009-07-09 | 1 | -0/+582 |
* | Add an option to allocate JITed global data separately from code. By | Jeffrey Yasskin | 2009-07-08 | 1 | -0/+126 |
* | Drop "constant" from | Devang Patel | 2009-07-08 | 1 | -4/+4 |
* | Update SLotTracker to handle MDNode slots. | Devang Patel | 2009-07-08 | 1 | -4/+4 |
* | Hold the LLVMContext by reference rather than by pointer. | Owen Anderson | 2009-07-01 | 2 | -4/+4 |
* | Fix unit tests for LLVMContext+Module. | Owen Anderson | 2009-07-01 | 2 | -4/+6 |
* | Reapply 74494, this time removing the conflicting definition of operator<< | Dan Gohman | 2009-06-30 | 1 | -13/+0 |
* | Revert my intentional breakage. | Daniel Dunbar | 2009-06-30 | 1 | -2/+0 |
* | Intentionally break a unittest to test my buildbot gtest command. | Daniel Dunbar | 2009-06-30 | 1 | -0/+2 |
* | Fix order of arguments to EXPECT_EQ | Daniel Dunbar | 2009-06-29 | 1 | -11/+8 |
* | Call doInitialization(), releaseMemory(), and doFinalization() for on-the-fly... | Edwin Török | 2009-06-29 | 2 | -1/+527 |
* | Add a JITEventListener interface that gets called back when a new function is | Jeffrey Yasskin | 2009-06-25 | 4 | -1/+276 |
* | Sketch streamer support for .align, .org functionality. | Daniel Dunbar | 2009-06-24 | 1 | -0/+28 |
* | We decided to not worry about Atoms for now, it should be straightforward to | Daniel Dunbar | 2009-06-24 | 1 | -4/+2 |
* | MCStreamer: Test printing values. | Daniel Dunbar | 2009-06-24 | 1 | -0/+25 |
* | Start MCAsmStreamer implementation. | Daniel Dunbar | 2009-06-24 | 3 | -1/+68 |
* | Reversed order of args in EXPECT_EQ() macros to be in the correct order: | Misha Brukman | 2009-06-09 | 1 | -70/+70 |
* | Give embedded metadata its own type instead of relying on EmptyStructTy. | Nick Lewycky | 2009-05-30 | 1 | -5/+7 |
* | Fix a compile warning. | Daniel Dunbar | 2009-05-18 | 1 | -1/+1 |
* | Make MDNode use CallbackVH. Also change MDNode to store Value* instead of | Nick Lewycky | 2009-05-10 | 1 | -9/+49 |
* | Apply Jeffrey Yasskin's CallbackVH patch, with minor tweaks from me | Dan Gohman | 2009-05-02 | 1 | -0/+136 |
* | Prevent looping when DenseSet is abused. | Stuart Hastings | 2009-05-01 | 1 | -0/+30 |
* | Add tests for WeakVH and AssertingVH. These pointed out that the overloads for | Jeffrey Yasskin | 2009-04-27 | 1 | -0/+181 |
* | Add a new TypeBuilder helper class, which eases making LLVM IR types. | Chris Lattner | 2009-04-25 | 1 | -0/+233 |
* | Fix PR4040: APInt's string constructor is too strict | Chris Lattner | 2009-04-25 | 1 | -0/+9 |
* | "I got annoyed at the compiler warnings from ConstantInt::get(Ty, -1, | Chris Lattner | 2009-04-24 | 1 | -0/+14 |
* | Use the testcase from PR2791. | Owen Anderson | 2009-04-23 | 1 | -3/+3 |
* | Fix pointer casting problem. | Nick Lewycky | 2009-04-09 | 1 | -1/+2 |
* | Fixed compiler warning. | Misha Brukman | 2009-04-09 | 1 | -1/+1 |
* | * Fixed calls to APInt ctor to work for negative values on Darwin/x86 | Misha Brukman | 2009-04-08 | 1 | -6/+6 |
* | Add support for embedded metadata to LLVM. This introduces two new types of | Nick Lewycky | 2009-04-04 | 1 | -0/+96 |
* | Make the constants fit. | Bill Wendling | 2009-04-01 | 1 | -5/+5 |
* | Add llvm::Triple class for abstracting access to target triples. | Daniel Dunbar | 2009-04-01 | 1 | -0/+137 |
* | Added tests for math utility functions; fixed another test's header comment. | Misha Brukman | 2009-04-01 | 2 | -1/+105 |