| Commit message (Expand) | Author | Age | Files | Lines |
| * | When a constant's type is refined, update the constant in place | Dan Gohman | 2009-09-15 | 1 | -50/+2 |
| * | Teach lib/VMCore/ConstantFold.cpp how to set the inbounds keyword and | Dan Gohman | 2009-09-11 | 1 | -2/+4 |
| * | Factor out the code for checking that all indices in a getelementptr are | Dan Gohman | 2009-09-10 | 1 | -0/+26 |
| * | Reappy r80998, now that the GlobalOpt bug that it exposed on MiniSAT is fixed. | Dan Gohman | 2009-09-07 | 1 | -29/+60 |
| * | Revert "Include optional subclass flags, such as inbounds, nsw, etc., ...", this | Daniel Dunbar | 2009-09-06 | 1 | -60/+29 |
| * | Include optional subclass flags, such as inbounds, nsw, etc., in the | Dan Gohman | 2009-09-04 | 1 | -29/+60 |
| * | Revert 80959. It isn't sufficient to solve the full problem. And it | Dan Gohman | 2009-09-03 | 1 | -0/+35 |
| * | Remove the API for creating ConstantExprs with the nsw, nuw, inbounds, | Dan Gohman | 2009-09-03 | 1 | -35/+0 |
| * | Now Bitcode reader bug is fixed. Reapply 80839. | Devang Patel | 2009-09-03 | 1 | -2/+2 |
| * | Revert 80839 for now. It causes test failures. | Devang Patel | 2009-09-02 | 1 | -2/+2 |
| * | Use CallbackVH, instead of WeakVH, to hold MDNode elements. | Devang Patel | 2009-09-02 | 1 | -2/+2 |
| * | switch a couple things off std::ostream | Chris Lattner | 2009-08-23 | 1 | -5/+7 |
| * | Rename hasNoUnsignedOverflow and hasNoSignedOverflow to hasNoUnsignedWrap | Dan Gohman | 2009-08-20 | 1 | -1/+1 |
| * | Add helper functions to ConstantInt and ConstantFP to accept strings. | Erick Tryzelaar | 2009-08-16 | 1 | -0/+21 |
| * | Add a getOffsetOf, for building a target-independent expression for | Dan Gohman | 2009-08-16 | 1 | -0/+12 |
| * | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2009-08-13 | 1 | -32/+39 |
| * | Add convenience functions for creating nsw add operators. | Dan Gohman | 2009-08-11 | 1 | -0/+9 |
| * | Don't set the isexact flag if an sdiv operator has been folded into | Dan Gohman | 2009-08-11 | 1 | -1/+4 |
| * | Simplify ConstantExpr::getInBoundsGetElementPtr and fix a possible crash, if | Daniel Dunbar | 2009-08-11 | 1 | -8/+5 |
| * | Add convenience functions for creating inbounds GEPs. | Dan Gohman | 2009-08-11 | 1 | -0/+20 |
| * | Add convenience functions for creating exact sdiv operators, and | Dan Gohman | 2009-08-11 | 1 | -0/+6 |
| * | Change the MDNode uniquing to a ValueMap, at Devang's request. | Owen Anderson | 2009-08-10 | 1 | -2/+2 |
| * | Privatize the StructType table, which unfortunately involves routing contexts... | Owen Anderson | 2009-08-05 | 1 | -5/+8 |
| * | Privatize the last bit of Constant-creation state. | Owen Anderson | 2009-08-04 | 1 | -425/+29 |
| * | Add a new Constant::getIntegerValue helper function, and convert a | Dan Gohman | 2009-08-03 | 1 | -0/+17 |
| * | Privatize all but one of the remaining constant tables. | Owen Anderson | 2009-07-31 | 1 | -55/+4 |
| * | Move a few more APIs back to 2.5 forms. The only remaining ones left to chan... | Owen Anderson | 2009-07-31 | 1 | -10/+48 |
| * | Move getTrue() and getFalse() to 2.5-like APIs. | Owen Anderson | 2009-07-31 | 1 | -13/+31 |
| * | Move more code back to 2.5 APIs. | Owen Anderson | 2009-07-30 | 1 | -8/+19 |
| * | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -1/+1 |
| * | Move ConstantExpr to 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -0/+121 |
| * | Rename MDNode.h header. It defines MDnode and other metadata classes. | Devang Patel | 2009-07-28 | 1 | -30/+0 |
| * | Return ConstantVector to 2.5 API. | Owen Anderson | 2009-07-28 | 1 | -7/+54 |
| * | Change ConstantArray to 2.5 API. | Owen Anderson | 2009-07-28 | 1 | -5/+132 |
| * | Move ConstantStruct back to 2.5 API. | Owen Anderson | 2009-07-27 | 1 | -4/+94 |
| * | Unbreak build. | Daniel Dunbar | 2009-07-27 | 1 | -2/+0 |
| * | Move ConstantFP construction back to the 2.5-ish API. | Owen Anderson | 2009-07-27 | 1 | -0/+81 |
| * | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 1 | -269/+67 |
| * | make Constant::getRelocationInfo return an enum, as suggested by Duncan. | Chris Lattner | 2009-07-24 | 1 | -11/+12 |
| * | Privatize the ConstantVector tables. | Owen Anderson | 2009-07-24 | 1 | -57/+3 |
| * | Privatize the ConstantStruct table. | Owen Anderson | 2009-07-23 | 1 | -92/+4 |
| * | Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADA... | Devang Patel | 2009-07-23 | 1 | -9/+2 |
| * | Introduce MetadataBase, a base class for MDString and MDNode. | Devang Patel | 2009-07-22 | 1 | -12/+0 |
| * | reimplement Constant::ContainsRelocations as | Chris Lattner | 2009-07-22 | 1 | -23/+24 |
| * | Privatize the ConstantArray table. | Owen Anderson | 2009-07-21 | 1 | -121/+5 |
| * | Privatize the first of the value maps. | Owen Anderson | 2009-07-21 | 1 | -44/+7 |
| * | Move a bit more state over to the LLVMContext. | Owen Anderson | 2009-07-21 | 1 | -22/+0 |
| * | Revert the addition of hasNoPointerOverflow to GEPOperator. | Dan Gohman | 2009-07-20 | 1 | -5/+2 |
| * | Make GetElementPtr ConstantExprs default to having no pointer overflow. | Dan Gohman | 2009-07-18 | 1 | -1/+5 |
| * | Fix compile warning. | Daniel Dunbar | 2009-07-17 | 1 | -0/+2 |