When doing sext/zext of constants, the target type must be strictly
[oota-llvm.git] / lib / CodeGen /
2010-07-13 Jakob Stoklund OlesenDon't add memory operands to storeRegToStackSlot /...
2010-07-12 Rafael EspindolaFix a typo and fit in 80 columns. Found by Bob Wilson.
2010-07-12 Duncan SandsConvert some tab stops into spaces.
2010-07-12 Rafael EspindolaConvert the last use of getPhysicalRegisterRegClass...
2010-07-12 Rafael EspindolaDon't use getPhysicalRegisterRegClass in PBQP. The...
2010-07-12 Rafael EspindolaConvert the last getPhysicalRegisterRegClass in VirtReg...
2010-07-12 Chris Lattnerchange machinelicm to use MachineInstr::isSafeToMove...
2010-07-11 Jakob Stoklund OlesenRemove TargetInstrInfo::copyRegToReg entirely.
2010-07-11 Rafael EspindolaConvert uses of getPhysicalRegisterRegClass in VirtRegR...
2010-07-11 Chandler CarruthRemove two other uses of ATTRIBUTE_UNUSED for variables...
2010-07-11 Jakob Stoklund OlesenUse COPY for fast-isel bitconvert, but don't create...
2010-07-11 Rafael EspindolaFix va_arg for doubles. With this patch VAARG nodes...
2010-07-11 Jakob Stoklund OlesenUse COPY for extracting ImplicitDef'ed values from...
2010-07-11 Jakob Stoklund OlesenUse COPY in FastISel everywhere it is safe and trivial.
2010-07-10 Jakob Stoklund OlesenReplace copyRegToReg with COPY everywhere in lib/CodeGe...
2010-07-10 Jakob Stoklund OlesenOnly collect subreg extracting copies for later coalescing.
2010-07-10 Dan GohmanFix a bug in the code which re-inserts DBG_VALUE nodes...
2010-07-10 Jakob Stoklund OlesenEmit COPY instructions instead of using copyRegToReg...
2010-07-10 Dan GohmanInsert IMPLICIT_DEF instructions at the current insert...
2010-07-10 Dan GohmanReapply bottom-up fast-isel, with several fixes for...
2010-07-09 Devang PatelUpdate DBG_VALUE to refer appropriate stack slot in...
2010-07-09 Jakob Stoklund OlesenFix small bug in isMoveInstr -> COPY translation
2010-07-09 Jakob Stoklund OlesenAutomatically fold COPY instructions into stack load...
2010-07-09 Jakob Stoklund OlesenRemat uncoalescable COPY instrs
2010-07-09 Bill WendlingClarify what mysterious check means.
2010-07-09 Dan GohmanFix MachineLICM to actually visit inner loops.
2010-07-09 Jakob Stoklund OlesenChange TII::foldMemoryOperand API to require the machin...
2010-07-09 Bob Wilson--- Reverse-merging r107947 into '.':
2010-07-09 Gabor Greifcache result of operator*
2010-07-09 Jakob Stoklund OlesenAvoid creating %physreg:subidx operands in SimpleRegist...
2010-07-09 Jakob Stoklund OlesenDeal with a few remaining spots that assume physical...
2010-07-09 Jakob Stoklund OlesenFix broken isCopy handling in TrimLiveIntervalToLastUse.
2010-07-09 Jakob Stoklund OlesenHandle COPY in VirtRegRewriter.
2010-07-09 Dan GohmanRe-apply bottom-up fast-isel, with fixes. Be very caref...
2010-07-09 Bob WilsonReenable DAG combining for vector shuffles. It looks...
2010-07-08 Stuart HastingsReverting r107918 and r107919. Radar 8063111.
2010-07-08 Jakob Stoklund OlesenRevert "Fix broken isCopy handling in TrimLiveIntervalT...
2010-07-08 Devang PatelRelax assertion. In optimized code, it is possible...
2010-07-08 Bill WendlingExtension of r107506. Make sure that we don't mark...
2010-07-08 Jakob Stoklund OlesenFix broken isCopy handling in TrimLiveIntervalToLastUse
2010-07-08 Stuart HastingsFix decl/def debug info for template functions. Radar...
2010-07-08 Devang PatelReuse DIEInteger for 1. This is frequently used while...
2010-07-08 Jim GrosbachClean up scavengeRegister() a bit to prefer available...
2010-07-08 Jakob Stoklund OlesenConvert EXTRACT_SUBREG to COPY when emitting machine...
2010-07-08 Jakob Stoklund OlesenRemove references to INSERT_SUBREG after de-SSA.
2010-07-08 Benjamin KramerMerge the duplicated iabs optimization in DAGCombiner...
2010-07-08 Jakob Stoklund OlesenAdd TargetInstrInfo::copyPhysReg hook and use it from...
2010-07-08 Dan GohmanRevert 107840 107839 107813 107804 107800 107797 107791.
2010-07-08 Jim GrosbachWhen processing frame index virtual registers, consider...
2010-07-07 Dan GohmanDon't forward-declare registers for static allocas...
2010-07-07 Dan GohmanFix -fast-isel-abort to check the right instruction.
2010-07-07 Devang PatelOne MDNode may be used to create regular DIE as well...
2010-07-07 Evan ChengMove getExtLoad() and (some) getLoad() DebugLoc argumen...
2010-07-07 Dan GohmanNot all custom inserters create new basic blocks. If...
2010-07-07 Devang PatelRename couple of maps.
2010-07-07 Devang Patel80 cols.
2010-07-07 Dan GohmanImplement bottom-up fast-isel. This has the advantage...
2010-07-07 Dan GohmanAdd X86FastISel support for return statements. This...
2010-07-07 Dan GohmanUpdate the insert position after scheduling, which...
2010-07-07 Devang PatelUpdate comment.
2010-07-07 Dan GohmanFix debugging strings.
2010-07-07 Dan GohmanGive FunctionLoweringInfo an MBB member, avoiding the...
2010-07-07 Dan GohmanSimplify FastISel's constructor by giving it a Function...
2010-07-07 Dan GohmanMove FunctionLoweringInfo.h out into include/llvm/CodeG...
2010-07-07 Dan GohmanSplit the SDValue out of OutputArg so that SelectionDAG...
2010-07-07 Dan GohmanMove CallingConvLower.cpp out of the SelectionDAG direc...
2010-07-07 Jakob Stoklund OlesenFix more places assuming subregisters have live intervals
2010-07-07 Dan GohmanAdd a getFirstNonPHI utility function.
2010-07-07 Jakob Stoklund OlesenRevert "Remove references to INSERT_SUBREG after de...
2010-07-06 Jim GrosbachBy default, the eh.sjlj.setjmp/longjmp intrinsics shoul...
2010-07-06 Jakob Stoklund OlesenRemove references to INSERT_SUBREG after de-SSA
2010-07-06 Jakob Stoklund OlesenConvert INSERT_SUBREG to COPY in TwoAddressInstructionPass.
2010-07-06 Dan GohmanCanLowerReturn doesn't need a SelectionDAG; it just...
2010-07-06 Devang PatelPropagate debug loc.
2010-07-06 Jakob Stoklund OlesenOne more case assuming that subregs have live ranges.
2010-07-06 Jakob Stoklund OlesenFix buildbot breakage where a def is missing.
2010-07-06 Jakob Stoklund OlesenBe more forgiving when calculating alias interference...
2010-07-06 Dan GohmanReapply r107655 with fixes; insert the pseudo instructi...
2010-07-06 Eric ChristopherFix to 80-col.
2010-07-06 Chris Lattnertighten up this code.
2010-07-06 Dan GohmanRevert r107655.
2010-07-06 Dan GohmanAdd versions of OutputArgReg, AnalyzeReturn, and Analyz...
2010-07-06 Anton KorobeynikovFix a major regression on COFF targets introduced by...
2010-07-06 Dan GohmanFix a bunch of custom-inserter functions to handle...
2010-07-06 Eric ChristopherFix up -fstack-protector on linux to use the segment
2010-07-05 Chris Lattnermore tidying.
2010-07-05 Chris Lattnerrandom tidying
2010-07-04 Jakob Stoklund OlesenPrint symbolic subreg indices on REG_SEQUENCE and INSER...
2010-07-04 Evan ChengInfer alignments of fixed frame objects when they are...
2010-07-04 Bill WendlingProper indentation.
2010-07-03 Eric ChristopherFix typo.
2010-07-03 Evan ChengRemove isSS argument from CreateFixedObject. Fixed...
2010-07-03 Jakob Stoklund OlesenDetect and handle COPY in many places.
2010-07-02 Eric Christopher80-col fixup.
2010-07-02 Jakob Stoklund OlesenAdd a new target independent COPY instruction and code...
2010-07-02 Jim GrosbachCustom inserters (e.g., conditional moves in Thumb1...
2010-07-02 Evan Cheng- Two-address pass should not assume unfolding is alway...
2010-07-02 Dale JohannesenPropagate the AlignStack bit in InlineAsm's to the
2010-07-02 Jakob Stoklund OlesenRemove invalid assert
2010-07-02 Jakob Stoklund OlesenProperly handle debug values during inline spilling.
next