Reduce the number of arguments in the instruction builder and make some
[oota-llvm.git] / lib / Target / X86 / X86ISelSimple.cpp
2004-08-30 Reid SpencerReduce the number of arguments in the instruction build...
2004-07-26 Misha BrukmanFix file header as it has been renamed.
2004-07-21 Chris LattnerFix cases where we generated horrible code like this:
2004-07-19 Chris LattnerWhile I'm at it, don't break codegen of mul by 3,5,9.
2004-07-19 Chris LattnerGenerate better code for multiplies by negative constan...
2004-07-18 Reid Spencerbug 122:
2004-07-15 Chris LattnerPatches towards fixing PR341
2004-07-15 Chris LattnerImprove codegen for the LLVM offsetof/sizeof "operator...
2004-06-29 Chris LattnerFix a regression from r1.224. In particular, codegen...
2004-06-20 Chris LattnerMove the IntrinsicLowering header into the CodeGen...
2004-06-18 Chris LattnerCodegen sub C, X a little bit better for register press...
2004-06-18 Chris LattnerFold setcc instructions into select and branches that...
2004-06-17 Chris LattnerDo not fold loads into instructions if it is used more...
2004-06-17 Chris LattnerRename Type::PrimitiveID to TypeId and ::getPrimitiveID...
2004-06-15 Chris LattnerRemove support for llvm.isnan. Alkis wins :)
2004-06-15 Chris LattnerAdd basic support for the isunordered intrinsic. The...
2004-06-11 Chris LattnerBy far, one of the most common uses of isnan is to...
2004-06-11 Chris LattnerNow that compare instructions aren't lumped in with...
2004-06-11 Chris LattnerAdd direct support for the isnan intrinsic, implementin...
2004-06-09 John CriswellFix for PR#366. We use getClassB() so that we can...
2004-06-02 Chris LattnerConvert to the new TargetMachine interface.
2004-05-23 Chris LattnerAdd some notes to myself, no functional changes
2004-05-14 Brian GaekeGenerate branch machine instructions with MachineBasicB...
2004-05-13 Chris LattnerTwo more improvements for null pointer handling: storin...
2004-05-13 Chris LattnerSecond half of my fixed-sized-alloca patch. This folds...
2004-05-13 Chris LattnerSubstantially improve code generation for address expos...
2004-05-12 Chris LattnerPass boolean constants into function calls more efficie...
2004-05-10 Chris LattnerFix a fairly serious pessimizaion that was preventing...
2004-05-09 Chris LattnerFix some comments, avoid sign extending booleans when...
2004-05-09 Chris LattnerGenerate more efficient code for casting booleans to...
2004-05-07 Chris LattnerCodegen floating point stores of constants into integer...
2004-05-07 Chris LattnerMake comparisons against the null pointer as efficient...
2004-05-04 Chris LattnerRemove unneeded check
2004-05-04 Chris LattnerImprove signed division by power of 2 *dramatically...
2004-05-04 Chris LattnerImprove code generated for integer multiplications...
2004-05-01 Chris LattnerRemove unused #include
2004-04-28 Brian GaekeMake RequiresFPRegKill() take a MachineBasicBlock arg.
2004-04-28 Brian GaekeIn InsertFPRegKills(), use the machine-CFG itself rathe...
2004-04-28 Brian GaekeUpdate the machine-CFG edges whenever we see a branch.
2004-04-14 John CriswellRemove code to adjust the iterator for llvm.readio...
2004-04-13 John CriswellAdded support for the llvm.readio and llvm.writeio...
2004-04-13 Chris LattnerImplement a small optimization, which papers over the...
2004-04-13 Chris LattnerEmit the immediate form of in/out when possible.
2004-04-12 Chris LattnerFix issues that the local allocator has dealing with...
2004-04-12 Chris LattnerUse the fucomi[p] instructions to perform floating...
2004-04-12 Chris LattnerFix a bug in my load/cast folding patch.
2004-04-12 Chris LattnerAdjust some comments, fix a bug in my previous patch
2004-04-11 Chris LattnerOn X86, casting an integer to floating point requires...
2004-04-11 Chris LattnerImplement folding of loads into floating point operatio...
2004-04-11 Chris LattnerUnify all of the code for floating point +,-,*,/ into...
2004-04-11 Chris LattnerThis implements folding of constant operands into float...
2004-04-11 Chris LattnerRestructure the mul/div/rem handling code to follow...
2004-04-11 Chris LattnerCodegen FP adds and subtracts with a constant more...
2004-04-11 Chris LattnerTwo changes:
2004-04-10 Chris LattnerSilence a spurious warning
2004-04-09 John CriswellReversed the order of the llvm.writeport() operands...
2004-04-09 John CriswellChanged assertions to error messages.
2004-04-08 John CriswellChanges recommended by Chris:
2004-04-08 John CriswellAdded the llvm.readport and llvm.writeport intrinsics...
2004-04-06 Chris LattnerFix PR313: [x86] JIT miscompiles unsigned short to...
2004-04-06 Chris LattnerFix a minor bug in previous checking
2004-04-06 Chris LattnerImprove codegen of long == and != comparisons against...
2004-04-06 Chris LattnerHandle various other important cases of multiplying...
2004-04-06 Chris LattnerEfficiently handle a long multiplication by a constant...
2004-04-06 Chris LattnerImprove code generation of long shifts by 32.
2004-04-06 Chris LattnerBugfixes: inc/dec don't set the carry flag!
2004-04-06 Chris LattnerImprove code for passing constant longs as arguments...
2004-04-06 Chris LattnerEmit more efficient 64-bit operations when the RHS...
2004-04-06 Chris LattnerFix typeo
2004-04-06 Chris LattnerAdd support for simple immediate handling to long instr...
2004-04-06 Chris LattnerImplement negation of longs efficiently. For this...
2004-04-06 Chris LattnerMinor tweak to avoid an extra reg-reg copy that the...
2004-04-06 Chris LattnerTwo changes:
2004-04-05 Chris LattnerSupport getelementptr instructions which use uint's...
2004-04-02 Alkis EvlogimenosClean up code a bit.
2004-04-02 Alkis EvlogimenosFix type in instruction builder instantiation
2004-03-31 Chris LattnerGenerate slightly smaller code, "test R, R" instead...
2004-03-31 Chris LattnerCodegen FP select instructions into X86 conditional...
2004-03-30 Chris LattnerFold comparisons into select instructions, making much...
2004-03-30 Chris LattnerAdd direct support for integer select instructions...
2004-03-30 Chris LattnerFix a fairly major performance problem. If a PHI node...
2004-03-18 Chris LattnerMalloc doesn't kill a load. This patch need not go...
2004-03-18 Chris LattnerFix a really nasty bug that was breaking ijpeg in LLC...
2004-03-13 Chris LattnerIt helps if I save the file. :)
2004-03-13 Chris LattnerRename the intrinsic enum values for llvm.va_* from...
2004-03-08 Chris LattnerImplement folding explicit load instructions into binar...
2004-03-08 Chris LattnerRearrange and refactor some code. No functionality...
2004-03-01 Misha BrukmanDoxygenify some comments.
2004-03-01 Chris LattnerHandle passing constant integers to functions much...
2004-03-01 Chris LattnerFix a minor code-quality issue. When passing 8 and...
2004-02-29 Alkis EvlogimenosA big X86 instruction rename. The instructions are...
2004-02-29 Chris LattnerEliminate the X86-specific BMI functions, using BuildMI...
2004-02-29 Chris LattnerFix a miscompilation of 197.parser that occurs when...
2004-02-29 Chris LattnerThese two virtual methods are never called.
2004-02-28 Alkis EvlogimenosSHLD and SHRD take 32-bit operands but an 8-bit immedia...
2004-02-28 Alkis EvlogimenosFloating point loads/stores act on memory operands...
2004-02-27 Alkis EvlogimenosRename SHL, SHR, SAR, SHLD and SHLR instructions to...
2004-02-26 Alkis EvlogimenosUncomment assertions that register# != 0 on calls to
2004-02-26 Chris LattnerFix some warnings, some of which were spurious, and...
2004-02-25 Chris LattnerTeach the instruction selector how to transform 'array...
next