Skip to content
  1. Aug 01, 2004
  2. Jul 31, 2004
  3. Jul 27, 2004
  4. Jul 22, 2004
  5. Jul 16, 2004
  6. Jul 13, 2004
  7. Jun 21, 2004
  8. Jun 20, 2004
  9. Jun 17, 2004
  10. Jun 04, 2004
  11. May 27, 2004
  12. Apr 15, 2004
  13. Apr 06, 2004
    • Jakub Staszak's avatar
      · 68a9025f
      Jakub Staszak authored
      Tablegen backend for really simple instruction selector
      
      llvm-svn: 12713
      68a9025f
    • Jakub Staszak's avatar
      · f9bfc7f9
      Jakub Staszak authored
      add tablgen backend for really simple instruction selector
      
      llvm-svn: 12712
      f9bfc7f9
  14. Feb 28, 2004
  15. Feb 13, 2004
  16. Feb 12, 2004
  17. Feb 06, 2004
  18. Jan 24, 2004
  19. Dec 11, 2003
  20. Nov 11, 2003
  21. Oct 21, 2003
  22. Oct 20, 2003
  23. Oct 16, 2003
  24. Oct 13, 2003
  25. Oct 10, 2003
  26. Oct 08, 2003
    • Alkis Evlogimenos's avatar
      Change MRegisterDesc::AliasSet, TargetInstrDescriptor::ImplicitDefs · 5f1f337d
      Alkis Evlogimenos authored
      and TargetInstrDescriptor::ImplicitUses to always point to a null
      terminated array and never be null. So there is no need to check for
      pointer validity when iterating over those sets. Code that looked
      like:
      
      if (const unsigned* AS = TID.ImplicitDefs) {
        for (int i = 0; AS[i]; ++i) {
          // use AS[i]
        }
      }
      
      was changed to:
      
      for (const unsigned* AS = TID.ImplicitDefs; *AS; ++AS) {
        // use *AS
      }
      
      llvm-svn: 8960
      5f1f337d
  27. Oct 05, 2003
Loading