Since we are using GCC to assemble the program, make sure the assembly syntax is...
[oota-llvm.git] / lib /
2008-06-27 Bill WendlingReduce number of times .size() is called on a vector...
2008-06-27 Owen AndersonUse a SmallSet when we can to reduce memory allocations.
2008-06-27 Owen AndersonCache subregister relationships in a set in TargetRegis...
2008-06-27 Chris Lattnerfix the regressions from Eric's patch by making GetCons...
2008-06-27 Chris Lattnersimplify this check, GetConstantStringInfo validates...
2008-06-27 Chris Lattnerwhen linking globals, make sure to preserve the address...
2008-06-27 Bill WendlingCruft left from patch revert...sorry. :-(
2008-06-27 Bill WendlingReverting broken patch r52803.
2008-06-27 Owen AndersonDon't perform expensive queries checking for super...
2008-06-27 Bill Wendling- Remove a use of std::vector.
2008-06-27 Bill WendlingRefactor the DebugInfoDesc stuff out of the MachineModu...
2008-06-26 Chris Lattnerduncan points out that isOperationLegal includes a...
2008-06-26 Owen AndersonDon't create a whole new string just to copy the elemen...
2008-06-26 Matthijs KooijmanMake LLVM compile on DragonFly BSD (PR2499).
2008-06-26 Bill WendlingCleanup for unitialized types. Patch by Jean-Daniel...
2008-06-26 Chris Lattner"An improved Mach-O file type detection for sys::Identi...
2008-06-26 Owen AndersonReserve the size we'll need in advance.
2008-06-26 Dale JohannesenFixes the last x86-64 test failure in compat.exp:
2008-06-26 Eric ChristopherRemove unused function.
2008-06-26 Eric ChristopherMove GetConstantStringInfo to lib/Analysis. Remove
2008-06-26 Chris Lattnerwhen we know the signbit of an input to uint_to_fp...
2008-06-25 Owen AndersonRemember which MachineOperand we were processing, so...
2008-06-25 Dan GohmanFix the text in an assert string.
2008-06-25 Evan Cheng- Fix a x86 vector isel bug: illegal transformation...
2008-06-25 Duncan SandsAdd support for expanding PPC 128 bit floats.
2008-06-25 Chris LattnerImplement JIT support for global aliases, patch by...
2008-06-25 Evan ChengRestore DeadArgElim back to 52570. It's breaking 447...
2008-06-25 Chris LattnerSwitch the PPC backend and target-independent JIT to...
2008-06-25 Chris Lattnerfix compilation errors in my previous patch
2008-06-25 Chris LattnerAdd a new InvalidateInstructionCache method to sys...
2008-06-25 Dan GohmanSimpleInstructionSelector is here no more.
2008-06-25 Duncan SandsAdd/complete support for integer and float
2008-06-25 Duncan SandsPacify gcc-4.3.
2008-06-25 Dan GohmanRemove the OrigVT member from AtomicSDNode, as it is...
2008-06-25 Mon P WangAdded MemOperands to Atomic operations since Atomics...
2008-06-25 Matthijs KooijmanFix a (false) warning on darwin.
2008-06-25 Matthijs KooijmanFix some cosmetics in comments.
2008-06-25 Evan Cheng- Use O(1) check of basic block size limit.
2008-06-25 Chris LattnerFix PR2488, a case where we deleted stack restores...
2008-06-25 Evan ChengEnable two-address remat by default.
2008-06-25 Owen AndersonUse push_back rather than operator[], which is incorrec...
2008-06-24 Dan GohmanAppend to the ActiveTimers std::vector before looking...
2008-06-24 Dale JohannesenAdd v2f32 (MMX) type to X86. Support is primitive:
2008-06-24 Owen AndersonIn ConstantArray::getAsString(), we know the size of...
2008-06-24 Owen AndersonUse SmallVector instead of std::vector for a minor...
2008-06-24 Dan GohmanRevert 52645, the loop unroller changes. It caused...
2008-06-24 Dan GohmanFix a typo in a comment.
2008-06-24 Dan GohmanUse const_cast instead of a C-style cast.
2008-06-24 Matthijs KooijmanCommit the new DeadArgElim pass again, this time with...
2008-06-24 Matthijs KooijmanRename a few variables to be more consistent.
2008-06-24 Evan ChengIf it's determined safe, remat MOV32r0 (i.e. xor r...
2008-06-24 Dan GohmanFix some signed vs. unsigned issues in array and vector...
2008-06-24 Dan GohmanAdd a note about a potential PIC optimization.
2008-06-24 Dan GohmanFixes for being compiled PIC on Linux. This isn't the...
2008-06-23 Dan GohmanA brief survey of priority_queue usage in the tree...
2008-06-23 Bill WendlingThis situation can occur:
2008-06-23 Dan GohmanUse the new PriorityQueue in ScheduleDAGList too, which...
2008-06-23 Dan GohmanUse use_empty() instead of getNumUses(), avoiding a...
2008-06-23 Owen AndersonUse getMBBEndIdx rather than assuming that the end...
2008-06-23 Dan GohmanFix spelling and grammar in a comment.
2008-06-23 Dan GohmanRevamp the loop unroller, extending it to correctly...
2008-06-23 Evan ChengRemove option used to debug stack coloring bugs. It...
2008-06-23 Evan ChengDisable PRE. It's breaking bootstrapping.
2008-06-23 Dan GohmanMove a DenseMap's declaration outside of a loop, and...
2008-06-23 Evan ChengInstead of adding an isSS field to LiveInterval to...
2008-06-23 Wojciech MatyjewiczFirst step to fix PR2088. Implement routine to compute the
2008-06-23 Dan GohmanUpdate the .cvs files.
2008-06-23 Dan GohmanFix the types for NumElements variables, and add a...
2008-06-23 Owen AndersonTighten the conditions under which we do PRE, remove...
2008-06-23 Chris Lattnerminor tidying of comments.
2008-06-23 Dan GohmanRemove two convenience constructors because they're...
2008-06-23 Dan GohmanUse std::copy instead of a loop.
2008-06-23 Dan GohmanMore changes from Chris' review: simplify getIndices...
2008-06-23 Dan GohmanDuncan pointed out this code could be tidied.
2008-06-23 Duncan SandsPort some integer multiplication fixes from LegalizeDAG.
2008-06-23 Duncan SandsSupport for expanding the result of EXTRACT_ELEMENT.
2008-06-23 Duncan SandsCleanup up LegalizeTypes handling of loads and
2008-06-23 Owen AndersonAt Chris' suggestion, move the liveness and worklist...
2008-06-22 Dan GohmanImprove LSR's dead-phi detection to handle use-def...
2008-06-22 Dan GohmanUse Loop::block_iterator.
2008-06-22 Dan GohmanGeneralize createSCEV to be able to form SCEV expressio...
2008-06-22 Dan GohmanUse SCEVAddRecExpr::isAffine.
2008-06-22 Dan GohmanRemove unnecessary #includes.
2008-06-22 Dan GohmanMove a few more SCEVExpander methods out-of-line.
2008-06-22 Chris LattnerFix PR2369 by making scalarrepl more careful about...
2008-06-22 Duncan SandsMake custom lowering of ADD work correctly. This
2008-06-21 Eli FriedmanFix for PR2479: correctly optimize expressions like...
2008-06-21 Dan GohmanUse Instruction::eraseFromParent().
2008-06-21 Dan GohmanUse Function's arg_size() and size() methods.
2008-06-21 Dan GohmanSimplify some getNode calls.
2008-06-21 Dan GohmancanClobberPhysRegDefs shouldn't called without checking...
2008-06-21 Dan GohmanAvoid creating a redundant zero APInt.
2008-06-21 Dan GohmanUse clear() to zero an existing APInt.
2008-06-21 Dan GohmanUse back() instead of [size()-1].
2008-06-21 Dan GohmanUse MachineBasicBlock::transferSuccessors.
2008-06-21 Dan GohmanUse static_cast instead of reinterpret_cast for casting...
2008-06-21 Chris LattnerFix warning when assertions disabled.
2008-06-21 Chris Lattnerfix warning when assertions disabled.
2008-06-21 Chris Lattnerfix warning when assertion disabled.
2008-06-21 Chris Lattnerfix some warnings when assertions are disabled.
next