Skip to content
  1. May 04, 2006
  2. Apr 22, 2006
  3. Apr 20, 2006
  4. Apr 17, 2006
  5. Apr 22, 2005
  6. Oct 15, 2004
    • Chris Lattner's avatar
      Allow machine operands to represent global variables with offsets. This is · 3065220d
      Chris Lattner authored
      useful when you have a reference like:
      
      int A[100];
      
      void foo() { A[10] = 1; }
      
      In this case, &A[10] is a single constant and should be treated as such.
      
      Only MO_GlobalAddress and MO_ExternalSymbol are allowed to use this field, no
      other operand type is.
      
      This is another fine patch contributed by Jeff Cohen!!
      
      llvm-svn: 17007
      3065220d
  7. Sep 02, 2004
    • Reid Spencer's avatar
      Changes For Bug 352 · 7c16caa3
      Reid Spencer authored
      Move include/Config and include/Support into include/llvm/Config,
      include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
      public header files must be under include/llvm/.
      
      llvm-svn: 16137
      7c16caa3
  8. Jul 09, 2004
    • Misha Brukman's avatar
      * Doxygenify comments · b47ab7ae
      Misha Brukman authored
      * Fix spacing, grammar in comment
      * Make code layout consistent
      * Wrap code at 80 cols
      * Delete spurious blank lines
      
      No functional changes.
      
      llvm-svn: 14721
      b47ab7ae
  9. Jul 04, 2004
  10. Jun 25, 2004
  11. Jun 18, 2004
  12. Jun 02, 2004
  13. May 24, 2004
  14. May 23, 2004
  15. Mar 03, 2004
  16. Feb 29, 2004
  17. Feb 27, 2004
  18. Feb 23, 2004
  19. Feb 19, 2004
  20. Feb 16, 2004
  21. Feb 13, 2004
  22. Feb 12, 2004
  23. Feb 04, 2004
  24. Feb 03, 2004
  25. Dec 14, 2003
    • Alkis Evlogimenos's avatar
      Change interface of MachineOperand as follows: · aaba4639
      Alkis Evlogimenos authored
          a) remove opIsUse(), opIsDefOnly(), opIsDefAndUse()
          b) add isUse(), isDef()
          c) rename opHiBits32() to isHiBits32(),
                    opLoBits32() to isLoBits32(),
                    opHiBits64() to isHiBits64(),
                    opLoBits64() to isLoBits64().
      
      This results to much more readable code, for example compare
      "op.opIsDef() || op.opIsDefAndUse()" to "op.isDef()" a pattern used
      very often in the code.
      
      llvm-svn: 10461
      aaba4639
  26. Nov 11, 2003
  27. Oct 20, 2003
Loading