- Jul 08, 2005
-
-
Jeff Cohen authored
llvm-svn: 22356
-
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
-
Jeff Cohen authored
llvm-svn: 22353
-
Reid Spencer authored
been compiled or tested. llvm-svn: 22350
-
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
-
- Jul 07, 2005
-
-
Reid Spencer authored
Change interface to Path class: readable -> canRead writable -> canWrite executable -> canExecute More (incremental) changes coming to close 495. llvm-svn: 22345
-
- May 06, 2005
-
-
Misha Brukman authored
llvm-svn: 21704
-
- Apr 22, 2005
-
-
Misha Brukman authored
llvm-svn: 21422
-
- Apr 21, 2005
-
-
Reid Spencer authored
methods that were recently added to the interface. llvm-svn: 21401
-
- Apr 11, 2005
-
-
Jeff Cohen authored
llvm-svn: 21216
-
- Feb 20, 2005
-
-
Jeff Cohen authored
llvm-svn: 20256
-
Jeff Cohen authored
llvm-svn: 20255
-
- Feb 19, 2005
-
-
Jeff Cohen authored
llvm-svn: 20243
-
- Feb 18, 2005
-
-
Jeff Cohen authored
llvm-svn: 20237
-
- Feb 16, 2005
-
-
Jeff Cohen authored
llvm-svn: 20208
-
- Jan 27, 2005
-
-
Jeff Cohen authored
llvm-svn: 19852
-
- Jan 22, 2005
-
-
Jeff Cohen authored
llvm-svn: 19746
-
- Jan 14, 2005
-
-
Jeff Cohen authored
llvm-svn: 19545
-
- Jan 10, 2005
-
-
Reid Spencer authored
gdb debugger doesn't get confused on which file it is reading (the one in lib/System or the one in lib/System/{Win32,Unix}) llvm-svn: 19426
-
- Jan 08, 2005
-
-
Jeff Cohen authored
on 64-bit Windows. llvm-svn: 19393
-
- Jan 01, 2005
-
-
Jeff Cohen authored
console or not. llvm-svn: 19236
-
- Dec 31, 2004
-
-
Jeff Cohen authored
llvm-svn: 19203
-
Jeff Cohen authored
llvm-svn: 19202
-
Jeff Cohen authored
llvm-svn: 19199
-
Jeff Cohen authored
llvm-svn: 19198
-
- Dec 30, 2004
-
-
Jeff Cohen authored
llvm-svn: 19190
-
- Dec 27, 2004
-
-
Reid Spencer authored
* Move implementation of sys::PreventCoreFiles function to this file from the now defunct SysConfig abstraction. llvm-svn: 19159
-
Reid Spencer authored
SysConf abstraction was pointless because it had a single function in it that pertained only to the current process. So merge it into the Process abstraction and remove the files completely. llvm-svn: 19149
-
- Dec 25, 2004
-
-
Jeff Cohen authored
Old versions of the C runtime somehow get loaded into the process. Make sure they aren't searched for symbols. llvm-svn: 19141
-
- Dec 24, 2004
-
-
Jeff Cohen authored
ltdl's LGPL license would infect all of LLVM. llvm-svn: 19137
-
Reid Spencer authored
llvm-svn: 19130
-
Reid Spencer authored
is now implemented via ltdl.cpp which has its own way of dealing with the different platforms. llvm-svn: 19129
-
Jeff Cohen authored
llvm-svn: 19124
-
- Dec 23, 2004
-
-
Reid Spencer authored
llvm-svn: 19122
-
Jeff Cohen authored
llvm-svn: 19112
-
- Dec 20, 2004
-
-
Jeff Cohen authored
llvm-svn: 19057
-
Reid Spencer authored
* Implement GetMallocUsage to get usage of malloc heap * Implement GetMemoryUsage to get total memory usage of process * Implement GetTimeUsage to get elapsed/user/system time llvm-svn: 19055
-
- Dec 18, 2004
-
-
Jeff Cohen authored
llvm-svn: 19028
-
- Dec 16, 2004
-
-
Jeff Cohen authored
llvm-svn: 18976
-
Reid Spencer authored
const because they affect the file system, not the Path object. llvm-svn: 18973
-