notes
[oota-llvm.git] / lib / CodeGen /
2006-03-02 Evan Cheng- Fixed some priority calculation bugs that were causin...
2006-03-01 Jim LaskeySupport for enumerations.
2006-03-01 Evan ChengDon't print llvm constant in assmebly file. Assembler...
2006-03-01 Chris LattnerFix CodeGen/Generic/2006-03-01-dagcombineinfloop.ll...
2006-03-01 Jim LaskeySwitch back to using actual dwarf tags. Simplifies...
2006-03-01 Chris LattnerFix a typo evan noticed
2006-03-01 Jim LaskeyUse context and not compile unit.
2006-03-01 Jim LaskeyI guess I can handle large type sizes.
2006-03-01 Jim LaskeyBasic array support.
2006-03-01 Chris LattnerAdd support for target-specific dag combines
2006-03-01 Chris LattnerAdd interfaces for targets to provide target-specific...
2006-03-01 Chris LattnerAdd a new AddToWorkList method, start using it
2006-03-01 Chris LattnerPull shifts by a constant through multiplies (a form...
2006-03-01 Evan ChengVector ops lowering.
2006-03-01 Evan Cheng- Added VConstant as an abstract version of ConstantVec.
2006-02-28 Jim LaskeyAdd const, volatile, restrict support.
2006-02-28 Chris LattnerCompile:
2006-02-28 Chris LattnerFold "and (LOAD P), 255" -> zextload. This allows...
2006-02-28 Chris Lattnerfold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2006-02-27 Chris LattnerAdd support for output memory constraints.
2006-02-27 Jim LaskeyQualify dwarf namespace inside llvm namespace.
2006-02-27 Jim LaskeyPartial enabling of functions.
2006-02-27 Jim LaskeySupporting multiple compile units.
2006-02-27 Jim LaskeyRe-orging file.
2006-02-27 Chris LattnerImplement bit propagation through sub nodes, this ...
2006-02-27 Chris Lattnerremove some completed notes
2006-02-27 Chris LattnerCheck RHS simplification before LHS simplification...
2006-02-27 Chris LattnerJust like we use the RHS of an AND to simplify the...
2006-02-26 Chris LattnerAdd a bunch of missed cases. Perhaps the most signific...
2006-02-26 Evan ChengPrint ConstantPoolSDNode offset field.
2006-02-25 Evan ChengAdded an offset field to ConstantPoolSDNode.
2006-02-25 Chris LattnerFix a bug that Evan exposed with some changes he's...
2006-02-25 Chris LattnerRemove debugging printout :)
2006-02-25 Chris LattnerRefactor some code from being inline to being out in...
2006-02-24 Chris LattnerUse the PrintAsmMemoryOperand to print addressing modes.
2006-02-24 Chris LattnerPass all the flags to the asm printer, not just the...
2006-02-24 Chris Lattnerrename NumOps -> NumVals to avoid shadowing a NumOps...
2006-02-24 Chris LattnerRefactor operand adding out to a new AddOperand method
2006-02-24 Jim LaskeyAdd pointer and reference types. Added short-term...
2006-02-24 Jeff CohenGet VC++ building again.
2006-02-24 Chris LattnerImplement (most of) selection of inline asm memory...
2006-02-24 Chris LattnerLower C_Memory operands.
2006-02-24 Chris LattnerRecognize memory operand codes
2006-02-23 Jim LaskeyAdded basic support for typedefs.
2006-02-23 Chris LattnerFix an endianness problem on big-endian targets with...
2006-02-23 Chris LattnerRecord all of the expanded registers in the DAG and...
2006-02-23 Jim LaskeyDwarfWriter reading basic type information from llvm...
2006-02-23 Chris LattnerCode cleanups, no functionality change
2006-02-22 Chris LattnerThis fixes a couple of problems with expansion
2006-02-22 Chris LattnerDon't return registers from register classes that aren...
2006-02-22 Chris LattnerChange a whole bunch of code to be built around RegsFor...
2006-02-22 Jim LaskeyCoordinate activities with llvm-gcc4 and dwarf.
2006-02-22 Chris Lattnersplit register class handling from explicit physreg...
2006-02-21 Chris LattnerAdjust to changes in getRegForInlineAsmConstraint prototype
2006-02-21 Chris LattnerUpdates to match change of getRegForInlineAsmConstraint...
2006-02-20 Chris LattnerFix a problem Nate and Duraid reported where simplifyin...
2006-02-20 Chris LattnerFix a problem on itanium with memset. The value to...
2006-02-18 Nate BegemanAdd a fold for add that exchanges it with a constant...
2006-02-18 Nate BegemanAdd checks to make sure we don't create bogus extend...
2006-02-17 Chris LattnerFix a tricky issue in the SimplifyDemandedBits code...
2006-02-17 Nate BegemanClean up DemandedBitsAreZero interface
2006-02-17 Nate BegemanDon't expand sdiv by power of two before legalize,...
2006-02-17 Nate Begemankill ADD_PARTS & SUB_PARTS and replace them with fancy...
2006-02-17 Chris LattnerFix another miscompilation exposed by lencode, where...
2006-02-17 Jeff CohenFix bug noticed by VC++.
2006-02-16 Evan ChengDumb bug. Code sees a memcpy from X+c so it increments...
2006-02-16 Nate BegemanRework the SelectionDAG-based implementations of Simpli...
2006-02-16 Evan ChengIf the false case is the current basic block, then...
2006-02-16 Chris LattnerLowering of sdiv X, pow2 was broken, this fixes it...
2006-02-15 Evan ChengRemove an unused function parameter.
2006-02-15 Evan ChengTurn a memcpy from string constant into a series of...
2006-02-15 Jim LaskeyShould not combine ISD::LOCATIONs until we have scheme...
2006-02-15 Evan ChengLower memcpy with small constant size operand into...
2006-02-14 Evan ChengDoh again!
2006-02-14 Jim LaskeyUsing wrong DW_FORM.
2006-02-14 Evan ChengKeep to < 80 cols
2006-02-14 Evan ChengMissed a break so memcpy cases fell through to memset...
2006-02-14 Evan ChengFixed a build breakage.
2006-02-14 Evan ChengRename maxStoresPerMemSet to maxStoresPerMemset, etc.
2006-02-14 Evan ChengExpand memset dst, c, size to a series of stores if...
2006-02-14 Chris Lattnernow that libcalls don't suck, we can remove this hack
2006-02-14 Chris LattnerFix a latent bug in the call sequence handling stuff...
2006-02-13 Jim LaskeyRename to better reflect usage (current and planned.)
2006-02-13 Chris LattnerCompletely rewrite libcall insertion by the legalizer...
2006-02-11 Jim LaskeyReorg for integration with gcc4. Old style debug info...
2006-02-09 Evan ChengAdded SelectionDAG::InsertISelMapEntry(). This is used...
2006-02-09 Evan ChengMore changes to reduce frame size.
2006-02-09 Chris LattnerAdjust to MachineConstantPool interface change: instead...
2006-02-09 Chris Lattnerrename fields of constant pool entries
2006-02-09 Chris LattnerSimplify code, alignment must be specified now.
2006-02-09 Chris LattnerMake MachineConstantPool entries alignments explicit
2006-02-08 Chris LattnerAdd support for assembler directives that wrap inline asm
2006-02-08 Chris LattnerCompile this:
2006-02-06 Chris LattnerAdd support for modifier characters to operand printers
2006-02-06 Jim LaskeyGoodbye nasty macro.
2006-02-06 Jim LaskeyEdit requests from Sabre.
2006-02-06 Jim LaskeyChanging model for the construction of debug information.
2006-02-05 Nate BegemanBack out previous commit, it isn't safe.
2006-02-05 Nate Begemanfold c1 << (x + c2) into (c1 << c2) << x. fix a warning.
2006-02-05 Nate BegemanHandle urem by shifted powers of 2.
next