Skip to content
  1. Aug 01, 2006
  2. Jul 29, 2006
  3. Jul 26, 2006
  4. Jul 07, 2006
  5. Jun 08, 2006
    • Reid Spencer's avatar
      Squelch a warning about signed/unsigned. · 36bc2b00
      Reid Spencer authored
      llvm-svn: 28729
      36bc2b00
    • Reid Spencer's avatar
      For PR804: · 5e91c03f
      Reid Spencer authored
      Change the file size field of StatusInfo to be uint64_t instead of size_t
      so that we know it is always 64 bits. This prevents some overflow on
      systems where size_t is 32 bits when it ought to be 64.
      
      llvm-svn: 28726
      5e91c03f
    • Reid Spencer's avatar
      For PR787: · ab97f22c
      Reid Spencer authored
      Provide new llvm::sys::Program facilities for converting the stdout and
      stdin to binary mode. There is no standard way to do this and the available
      mechanisms are platform specific. Adjust the bytecode reader and writer to
      use these methods when their input is stdin or output is stdout. THis avoids
      the problem with \n writing CRLF to a bytecode file on windows.
      
      Patch Contributed by Michael Smith.
      
      llvm-svn: 28722
      ab97f22c
  6. Jun 05, 2006
    • Reid Spencer's avatar
      For PR798: · 7c77323e
      Reid Spencer authored
      Add support for Graphviz. Patch contributed by Anton Korobeynikov.
      
      llvm-svn: 28684
      7c77323e
  7. Jun 01, 2006
  8. May 07, 2006
  9. Apr 29, 2006
  10. Jan 30, 2006
  11. Jan 29, 2006
  12. Dec 22, 2005
  13. Aug 02, 2005
  14. Jul 30, 2005
  15. Jul 13, 2005
  16. Jul 12, 2005
    • Reid Spencer's avatar
      For PR540: · f404981b
      Reid Spencer authored
      Add a Mutex class for thread synchronization in a platform-independent way.
      The current implementation only supports pthreads. Win32 use of Critical
      Sections will be added later. The design permits other threading models to
      be used if (and only if) pthreads is not available.
      
      llvm-svn: 22403
      f404981b
  17. Jul 09, 2005
  18. Jul 08, 2005
    • Reid Spencer's avatar
      Ensure that functions like isDirectory don't fail if the file doesn't · 2d85f569
      Reid Spencer authored
      exist but just return false instead.
      
      llvm-svn: 22361
      2d85f569
    • Jeff Cohen's avatar
      Stamp out tabs · f5067761
      Jeff Cohen authored
      llvm-svn: 22357
      f5067761
    • Jeff Cohen's avatar
      Make Win32 implementation conform to new paradigm · 0e1d7354
      Jeff Cohen authored
      llvm-svn: 22356
      0e1d7354
    • Reid Spencer's avatar
      Final Changes For PR495: · af48d864
      Reid Spencer authored
      This chagne just renames some sys::Path methods to ensure they are not
      misused. The Path documentation now divides methods into two dimensions:
      Path/Disk and accessor/mutator. Path accessors and mutators only operate
      on the Path object itself without making any disk accesses. Disk accessors
      and mutators will also access or modify the file system. Because of the
      potentially destructive nature of disk mutators, it was decided that all
      such methods should end in the work "Disk" to ensure the user recognizes
      that the change will occur on the file system. This patch makes that
      change. The method name changes are:
      
      makeReadable        -> makeReadableOnDisk
      makeWriteable       -> makeWriteableOnDisk
      makeExecutable      -> makeExecutableOnDisk
      setStatusInfo       -> setStatusInfoOnDisk
      createDirectory     -> createDirectoryOnDisk
      createFile          -> createFileOnDisk
      createTemporaryFile -> createTemporaryFileOnDisk
      destroy             -> eraseFromDisk
      rename              -> renamePathOnDisk
      
      These changes pass the Linux Deja Gnu tests.
      
      llvm-svn: 22354
      af48d864
    • Jeff Cohen's avatar
      Fix VC++ breakage · 215db904
      Jeff Cohen authored
      llvm-svn: 22353
      215db904
    • Reid Spencer's avatar
      Changes to mimic those in Unix/Path.inc in support of PR495. This hasn't · 17c1bd37
      Reid Spencer authored
      been compiled or tested.
      
      llvm-svn: 22350
      17c1bd37
    • Reid Spencer's avatar
      For PR495: · c9c0473f
      Reid Spencer authored
      Get rid of the difference between file paths and directory paths. The Path
      class now simply stores a path that can refer to either a file or a
      directory. This required various changes in the implementation and interface
      of the class with the corresponding impact to its users. Doxygen comments were
      also updated to reflect these changes. Interface changes are:
      
      appendDirectory -> appendComponent
      appendFile -> appendComponent
      elideDirectory -> eraseComponent
      elideFile -> eraseComponent
      elideSuffix -> eraseSuffix
      renameFile -> rename
      setDirectory -> set
      setFile -> set
      
      Changes pass Dejagnu and llvm-test/SingleSource tests.
      
      llvm-svn: 22349
      c9c0473f
  19. Jul 07, 2005
    • Reid Spencer's avatar
      For PR495: · 5b891e98
      Reid Spencer authored
      Change interface to Path class:
      readable -> canRead
      writable -> canWrite
      executable -> canExecute
      
      More (incremental) changes coming to close 495.
      
      llvm-svn: 22345
      5b891e98
  20. May 06, 2005
  21. Apr 22, 2005
  22. Apr 21, 2005
Loading