Skip to content
  1. Jul 30, 2003
  2. Jul 29, 2003
  3. Jul 28, 2003
  4. Jul 27, 2003
  5. Jul 25, 2003
    • Vikram S. Adve's avatar
      (1) Major fix to the way unused regs. are marked and found for the FP · 536b1922
      Vikram S. Adve authored
          Single and FP double reg types (which share the same reg class).
          Now all methods marking/finding unused regs consider the regType
          within the reg class, and SparcFloatRegClass specializes this code.
      (2) Remove machine-specific regalloc. methods that are no longer needed.
          In particular, arguments and return value from a call do not need
          machine-specific code for allocation.
      (3) Rename TargetRegInfo::getRegType variants to avoid unintentional
          overloading when an include file is omitted.
      
      llvm-svn: 7334
      536b1922
    • Vikram S. Adve's avatar
      1. Fix a case that was marking the invalid reg. num. (-1) as used, · 9b17ad16
      Vikram S. Adve authored
         causing a nasty array bound error later.
      2. Fix silly typo causing logical shift of unsigned long to use
         SRL instead of SRLX.
      
      llvm-svn: 7330
      9b17ad16
  6. Jul 23, 2003
  7. Jul 21, 2003
  8. Jul 20, 2003
  9. Jul 16, 2003
  10. Jul 15, 2003
  11. Jul 14, 2003
  12. 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
  13. Jul 08, 2003
  14. Jul 07, 2003
  15. Jul 06, 2003
  16. 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
  17. Jul 02, 2003
Loading