Skip to content
  1. Jul 15, 2003
  2. Jul 14, 2003
  3. Jul 11, 2003
    • Brian Gaeke's avatar
      If we have a constant pointer reference to a function, we were printing · b99d6848
      Brian Gaeke authored
      out the entire llvm disassembly for the function at global constant-output
      time, which caused the assembler to barf in 164.gzip. This fixes that
      particular problem (though 164.gzip has other problems with X86 llc.)
      
      llvm-svn: 7168
      b99d6848
    • Brian Gaeke's avatar
      Fix some serious floating-point bugs (fixes test cases such as Oscar, · 5b04987a
      Brian Gaeke authored
      Fhourstones, McCat-vor, and many others...)
      
      Printer.cpp: Print implicit uses for AddRegFrm instructions.  Break gas
      bug workarounds up into separate stanzas of code for each bug.  Add new
      workarounds for fild and fistp.
      
      X86InstrInfo.def: Add O_ST0 implicit uses for more FP instrs where they
      obviously apply. Also add PrintImplUses flags for FP instrs where they
      are necessary for gas to understand the output.
      
      llvm-svn: 7165
      5b04987a
  4. Jul 10, 2003
    • Vikram S. Adve's avatar
      Several important bug fixes: · 4f420ce3
      Vikram S. Adve authored
      (1) Cannot use ANDN(ot), ORN, and XORN for boolean ops, only bitwise ops.
      
      (2) Conditional move instructions must distinguish signed and unsigned
          condition codes, e.g., MOVLE vs. MOVLEU.
      
      (3) Conditional-move-on-register was using the cond-move-on-cc opcodes,
          which produces a valid-looking instruction with bogus registers!
      
      (4) Here's a really cute one: dividing-by-2^k for negative numbers needs to
          add 2^k-1 before shifting, not add 1 after shifting.  Sadly, these
          are the same when k=0 so our poor test case worked fine.
      
      (5) Casting between signed and unsigned values was not correct:
          completely reimplemented.
      
      (6) Zero-extension on unsigned values was bogus: I was only doing the
          SRL and not the SLLX before it.  Don't know WHAT I was thinking!
      
      (7) And the most important class of changes: Sign-extensions on signed values.
          Signed values are not sign-extended after ordinary operations,
          so they must be sign-extended before the following cases:
      	-- passing to an external or unknown function
      	-- returning from a function
      	-- using as operand 2 of DIV or REM
      	-- using as either operand of condition-code setting operation
                 (currently only SUBCC), with smaller than 32-bit operands
      
      
      Also, a couple of improvements:
      
      (1) Fold cast-to-bool into Not(bool).  Need to do this for And, Or, XOR also.
      
      (2) Convert SetCC-Const into a conditional-move-on-register (case 41)
          if the constant is 0.  This was only being done for branch-on-SetCC-Const
          when the branch is folded with the SetCC-Const.
      
      llvm-svn: 7159
      4f420ce3
    • Vikram S. Adve's avatar
      Bug fix in creating constants: need 1U << 31, not 1 << 31. · 8ea738a9
      Vikram S. Adve authored
      llvm-svn: 7158
      8ea738a9
    • Vikram S. Adve's avatar
      Fold cast-to-bool into not. Later, this should also be folded into other · 2f90c823
      Vikram S. Adve authored
      boolean operations: AND, OR, XOR.
      
      llvm-svn: 7157
      2f90c823
    • Vikram S. Adve's avatar
      Several fixes to handling of int CC register: · 65280676
      Vikram S. Adve authored
      (1) An int CC live range must be spilled if there are any interferences,
          even if no other "neighbour" in the interf. graph has been allocated
          that reg. yet.  This is actually true of any class with only one reg!
      
      (2) SparcIntCCRegClass::colorIGNode sets the color even if the LR must
          be spilled so that the machine-independent spill code doesn't have to
          make the machine-dependent decision of which CC name to use based on
          operand type: %xcc or %icc.  (These are two halves of the same register.)
      
      (3) LR->isMarkedForSpill() is no longer the same as LR->hasColor().
          These should never have been the same, and this is necessary now for #2.
      
      (4) All RDCCR and WRCCR instructions are directly generated with the
          phony number for %ccr so that EmitAssembly/EmitBinary doesn't have to
          deal with this.
      
      llvm-svn: 7151
      65280676
  5. Jul 08, 2003
  6. Jul 07, 2003
  7. Jul 06, 2003
  8. Jul 03, 2003
    • Misha Brukman's avatar
      Apparently, the "regType" and "regClass" used in the Sparc backend are not both · bb956054
      Misha Brukman authored
      correct: empirically, "regType" is wrong for a number of registers. Thus, one
      can only rely on the "regClass" to figure out what kind of register one is
      dealing with.
      
      This change switches to using only "regClass" and adds a few extra DEBUG() print
      statements and a few clean-ups in comments and code, mostly minor.
      
      llvm-svn: 7103
      bb956054
  9. Jul 02, 2003
  10. Jun 30, 2003
  11. Jun 29, 2003
  12. Jun 27, 2003
    • Brian Gaeke's avatar
      Nice tasty llc fixes. These should fix LLC for x86 for everything in · c1e4ee0f
      Brian Gaeke authored
      SingleSource except oopack and Oscar.  (Sorry, Oscar.)
      
      include/llvm/Target/TargetInstrInfo.h: Remove virtual print method. Add
       accessors for ImplicitUses/Defs.
      lib/Target/TargetInstrInfo.cpp: Remove virtual print method. If you
       really wanted this, just use MI->print(O, TM); instead...
      lib/Target/X86:
      FloatingPoint.cpp: ...like this.
      X86InstrInfo.h: Remove virtual print method. Define the PrintImplUses
       target-specific flag bit.
      X86InstrInfo.def: Add the PrintImplUses flag to all the instructions
       which implicitly use CL, because the assembler needs to see the CL in
       order to generate the right instruction.
      Printer.cpp: Ditch fnIndex at Chris's request. Now we use CurrentFnName
        to name constants in the constant pool for each function instead. This
        avoids keeping state between runOnMachineFunction() invocations, which
        is a no-no. Having MangledGlobals be global is a bogon I'd like to get
        rid of too, but making it a static member of Printer causes link errors
        (why???).
       Make NumberForBB into a member of Printer instead of a global, too.
       Make printOp and printMemReference into methods of Printer.
       X86InstrInfo::print is now Printer::printMachineInstruction, because
        TargetInstrInfo::print is history. (Because of this, we have to qualify
        the names of some TargetInstrInfo methods we call.)
       Print out the ImplicitUses field of any instruction we print that has
        the PrintImplUses bit set.
      
      llvm-svn: 6924
      c1e4ee0f
  13. Jun 26, 2003
  14. Jun 25, 2003
  15. Jun 23, 2003
  16. Jun 22, 2003
  17. Jun 21, 2003
Loading