| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Linker.h moved to include/llvm/Support | Misha Brukman | 2004-06-23 | 2 | -2/+2 |
* | Moved to lib/VMCore | Misha Brukman | 2004-06-23 | 1 | -927/+0 |
* | Fix merging of nodes whose incoming offset is not zero. This unbreaks DSA on | Chris Lattner | 2004-06-23 | 1 | -2/+1 |
* | Use new IsNAN() wrapper. | Brian Gaeke | 2004-06-23 | 1 | -15/+2 |
* | Wrapper for c99 isnan() | Brian Gaeke | 2004-06-22 | 1 | -0/+31 |
* | Add pseudo-registers and register class for 64-bit integer values. | Brian Gaeke | 2004-06-22 | 4 | -4/+62 |
* | File requires IPA, moved to lib/Analysis/IPA | Misha Brukman | 2004-06-22 | 1 | -107/+0 |
* | File depends on MemoryDepAnalysis (DSA); moved to lib/Analysis/DataStructure | Misha Brukman | 2004-06-22 | 1 | -258/+0 |
* | Files depend on DSA, moved to lib/Analysis/DataStructure | Misha Brukman | 2004-06-22 | 2 | -947/+0 |
* | File depends on DSA, moved to lib/Analysis/DataStructure | Misha Brukman | 2004-06-22 | 1 | -495/+0 |
* | Making an archive version of the CodeGen library is unnecessary if we just | Misha Brukman | 2004-06-22 | 1 | -1/+0 |
* | Provide archive version of CodeGen library (for those tools that only need | Misha Brukman | 2004-06-22 | 1 | -0/+1 |
* | If an edge points to a field of another memory object, actually reflect this | Chris Lattner | 2004-06-22 | 1 | -0/+18 |
* | Order #includes as per style guide. | Misha Brukman | 2004-06-21 | 2 | -2/+2 |
* | Use a reference instead of a pointer for the ostream. The pointer was only | Misha Brukman | 2004-06-21 | 1 | -103/+102 |
* | Direct declaration of namespace-ified globals does not work, must enclose | Misha Brukman | 2004-06-21 | 1 | -3/+4 |
* | Specify variables' namespace directly instead of using an enclosing namespace. | Misha Brukman | 2004-06-21 | 1 | -4/+2 |
* | Move implemented interface header up to the top. | Misha Brukman | 2004-06-21 | 1 | -1/+1 |
* | Spell out `NoFramePointerElim'. | Misha Brukman | 2004-06-21 | 1 | -1/+1 |
* | Spell out `NoFramePointerElim' for readability. | Misha Brukman | 2004-06-21 | 2 | -3/+4 |
* | Use the common `NoFPElim' setting instead of our own. | Misha Brukman | 2004-06-21 | 2 | -10/+4 |
* | Implement `NoFPElim' in a target-agnostic fashion so it can be shared. | Misha Brukman | 2004-06-21 | 1 | -1/+8 |
* | * Make indentation consistent at 2 chars | Misha Brukman | 2004-06-21 | 2 | -402/+624 |
* | This file is no longer applicable. | Misha Brukman | 2004-06-21 | 1 | -26/+0 |
* | llvm/IntrinsicLowering.h => llvm/CodeGen/IntrinsicLowering.h | Misha Brukman | 2004-06-21 | 3 | -4/+4 |
* | Intrinsic::isnan has gone away, support for it commented out. | Misha Brukman | 2004-06-21 | 2 | -6/+14 |
* | Convert tabs to spaces. | Misha Brukman | 2004-06-21 | 2 | -750/+750 |
* | Type::getPrimitiveID() -> getTypeID() | Misha Brukman | 2004-06-21 | 2 | -8/+8 |
* | Type::getPrimitiveID() -> getTypeID() | Misha Brukman | 2004-06-21 | 4 | -7/+7 |
* | Initial revision | Misha Brukman | 2004-06-21 | 21 | -0/+10384 |
* | Rename Interval class to LiveInterval to avoid conflicting with the already | Chris Lattner | 2004-06-21 | 3 | -50/+54 |
* | Make ConstantBool act like a 1 bit ConstantInt, in order to simplify client | Chris Lattner | 2004-06-21 | 1 | -4/+7 |
* | *FINALLY* Fix a really nasty nondeterministic bug that has been haunting us | Chris Lattner | 2004-06-21 | 1 | -6/+7 |
* | Comment out the isnan stuff until we get a proper autoconf test for it | Chris Lattner | 2004-06-21 | 1 | -1/+7 |
* | Make order of argument addition deterministic. In particular, the layout | Chris Lattner | 2004-06-21 | 1 | -10/+35 |
* | REALLY fix PR378: crash in scalar evolution analysis | Chris Lattner | 2004-06-20 | 1 | -0/+1 |
* | Fix a bug in my change last night that caused a few test failures. | Chris Lattner | 2004-06-20 | 1 | -1/+1 |
* | IntrinsicLowering.cpp now lives in lib/CodeGen/ | Chris Lattner | 2004-06-20 | 1 | -214/+0 |
* | Move the IntrinsicLowering header into the CodeGen directory, as per PR346 | Chris Lattner | 2004-06-20 | 18 | -21/+23 |
* | Move the IntrinsicLowering header into the CodeGen directory | Chris Lattner | 2004-06-20 | 1 | -1/+1 |
* | Do not sort SCEV objects by address: instead sort by complexity and group | Chris Lattner | 2004-06-20 | 1 | -18/+60 |
* | Make use of BinaryOperator::create* methods to shrinkify code. | Chris Lattner | 2004-06-20 | 1 | -21/+14 |
* | Fix the inliner to be deterministic, not letting its output depend on the | Chris Lattner | 2004-06-20 | 1 | -4/+3 |
* | Add some DEBUG output to the simplifycfg routines | Chris Lattner | 2004-06-20 | 1 | -14/+13 |
* | Now that dominator tree children are built in determinstic order, this horrib... | Chris Lattner | 2004-06-19 | 1 | -16/+2 |
* | compute dominator tree children in a deterministic order that does not depend | Chris Lattner | 2004-06-19 | 1 | -11/+12 |
* | Print out immediate dominators in program order, not in random order based on... | Chris Lattner | 2004-06-19 | 1 | -7/+5 |
* | This will hopefully fix a heisenbug that Vladimir Merzliakov is running | Chris Lattner | 2004-06-19 | 1 | -0/+1 |
* | Fix a nasty bug, noticed by Reid | Chris Lattner | 2004-06-19 | 1 | -1/+1 |
* | Fix one source of nondeterminism in the -licm pass: the hoist pass | Chris Lattner | 2004-06-19 | 1 | -2/+16 |