new testcase for PR541
[oota-llvm.git] / lib /
2005-05-05 Chris Lattneradd support for undef values of opaque type, addressing...
2005-05-05 Chris LattnerAdd some extra checks. Opaque types don't have a null...
2005-05-05 Chris LattnerWhen hitting an unsupported intrinsic, actually print it
2005-05-05 Andrew Lenharthctpop lowering in legalize
2005-05-05 Chris LattnerFix a bug compimling Ruby, fixing this testcase:
2005-05-04 Andrew Lenharthfix typo
2005-05-04 Andrew LenharthWell, add support for ct* for 21264 only.
2005-05-04 Andrew LenharthMake promoteOp work for CT*
2005-05-04 Chris LattnerInstcombine: cast (X != 0) to int, cast (X == 1) to...
2005-05-04 Reid SpencerImplement the IsDigitOptimization for simplifying calls...
2005-05-04 Reid Spencer* Correct the function prototypes for some of the funct...
2005-05-03 Andrew LenharthImplement count leading zeros (ctlz), count trailing...
2005-05-03 Chris Lattnerfix a bug in the 1 index GEP handling code
2005-05-03 Reid SpencerImplement optimizations for the strchr and llvm.memset...
2005-05-03 Chris Lattneradd direct support for making GEP instrs with one index
2005-05-03 Jeff CohenUse ANSI-approved way of getting the value infinity...
2005-05-03 Reid SpencerAvoid garbage output in the statistics display by ensur...
2005-05-03 Reid SpencerAdd the StrNCmpOptimization which is similar to strcmp.
2005-05-02 Reid SpencerImplement the fprintf optimization which converts calls...
2005-05-02 Andrew Lenharthfold fp div by 0 to inf, the way gcc does. This is...
2005-05-02 Andrew LenharthRemove support for 1.0 style varargs
2005-05-02 John CriswellFixed a comment.
2005-05-02 Duraid Madinasupport multiplication by constant negative integers
2005-05-02 Duraid Madinaadd support for bools to SELECT, this fixes Prolangs...
2005-05-01 Chris LattnerImplement getelementptr.ll:test11
2005-05-01 Chris LattnerCheck for volatile loads only once.
2005-05-01 Tanya LattnerSMS for superblocks.
2005-05-01 Tanya LattnerAdded extra constructor for superblocks.
2005-04-30 Tanya LattnerFixed bug in searchPath function for finding nodes...
2005-04-30 Andrew LenharthI was sure I had thought about this and there was a...
2005-04-30 Alkis EvlogimenosDo not use deprecated APIs
2005-04-30 Reid SpencerFix a comment that stated the wrong thing.
2005-04-30 Chris LattnerEliminate some random whitespace
2005-04-30 Chris LattnerCodegen and legalize sin/cos/llvm.sqrt as FSIN/FCOS...
2005-04-30 Chris LattnerDoesn't support these nodes
2005-04-30 Chris LattnerThis target doesn't support the FSIN/FCOS/FSQRT nodes yet
2005-04-30 Chris LattnerAdd support for FSIN/FCOS when unsafe math ops are...
2005-04-30 Chris LattnerAdd support for llvm.sqrt and sin/cos if unsafe math...
2005-04-30 Chris LattnerExpose an option allowing unsafe math optimizations...
2005-04-30 Chris LattnerLower llvm.sqrt -> fsqrt/sqrt
2005-04-30 Chris LattnerAdd llvm.sqrt intrinsic, patch contributed by Morten...
2005-04-30 Reid Spencer* Don't depend on "guessing" what a FILE* is, just...
2005-04-29 Reid SpencerImplement the optimizations for "pow" and "fputs" libra...
2005-04-29 Reid SpencerRemove optimizations that don't require both operands...
2005-04-29 Jeff CohenConsistently use 'class' to silence VC++
2005-04-28 Reid Spencer* Add constant folding for additional floating point...
2005-04-28 Chris LattnerAdd support for FSQRT node, patch contributed by Morten...
2005-04-28 Chris LattnerThese functions can set errno!
2005-04-28 Chris LattnerAdd some new X86 instrs, patch contributed by Morten...
2005-04-28 Chris LattnerCodegen fabs/fabsf as FABS. Patch contributed by Morte...
2005-04-28 Chris LattnerLegalize FSQRT, FSIN, FCOS nodes, patch contributed...
2005-04-28 Chris LattnerAdd FSQRT, FSIN, FCOS nodes, patch contributed by Morte...
2005-04-28 Reid SpencerRemove from the TODO list those optimizations that...
2005-04-28 Reid SpencerDocument additional libcall transformations that need...
2005-04-27 Reid SpencerDoxygenate.
2005-04-27 Chris Lattnerremove 'statement with no effect' warning
2005-04-27 Andrew LenharthImplement Value* tracking for loads and stores in the...
2005-04-27 Chris LattnerUnbreak the sparc backend.
2005-04-27 Reid SpencerMore Cleanup:
2005-04-27 Duraid Madinaclean up some warnings
2005-04-27 Reid SpencerThis is a cleanup commit:
2005-04-27 Chris Lattnerdetect functions that never return, and turn the instr...
2005-04-27 Reid SpencerPrefix the debug statistics so they group together.
2005-04-27 Reid SpencerIn debug builds, make a statistic for each kind of...
2005-04-26 Chris LattnerThis analysis doesn't take 'throwing' into consideratio...
2005-04-26 Reid SpencerFix up the debug statement to actually use a newline...
2005-04-26 Reid SpencerUh, this isn't argpromotion.
2005-04-26 Reid SpencerAdd some debugging output so we can tell which calls...
2005-04-26 Reid SpencerNo, seriously folks, memcpy really does return void.
2005-04-26 Reid Spencermemcpy returns void!!!!!
2005-04-26 Chris Lattnerdon't let Reid build void*'s :)
2005-04-26 Reid SpencerFix some bugs found by running on llvm-test:
2005-04-26 Reid SpencerChanges From Review Feedback:
2005-04-26 Chris LattnerMake interval partition print correctly, patch contribu...
2005-04-26 Chris LattnerFix the compile failures from last night.
2005-04-26 Duraid Madinaconstmul bugfix: multiply by 27611 was broken
2005-04-26 Duraid Madinaclean up the code! (oops) lots more cleaning left,...
2005-04-26 Reid Spencer* Merge get_GVInitializer and getCharArrayLength into...
2005-04-26 Duraid Madina* Add code to reduce multiplies by constant integers...
2005-04-26 Reid Spencer* Implement StrLenOptimization
2005-04-26 Reid SpencerIncorporate feedback from Chris:
2005-04-26 Chris LattnerFold (X > -1) | (Y > -1) --> (X&Y > -1)
2005-04-25 Reid SpencerChanges due to code review and new implementation:
2005-04-25 Chris Lattnerimplement some more logical compares with constants...
2005-04-25 Reid SpencerLots of changes based on review and new functionality:
2005-04-25 Chris LattnerCodegen x < 0 | y < 0 as (x|y) < 0. This allows us...
2005-04-25 Chris LattnerMake dominates(A,B) work with post dominators. Patch...
2005-04-25 Chris Lattnerimplement getelementptr.ll:test10
2005-04-25 Chris LattnerCorrectly handle global-argument aliases induced in...
2005-04-25 Chris LattnerDon't mess up SCC traversal when a node has null edges...
2005-04-25 Reid SpencerPost-Review Cleanup:
2005-04-25 Reid SpencerShut GCC 4.0 up about classes that have virtual functio...
2005-04-25 Reid SpencerA new pass to provide specific optimizations for certai...
2005-04-25 Reid SpencerOlder compilers won't like the inline virtual destructo...
2005-04-24 Reid SpencerShut GCC 4.0 up about classes with virtual functions...
2005-04-24 Chris LattnerEliminate cases where we could << by 64, which is undef...
2005-04-24 Chris LattnerImplement xor.ll:test21: select (not C), A, B -> selec...
2005-04-24 Chris LattnerAllow these methods to take a generic Value* to simplif...
2005-04-24 Chris LattnerUse getPrimitiveSizeInBits() instead of getPrimitiveSiz...
2005-04-23 Chris LattnerFix a bug in my previous checkin
next