Convert comments to Doxygen style
[oota-llvm.git] / lib /
2002-08-25 Vikram S. AdveFix the way parens are printed around "*ptrName" so...
2002-08-24 Vikram S. AdveUse newly-added type inspection support in InstTreeNode...
2002-08-24 Vikram S. AdveMoved code here to extract memory instruction indices...
2002-08-24 Vikram S. AdveLoadIdx non-terminal no longer needed.
2002-08-24 Vikram S. AdveSign-extend values used to index arrays (and Simplify
2002-08-24 Vikram S. AdveFix sign-extension: it needs to happen *after* multiply...
2002-08-24 Vikram S. AdveSign-extend array index expressions to work correctly...
2002-08-23 Chris Lattner - instcombine demorgan's law: and (not A), (not B...
2002-08-23 Anand ShuklaChanged default value of 3rd parameter in function...
2002-08-23 Anand ShuklaAdded #include <alloca.h>
2002-08-23 Vikram S. AdveSimplify previous hack slightly.
2002-08-23 Vikram S. AdveForce sign-extension for uint array indexes from 32...
2002-08-22 Chris LattnerEliminated the MemAccessInst class, folding contents...
2002-08-22 Chris LattnerEliminated the MemAccessInst class, folding contents...
2002-08-22 Chris LattnerLoad & StoreInst no longer derive from MemAccessInst...
2002-08-22 Chris LattnerLoad & StoreInst no longer derive from MemAccessInst...
2002-08-22 Chris Lattner*** empty log message ***
2002-08-22 Chris LattnerLoad and Store now no longer derive from MemAccessInst...
2002-08-22 Chris Lattnerdoxygenize comments
2002-08-22 Chris LattnerAdd capability of using pointer analysis to LICM
2002-08-22 Chris LattnerRemove long obsolete comments
2002-08-22 Chris LattnerFix bug: test/Regression/Assembler/2002-08-22-Dominance...
2002-08-22 Chris LattnerInstcombine PHI's of the form %PN = phi PN, X into...
2002-08-22 Chris LattnerAdd missing #include
2002-08-22 Chris LattnerCheck-in new alias analysis infrastructure
2002-08-22 Chris LattnerConvert GCSE pass to use new alias analysis infrastructure
2002-08-22 Chris LattnerDo not generate load/store instructions with indexing.
2002-08-22 Chris LattnerChange code to not use the copyOperands method added...
2002-08-22 Vikram S. AdvedumpNode() does not need to print MachineInstrs.
2002-08-22 Vikram S. AdveFix two resource names.
2002-08-22 Vikram S. AdveAdd AsmPrinter::ConstantExprToString, which writes...
2002-08-22 Vikram S. AdveEliminate bool, boolreg and boolconst nonterminals...
2002-08-22 Vikram S. AdveChange rules for Not, since it is now implemented as...
2002-08-21 Chris Lattner - Fighting with linking problem due to removing the...
2002-08-21 Chris Lattner - Fix asmparser and bytecode reader to not generate...
2002-08-21 Chris Lattner - Split Dominators.h into Dominators.h & PostDominators.h
2002-08-21 Chris LattnerEmit an obnoxious warning message for bytecode that...
2002-08-21 Chris LattnerRemove debugging code accidentally checked in.
2002-08-21 Chris Lattner - Implement the new AnalysisGroup feature, neccesary...
2002-08-21 Chris LattnerDo not generate loads/stores with indexing
2002-08-21 Chris LattnerRemove extraneous #includes
2002-08-21 Chris LattnerDo not create load/stores with indexes
2002-08-21 Chris LattnerRemove an optimization that isn't.
2002-08-21 Chris Lattner- Do not expose ::ID from any of the analyses anymore.
2002-08-21 Chris Lattner- Do not expose ::ID from any of the analyses anymore.
2002-08-21 Chris Lattner - Do not expose ::ID from any of the analyses anymore.
2002-08-21 Chris Lattner - Eliminate the need for analyses to expose an :...
2002-08-20 Chris Lattnerfixed bug: test/Regression/Linker/2002-08-20-ConstantEx...
2002-08-20 Chris LattnerSort -time-passes report first by user+system, then...
2002-08-20 Chris Lattner - instcombine (~(a < b)) into (a >= b)
2002-08-20 Chris LattnerAdd new SetCondInst::getInverseCondition() method.
2002-08-20 Chris LattnerThis case JUST handles constantpointer nulls, not all...
2002-08-20 Chris LattnerFix bug: 2002-08-20-UnnamedArgument.c
2002-08-20 Chris Lattner - implemented instcombine of phi (X, X, X) -> X
2002-08-19 Chris LattnerImplement ConstantExprs in CWriter
2002-08-19 Chris LattnerIncorporate calcTypeNameVar into CWriter class, fixing
2002-08-19 Chris LattnerOutput forward definitions of global vars to handle...
2002-08-19 Chris Lattner - Change constant printing to be better integrated...
2002-08-19 Chris LattnerAdd missing space
2002-08-19 Chris LattnerFix bug: test/Regression/Assembler/2002-08-19-BytecodeR...
2002-08-19 Chris LattnerFix the -time-passes option to not print NaN when there...
2002-08-18 Chris Lattner - Made GlobalDCE worklist driven, making it more...
2002-08-18 Chris Lattner- ConstantPointerRefs are now automatically removed...
2002-08-18 Chris LattnerTurn off a debugging optimization that just slows bytec...
2002-08-17 Chris LattnerAdd Module::dump() method
2002-08-17 Chris LattnerPromote getelementptr instructions to constexprs if...
2002-08-17 Chris LattnerFix stupid oversight of missing #include.
2002-08-17 Chris Lattner - Finally nailed: test/Regression/Assembler/2002...
2002-08-16 Chris LattnerChanged parser to always use parenthesis on ConstExprs...
2002-08-16 Chris Lattner - Remove unused STRING token from lexer & parser
2002-08-15 Chris LattnerWrite constexpr casts using the cast X to Y notation...
2002-08-15 Chris LattnerParse const expr cast instruction the same way the...
2002-08-15 Chris LattnerMove ConstExpr production to unify ConstVal stuff
2002-08-15 Chris LattnerFix bug: test/Regression/Assembler/2002-08-15-Unresolve...
2002-08-15 Chris LattnerSimplify the code
2002-08-15 Chris LattnerHandle more cases of cast-of-cast in more general forms.
2002-08-15 Vikram S. AdveUnary Not (boolean and bitwise) is no longer a separate...
2002-08-15 Vikram S. AdveRevise code generation for unary Not (boolean and bitwi...
2002-08-15 Vikram S. AdveAdded more helper functions for binary instructions...
2002-08-14 Chris LattnerImplement capability to fold this:
2002-08-14 Chris LattnerAvoid creating 'load X, 0' instead of just 'load X'
2002-08-14 Chris LattnerAvoid inserting an entry block unless we need it
2002-08-14 Chris LattnerRemove support for Not ConstantExpr. This simplifies...
2002-08-14 Chris LattnerFix bug introduced in last checkin due to CastInst...
2002-08-14 Chris LattnerRemove support for unary operators.
2002-08-14 Chris LattnerRemove support for NOT instruction
2002-08-14 Chris LattnerRemove extra #includes
2002-08-14 Chris LattnerRemove constant propogation support for NOT instruction
2002-08-14 Chris LattnerRemove support for NOT instruction
2002-08-14 Chris LattnerRemove support for unary operators
2002-08-14 Chris LattnerImplement two constructor functions for "unary" instruc...
2002-08-14 Chris LattnerRemove support forNOT instruction
2002-08-14 Chris Lattner - Fix InstCombine pass to not generate or process...
2002-08-14 Chris LattnerRemove support for NOT instruction
2002-08-14 Chris LattnerAsmParser turns 'not' instructions into 'xor' instructi...
2002-08-14 Chris LattnerReturn null on failure, instead of aborting.
2002-08-14 Vikram S. AdveAdd method MachineInstr::substituteValue() which substi...
2002-08-13 Chris LattnerMinor change to make lli print out characters numerical...
2002-08-13 Vikram S. AdveBug fix in TargetData::getIndexedOffset: We were using...
2002-08-13 Vikram S. AdveSeveral bug fixes in casting to signed int values.
next