2003-07-24 |
Chris Lattner | Modernize testcase |
commit | commitdiff | tree | snapshot |
2003-07-24 |
Chris Lattner | New testcase |
commit | commitdiff | tree | snapshot |
2003-07-24 |
Chris Lattner | Instcombine: (A >> c1) << c2 for signed integers |
commit | commitdiff | tree | snapshot |
2003-07-24 |
Chris Lattner | New testcases for signed shifts |
commit | commitdiff | tree | snapshot |
2003-07-24 |
Misha Brukman | Major addition to bugpoint: ability to debug code gener... |
commit | commitdiff | tree | snapshot |
2003-07-24 |
Chris Lattner | Reorganization of code, no functional changes. |
commit | commitdiff | tree | snapshot |
2003-07-24 |
Brian Gaeke | It doesn't appear that we need to #include these. |
commit | commitdiff | tree | snapshot |
2003-07-24 |
Chris Lattner | Allow folding several instructions into casts, which... |
commit | commitdiff | tree | snapshot |
2003-07-24 |
Chris Lattner | Minor cleanups |
commit | commitdiff | tree | snapshot |
2003-07-24 |
Brian Gaeke | Constify most methods. We could have constified doIniti... |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Disable sample project until it works |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Add new tests, make existing tests more difficult |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Fix bug: FunctionResolve/2003-07-23-CPR-Reference.ll |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New testcase |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Add comments |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Remove explicit check for: not (not X) = X, it is alrea... |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New testcases |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Renumber tests sequentially |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Split the or and xor tests into two separate files |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Remove obscure test |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Check in old testcase sitting in my tree |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Fix program: SingleSource/UnitTests/2003-07-09-SignedAr... |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Brian Gaeke | Printer.cpp: Ditch addRequired/getAnalysis, because... |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Make Module::getNamedFunction prefer non-external funct... |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Fix space |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | InstCombine: (X ^ C1) & C2 --> (X & C2) iff (C1&C2... |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New testcase |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | - InstCombine: (X | C1) & C2 --> X & C2 iff C1 &... |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New testcase |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New testcase |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Brian Gaeke | Add, rewrite, and/or reformat many comments. |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | IC: (X & C1) | C2 --> (X | C2) & (C1|C2) |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New testcases |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | IC: (X ^ C1) & C2 --> (X & C2) ^ (C1&C2) |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New testcase |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | InstCombine: (X ^ 4) == 8 --> X == 12 |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New testcase |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Add support for ~ operator on constants |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | IC: (X & 5) == 13 --> false |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New tests |
commit | commitdiff | tree | snapshot |
2003-07-23 |
John Criswell | Renamed libtool to mklib for your tab completion pleasure. |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Remove redundant const qualifier |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Remove redundant const qualifiers from cast<> expressions |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Simplify code by using ConstantInt::getRawValue instead... |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Remove unnecessary casts |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Fit code into 80 columns |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Eliminate old-style cast |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Random cleanups |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Remove using decl |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Remove explicit const qualifiers |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Add more doxygen comments, add new ConstantInt::getRawV... |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | Fix bug: TailDup/2003-07-22-InfiniteLoop.ll |
commit | commitdiff | tree | snapshot |
2003-07-23 |
Chris Lattner | New testcase that caused infinite loop in taildup |
commit | commitdiff | tree | snapshot |
2003-07-22 |
Chris Lattner | - InstCombine (cast (xor A, B) to bool) ==> (setne... |
commit | commitdiff | tree | snapshot |
2003-07-22 |
Chris Lattner | New testcases |
commit | commitdiff | tree | snapshot |
2003-07-22 |
John Criswell | Repaired the --enable and --disable options. |
commit | commitdiff | tree | snapshot |
2003-07-22 |
John Criswell | Fixed the enable/disable options. The AC_ARG_ENABLE... |
commit | commitdiff | tree | snapshot |
2003-07-22 |
Brian Gaeke | Add documentation for runOnMachineFunction() |
commit | commitdiff | tree | snapshot |
2003-07-22 |
John Criswell | Made some corrections to the enable-llc_diffs option. |
commit | commitdiff | tree | snapshot |
2003-07-22 |
John Criswell | Generated a new configure script. |
commit | commitdiff | tree | snapshot |
2003-07-22 |
John Criswell | Updated to use files within the autoconf subdirectory. |
commit | commitdiff | tree | snapshot |
2003-07-22 |
John Criswell | These are the autoconf files in their new home. |
commit | commitdiff | tree | snapshot |
2003-07-22 |
John Criswell | Moving these files to the llvm/autoconf directory. |
commit | commitdiff | tree | snapshot |
2003-07-22 |
John Criswell | Moved configure.ac to the autoconf directory. |
commit | commitdiff | tree | snapshot |
2003-07-22 |
Brian Gaeke | turn off DISABLE_LLC_DIFFS for x86. |
commit | commitdiff | tree | snapshot |
2003-07-22 |
Chris Lattner | Add new testcase |
commit | commitdiff | tree | snapshot |
2003-07-22 |
Vikram S. Adve | (1) Pass 'VAR=string' arguments to gmake |
commit | commitdiff | tree | snapshot |
2003-07-22 |
Vikram S. Adve | Fix comment. |
commit | commitdiff | tree | snapshot |
2003-07-21 |
John Criswell | Updated from the discussion on July 21, 2003. |
commit | commitdiff | tree | snapshot |
2003-07-21 |
Misha Brukman | Fixed misspelling. |
commit | commitdiff | tree | snapshot |
2003-07-21 |
Chris Lattner | Simplify code a bit |
commit | commitdiff | tree | snapshot |
2003-07-21 |
John Criswell | Added code that checks to see if a global variable... |
commit | commitdiff | tree | snapshot |
2003-07-21 |
John Criswell | Regression test for the Instruction Combining optimiziz... |
commit | commitdiff | tree | snapshot |
2003-07-21 |
Chris Lattner | Remove unneccesary #ifdefs |
commit | commitdiff | tree | snapshot |
2003-07-21 |
Chris Lattner | Fix warnings |
commit | commitdiff | tree | snapshot |
2003-07-21 |
Chris Lattner | Remove instloops library |
commit | commitdiff | tree | snapshot |
2003-07-21 |
Misha Brukman | Eliminated dead code. |
commit | commitdiff | tree | snapshot |
2003-07-20 |
Anand Shukla | Added special consideration for instrumentation strategy |
commit | commitdiff | tree | snapshot |
2003-07-18 |
Misha Brukman | Initialize the target architecture based on compiler... |
commit | commitdiff | tree | snapshot |
2003-07-18 |
Anand Shukla | Added check for inlinable function |
commit | commitdiff | tree | snapshot |
2003-07-18 |
Brian Gaeke | Please, save your applause^H^H^H^H^H^H^H^Hflames for... |
commit | commitdiff | tree | snapshot |
2003-07-18 |
Misha Brukman | Cleaned up the code which chooses the appropriate value... |
commit | commitdiff | tree | snapshot |
2003-07-18 |
Misha Brukman | Added a DEBUG() guard to a debug information printout. |
commit | commitdiff | tree | snapshot |
2003-07-18 |
Anand Shukla | Added pass to instrument backedges for lightweight... |
commit | commitdiff | tree | snapshot |
2003-07-18 |
Anand Shukla | A pass to combine multiple backedges that go to same... |
commit | commitdiff | tree | snapshot |
2003-07-17 |
Brian Gaeke | Use getClassB for load and store; we don't want to... |
commit | commitdiff | tree | snapshot |
2003-07-17 |
Brian Gaeke | Fix typo in call to isUnresolvableFunc, which was break... |
commit | commitdiff | tree | snapshot |
2003-07-17 |
John Criswell | Dinakar and I fixed a bug where we were trying to get... |
commit | commitdiff | tree | snapshot |
2003-07-17 |
Brian Gaeke | Added bits about MachineFunctionPass |
commit | commitdiff | tree | snapshot |
2003-07-16 |
Vikram S. Adve | Tests for globals with different kinds of behavior... |
commit | commitdiff | tree | snapshot |
2003-07-16 |
Vikram S. Adve | (1) Added DSGraph::cloneReachableSubgraph and DSGraph... |
commit | commitdiff | tree | snapshot |
2003-07-16 |
Vikram S. Adve | Rematerialize nodes from the globals graph into the... |
commit | commitdiff | tree | snapshot |
2003-07-16 |
Vikram S. Adve | (1) Rematerialize nodes from the globals graph into... |
commit | commitdiff | tree | snapshot |
2003-07-16 |
Vikram S. Adve | Implement 2 important changes: (1) rematerialization... |
commit | commitdiff | tree | snapshot |
2003-07-16 |
Vikram S. Adve | Factor out the test for unresolvable external functions... |
commit | commitdiff | tree | snapshot |
2003-07-16 |
Misha Brukman | Fixed the number translation scheme for the integer... |
commit | commitdiff | tree | snapshot |
2003-07-16 |
Misha Brukman | The name should really be `simm11' to follow the naming... |
commit | commitdiff | tree | snapshot |
2003-07-16 |
John Criswell | Marked some of the phony targets are PHONY. This will... |
commit | commitdiff | tree | snapshot |
2003-07-15 |
Misha Brukman | No need for a second immediate field if the class alrea... |
commit | commitdiff | tree | snapshot |
2003-07-15 |
Misha Brukman | Encode predict = 1 by default, because the Sparc assemb... |
commit | commitdiff | tree | snapshot |
next |