History log of /llvm-project/llvm/lib/Support/SystemUtils.cpp (Results 26 – 50 of 73)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 355fc5ad 07-Dec-2006 Bill Wendling <isanbard@gmail.com>

Removed more <iostream> includes

llvm-svn: 32321


# f3baad3e 07-Dec-2006 Bill Wendling <isanbard@gmail.com>

Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are
now cerr, cout, and NullStream resp.

llvm-svn: 32298


# 3750ae25 26-Nov-2006 Bill Wendling <isanbard@gmail.com>

Removed #include <iostream> and replace with llvm_* streams.

llvm-svn: 31927


Revision tags: llvmorg-1.9.0, llvmorg-1.6.0
# c9c0473f 07-Jul-2005 Reid Spencer <rspencer@reidspencer.com>

For PR495:
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 t

For PR495:
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

show more ...


# 5b891e98 07-Jul-2005 Reid Spencer <rspencer@reidspencer.com>

For PR495:
Change interface to Path class:
readable -> canRead
writable -> canWrite
executable -> canExecute

More (incremental) changes coming to close 495.

llvm-svn: 22345


Revision tags: llvmorg-1.5.0
# 308a715a 10-May-2005 Misha Brukman <brukman+llvm@gmail.com>

Why output multiple strings, let the compiler concatenate them for us for free

llvm-svn: 21845


# 7937b079 22-Apr-2005 Misha Brukman <brukman+llvm@gmail.com>

* Order #includes as per style guide
* Combine multiple ``std::cerr <<'' statements into one for simplicity

llvm-svn: 21458


# 10468d8a 21-Apr-2005 Misha Brukman <brukman+llvm@gmail.com>

Remove trailing whitespace

llvm-svn: 21422


# 4e8dd447 02-Jan-2005 Reid Spencer <rspencer@reidspencer.com>

Make printing a warning message optional in CheckBytecodeOutputToConsole.

llvm-svn: 19240


# 1263cfd1 01-Jan-2005 Reid Spencer <rspencer@reidspencer.com>

Implement a function to print a warning if bytecode output is to be sent to
a terminal/console.

llvm-svn: 19237


# d44f8452 19-Dec-2004 Reid Spencer <rspencer@reidspencer.com>

For PR351:
* Remove unneeded header files.
* Move RedirectFD static function to lib/System/Unix/Program.cpp
* Delete RunProgramWithTimeout, now implemented by
sys::Program::ExecuteAndWait. RunProgr

For PR351:
* Remove unneeded header files.
* Move RedirectFD static function to lib/System/Unix/Program.cpp
* Delete RunProgramWithTimeout, now implemented by
sys::Program::ExecuteAndWait. RunProgramWithTimeout is now a convenience func.

llvm-svn: 19040

show more ...


# c2e22fea 14-Dec-2004 Reid Spencer <rspencer@reidspencer.com>

For PR351:
* Remove the ExecWait function. This is now in sys::Program::ExecuteAndWait

llvm-svn: 18927


# dc49d865 13-Dec-2004 Reid Spencer <rspencer@reidspencer.com>

For PR351:
* Remove isExecutable as its now implemented by sys::Path::executable
* Make FindExecutable a thin veneer over sys::Program::FindProgramByName.

llvm-svn: 18918


# e42f222d 13-Dec-2004 Reid Spencer <rspencer@reidspencer.com>

For PR351:
Remove AllocateRWXMemory as it is not used any more in LLVM. The function
has been replaced with sys::Memory::AllocateRWX several months ago.

llvm-svn: 18912


Revision tags: llvmorg-1.4.0
# 7c16caa3 01-Sep-2004 Reid Spencer <rspencer@reidspencer.com>

Changes For Bug 352
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/l

Changes For Bug 352
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

show more ...


Revision tags: llvmorg-1.3.0
# d1980dbe 25-Jul-2004 Chris Lattner <sabre@nondot.org>

Remove linux/solaris specific stuff.

llvm-svn: 15195


# 2731ead7 24-Jul-2004 Chris Lattner <sabre@nondot.org>

Get rid of the printout from the low-level system interface

llvm-svn: 15161


# f5da5de9 24-Jul-2004 Chris Lattner <sabre@nondot.org>

Add support for killing the program if it executes for too long.

llvm-svn: 15158


# 4b585815 18-Jun-2004 Misha Brukman <brukman+llvm@gmail.com>

* Fix file header and name
* Order #includes alphabetically

llvm-svn: 14234


# 42a24823 18-Jun-2004 Misha Brukman <brukman+llvm@gmail.com>

Use the machine-independent method of querying the page size.

llvm-svn: 14233


# 140f26ea 02-Jun-2004 Misha Brukman <brukman+llvm@gmail.com>

Fix spelling, trim empty space, tighten up function header comment.

llvm-svn: 13940


# b6d6b931 28-May-2004 Chris Lattner <sabre@nondot.org>

Add support for getting executable memory on Windows. This is actually
much easier than on unix. :) The only evil thing is that windows.h defines
a macro named FindExecutable, which collides with

Add support for getting executable memory on Windows. This is actually
much easier than on unix. :) The only evil thing is that windows.h defines
a macro named FindExecutable, which collides with one of our names.

The JIT now runs on windows, but it cannot resolve external functions
(like printf) yet.

llvm-svn: 13871

show more ...


# d5435827 28-May-2004 Chris Lattner <sabre@nondot.org>

Add a new function for the JIT. libsupport is now the only library that
includes mman.h

llvm-svn: 13870


# 1760ccd7 27-May-2004 Chris Lattner <sabre@nondot.org>

Changes to make libSupport build on systems that don't have the wait syscall.

llvm-svn: 13806


# 82876bdb 16-Apr-2004 Chris Lattner <sabre@nondot.org>

Bugpoint was not correctly capturing stderr! This caused it to "find" bugs
that didn't exist, missing the ones that do :(

llvm-svn: 12978


123