| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove spurious semicolon. | Anton Korobeynikov | 2010-01-14 | 1 | -21/+21 |
* | Fix Win32 Path.inc for API update. | Daniel Dunbar | 2009-12-18 | 1 | -1/+1 |
* | Make Path use StringRef instead of std::string where possible. | Jeffrey Yasskin | 2009-12-17 | 1 | -15/+15 |
* | API change Path::isSpecialFile to Path::isRegularFile, improve semantics in r... | Edward O'Callaghan | 2009-11-25 | 1 | -2/+4 |
* | Provide Path::isSpecialFile interface for PR5568. | Edward O'Callaghan | 2009-11-24 | 1 | -0/+5 |
* | Path::createDirectoryOnDisk should ignore existing directories on win32 too. | Benjamin Kramer | 2009-11-05 | 1 | -2/+4 |
* | Move DataTypes.h to include/llvm/System, update all users. This breaks the last | Chandler Carruth | 2009-10-26 | 1 | -1/+1 |
* | ... missed hiding a variable for MSVC only. | Daniel Dunbar | 2009-09-22 | 1 | -0/+2 |
* | Hide MSVC specific CRT interaction behind _MSC_VER. | Daniel Dunbar | 2009-09-22 | 1 | -1/+7 |
* | Remove the GetProcessId() call from Win32/Program.inc, take 2. | Mikhail Glushenkov | 2009-09-22 | 1 | -9/+23 |
* | Add a magic LLVM_DISABLE_CRT_DEBUG environment variable which we check in Reg... | Daniel Dunbar | 2009-09-22 | 1 | -1/+39 |
* | Revert "Get rid of GetProcessId in Win32/Program.inc.", this breaks | Daniel Dunbar | 2009-09-22 | 1 | -17/+25 |
* | Get rid of GetProcessId in Win32/Program.inc. | Mikhail Glushenkov | 2009-09-15 | 1 | -25/+17 |
* | Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't | Dan Gohman | 2009-09-11 | 1 | -3/+7 |
* | Check that the 'kill' call succeeded. | Mikhail Glushenkov | 2009-09-09 | 1 | -1/+6 |
* | Const-correctness. | Mikhail Glushenkov | 2009-09-08 | 1 | -1/+1 |
* | Get rid of the Pid_ member in the Program class. | Mikhail Glushenkov | 2009-09-08 | 1 | -14/+18 |
* | Add a Kill() function to the Program class. | Mikhail Glushenkov | 2009-09-08 | 1 | -9/+20 |
* | Prune #includes from llvm/Linker.h and llvm/System/Path.h, | Chris Lattner | 2009-08-23 | 3 | -7/+6 |
* | improve win32 path support, patch by Baptiste Lepilleur! | Chris Lattner | 2009-08-12 | 1 | -1/+2 |
* | Fix a race condition in getting the process exit code on Win32. | Daniel Dunbar | 2009-08-03 | 1 | -5/+21 |
* | Empty arguments need to be quoted on Win32. | Daniel Dunbar | 2009-08-02 | 1 | -3/+9 |
* | Don't use llvm_report_error in libSystem, this is a layering violation. | Daniel Dunbar | 2009-07-26 | 1 | -2/+2 |
* | Re-committing r76828 with the JIT memory manager changes now that the build | Reid Kleckner | 2009-07-23 | 1 | -3/+4 |
* | Reverting r76825 and r76828, since they caused clang runtime errors and some ... | Reid Kleckner | 2009-07-23 | 1 | -4/+3 |
* | Make the JIT code emitter properly retry and ask for more memory when it runs | Reid Kleckner | 2009-07-23 | 1 | -3/+4 |
* | Remove duplication in Program::Execute{And,No}Wait. | Mikhail Glushenkov | 2009-07-18 | 1 | -189/+35 |
* | Use llvm_report_error, not llvm_unreachable. | Daniel Dunbar | 2009-07-12 | 1 | -2/+2 |
* | Improve sys::Path::makeAbsolute on Win32. | Daniel Dunbar | 2009-07-12 | 1 | -0/+23 |
* | eraseFromDisk no longer throws. | Chris Lattner | 2009-07-09 | 1 | -4/+1 |
* | Add an ExecuteNoWait interface to support asynchronous process spawning. | David Greene | 2009-07-08 | 1 | -0/+165 |
* | remove two methods that no longer exist. | Chris Lattner | 2009-07-08 | 1 | -24/+0 |
* | more getting windows to build. | Chris Lattner | 2009-07-08 | 1 | -14/+7 |
* | hopefully fix the build on windows. | Chris Lattner | 2009-07-08 | 1 | -0/+1 |
* | Fixed assert that checks return value of TlsSetValue. | Oscar Fuentes | 2009-06-30 | 1 | -1/+1 |
* | Fix error in the Win32 implementation pointed out by Howard Su. | Owen Anderson | 2009-06-26 | 1 | -1/+1 |
* | Add support for const thread locals. | Owen Anderson | 2009-06-25 | 1 | -2/+2 |
* | Add a class for supporting platform independent thread-local storage. | Owen Anderson | 2009-06-25 | 1 | -0/+49 |
* | Guard dynamic library loading. | Owen Anderson | 2009-06-25 | 1 | -4/+15 |
* | Give RWMutex the SmartRWMutex treatment too. | Owen Anderson | 2009-06-18 | 1 | -6/+6 |
* | Insert a SmartMutex templated class into the class hierarchy, which takes a t... | Owen Anderson | 2009-06-18 | 1 | -5/+5 |
* | Improve the Win32 reader-writer lock implementation by making it just a normal | Owen Anderson | 2009-06-17 | 1 | -6/+14 |
* | Accidentally broke this file. | Owen Anderson | 2009-06-16 | 1 | -1/+1 |
* | Remove the Win32 implementation, since it doesn't compile pre-Vista. | Owen Anderson | 2009-06-16 | 1 | -12/+7 |
* | Add a portable wrapper for reader-writer locks. | Owen Anderson | 2009-06-16 | 2 | -1/+56 |
* | "This patch implements the method with the GetModuleFileName function for win... | Chris Lattner | 2009-06-15 | 1 | -1/+3 |
* | add a new static method to portably determine whether a patch is | Chris Lattner | 2009-06-15 | 1 | -0/+14 |
* | Fix comments. | Torok Edwin | 2009-06-04 | 1 | -1/+2 |
* | Add support for outputting ANSI colors to raw_fd_ostream. | Torok Edwin | 2009-06-04 | 1 | -0/+66 |
* | Add terminal width detection to llvm::sys::Process. This is needed to | Douglas Gregor | 2009-05-11 | 1 | -0/+16 |