Skip to content
  1. Mar 28, 2009
  2. Feb 02, 2009
  3. Jan 30, 2009
  4. Jan 28, 2009
  5. Jan 21, 2009
  6. Jan 16, 2009
  7. Dec 23, 2008
  8. Dec 09, 2008
  9. Oct 14, 2008
  10. May 30, 2008
  11. May 05, 2008
  12. Apr 28, 2008
  13. Mar 25, 2008
  14. Feb 23, 2008
  15. Feb 20, 2008
  16. Dec 29, 2007
  17. Oct 09, 2007
  18. Oct 08, 2007
  19. May 22, 2007
  20. Apr 12, 2007
  21. Apr 11, 2007
  22. Apr 07, 2007
  23. Apr 06, 2007
    • Chris Lattner's avatar
      rearchitect the registration mechanism used by the command line option stuff. · 5247f60d
      Chris Lattner authored
      This dramatically reduce the amount of memory allocated by the commandline stuff
      at static init time, changing it to build local data structures when ParseCommandLineOptions
      is called.  In a dummy empty program that links some llvm libraries, this reduces
      the number of malloc'd bytes from 4864 to 3360 on entry to main.  Most of that
      memory is now allocated by non-commandline related stuff.
      
      llvm-svn: 35701
      5247f60d
  24. Apr 05, 2007
  25. Feb 01, 2007
  26. Dec 08, 2006
  27. Dec 07, 2006
  28. Nov 26, 2006
  29. Oct 13, 2006
  30. Oct 04, 2006
  31. Aug 28, 2006
  32. Aug 27, 2006
  33. Aug 23, 2006
    • Reid Spencer's avatar
      Make the ProgramName variable a std::string so we can eliminate the path · bd156a90
      Reid Spencer authored
      portion fo the program name via sys::Path().getLast(). This makes error
      messages more readable since this is invariably used only in error
      messages.  Instead of:
        /path/to/llvm/bin/directory/toolname: error message
      we will now get:
        toolname: error message
      Also, since we always have a program name (even if its defaulted), don't
      check to see if it is set or not when generating error messages. This
      eliminates a bunch of constant strings, saving a little under 1K of data.
      
      llvm-svn: 29842
      bd156a90
  34. Aug 21, 2006
    • Reid Spencer's avatar
      For PR797: · c295914b
      Reid Spencer authored
      Make sys::Program::ExecuteAndWait not throw exceptions and update any
      affected code. It now return -9999 to signal that the program couldn't be
      executed. Only one case (in bugpoint) actually examines the result code.
      
      llvm-svn: 29785
      c295914b
  35. Aug 02, 2006
  36. Jul 19, 2006
  37. Jul 06, 2006
Loading