Revision tags: llvmorg-3.4.2, llvmorg-3.4.2-rc1, llvmorg-3.4.1, llvmorg-3.4.1-rc2, llvmorg-3.4.1-rc1 |
|
#
c10719f5 |
| 07-Apr-2014 |
Craig Topper <craig.topper@gmail.com> |
[C++11] Make use of 'nullptr' in the Support library.
llvm-svn: 205697
|
#
44ec0a7d |
| 06-Apr-2014 |
Argyrios Kyrtzidis <akyrtzi@gmail.com> |
[Support] Modify LockFileManager::waitForUnlock() to return info about how the lock was released.
llvm-svn: 205683
|
#
900e9a3d |
| 21-Mar-2014 |
Argyrios Kyrtzidis <akyrtzi@gmail.com> |
[Support] Follow up to r204426, for LockFileManager, make the given path absolute so relative paths are properly handled in both Windows and Unix.
llvm-svn: 204520
|
#
531a5be4 |
| 21-Mar-2014 |
Argyrios Kyrtzidis <akyrtzi@gmail.com> |
[Support] Make sure LockFileManager works correctly with relative paths.
llvm-svn: 204426
|
#
37575693 |
| 21-Mar-2014 |
Argyrios Kyrtzidis <akyrtzi@gmail.com> |
[Support] Make sure sys::fs::remove can remove symbolic links and make sure LockFileManager can handle a symbolic link that points nowhere.
llvm-svn: 204422
|
#
83f858e5 |
| 11-Mar-2014 |
Rafael Espindola <rafael.espindola@gmail.com> |
Cleanup the interface for creating soft or hard links.
Before this patch the unix code for creating hardlinks was unused. The code for creating symbolic links was implemented in lib/Support/LockFile
Cleanup the interface for creating soft or hard links.
Before this patch the unix code for creating hardlinks was unused. The code for creating symbolic links was implemented in lib/Support/LockFileManager.cpp and the code for creating hard links in lib/Support/*/Path.inc.
The only use we have for these is in LockFileManager.cpp and it can use both soft and hard links. Just have a create_link function that creates one or the other depending on the platform.
llvm-svn: 203596
show more ...
|
#
4147978c |
| 06-Mar-2014 |
Argyrios Kyrtzidis <akyrtzi@gmail.com> |
[Support/LockFileManager] Re-apply r203137 and r203138 but use symbolic links only on unix.
Reid Kleckner pointed out that we can't use symbolic links on Windows.
llvm-svn: 203162
|
#
4357f645 |
| 06-Mar-2014 |
Reid Kleckner <reid@kleckner.net> |
Revert create_symbolic_link and both depending changes
This reverts commits r203136, r203137, and r203138.
This code doesn't build on Windows. Even on Vista+, Windows requires elevated privileges
Revert create_symbolic_link and both depending changes
This reverts commits r203136, r203137, and r203138.
This code doesn't build on Windows. Even on Vista+, Windows requires elevated privileges to create a symlink. Therefore we can't use symlinks in the compiler. We'll have to find another approach.
llvm-svn: 203143
show more ...
|
#
62a979cc |
| 06-Mar-2014 |
Argyrios Kyrtzidis <akyrtzi@gmail.com> |
[Support/LockFileManager] Make the LockFileManager more robust against races.
There was a race where: - The LockFileManager tries to own the lock file and fails. - The other owner then releases and
[Support/LockFileManager] Make the LockFileManager more robust against races.
There was a race where: - The LockFileManager tries to own the lock file and fails. - The other owner then releases and removes the lock file. - The LockFileManager tries to read the owner info from the lock file but fails now.
In such a case have LockFileManager try to get ownership again, instead of error'ing out.
llvm-svn: 203138
show more ...
|
#
2eb8d026 |
| 06-Mar-2014 |
Argyrios Kyrtzidis <akyrtzi@gmail.com> |
[Support/LockFileManager] Use symbolic link for the lock file.
Hard links do not work on SMB network directories, and it causes us to fail to build clang module files if the module cache is in such
[Support/LockFileManager] Use symbolic link for the lock file.
Hard links do not work on SMB network directories, and it causes us to fail to build clang module files if the module cache is in such a directory. rdar://15944959
llvm-svn: 203137
show more ...
|
#
56440fd8 |
| 06-Mar-2014 |
Ahmed Charles <ahmedcharles@gmail.com> |
Replace OwningPtr<T> with std::unique_ptr<T>.
This compiles with no changes to clang/lld/lldb with MSVC and includes overloads to various functions which are used by those projects and llvm which ha
Replace OwningPtr<T> with std::unique_ptr<T>.
This compiles with no changes to clang/lld/lldb with MSVC and includes overloads to various functions which are used by those projects and llvm which have OwningPtr's as parameters. This should allow out of tree projects some time to move. There are also no changes to libs/Target, which should help out of tree targets have time to move, if necessary.
llvm-svn: 203083
show more ...
|
#
d6f1f84f |
| 02-Mar-2014 |
Benjamin Kramer <benny.kra@googlemail.com> |
[C++11] Replace llvm::tie with std::tie.
The old implementation is no longer needed in C++11.
llvm-svn: 202644
|
#
9e7a638b |
| 13-Feb-2014 |
Rafael Espindola <rafael.espindola@gmail.com> |
Use simpler version of sys::fs::exists when possible.
llvm-svn: 201289
|
#
81e7fd01 |
| 10-Jan-2014 |
Rafael Espindola <rafael.espindola@gmail.com> |
Use the simpler version of sys::fs::remove when possible.
llvm-svn: 198958
|
Revision tags: llvmorg-3.4.0, llvmorg-3.4.0-rc3, llvmorg-3.4.0-rc2, llvmorg-3.4.0-rc1 |
|
#
7de8ea3d |
| 07-Aug-2013 |
Reid Kleckner <reid@kleckner.net> |
Fix boolean logic in LockFileManager and test it
This fixes a bug from r187826.
Reviewers: hans
Differential Revision: http://llvm-reviews.chandlerc.com/D1304
llvm-svn: 187846
|
#
d78273f4 |
| 06-Aug-2013 |
Reid Kleckner <reid@kleckner.net> |
Remove some std stream usage from Support and TableGen
LLVM's coding standards recommend raw_ostream and MemoryBuffer for reading and writing text.
This has the side effect of allowing clang to com
Remove some std stream usage from Support and TableGen
LLVM's coding standards recommend raw_ostream and MemoryBuffer for reading and writing text.
This has the side effect of allowing clang to compile more of Support and TableGen in the Microsoft C++ ABI.
llvm-svn: 187826
show more ...
|
Revision tags: llvmorg-3.3.1-rc1 |
|
#
c9d2e5b8 |
| 05-Jul-2013 |
Rafael Espindola <rafael.espindola@gmail.com> |
Add a createUniqueFile function and switch llvm's users of unique_file.
This function is complementary to createTemporaryFile. It handles the case were the unique file is *not* temporary: we will re
Add a createUniqueFile function and switch llvm's users of unique_file.
This function is complementary to createTemporaryFile. It handles the case were the unique file is *not* temporary: we will rename it in the end. Since we will rename it, the file has to be in the same filesystem as the final destination and we don't prepend the system temporary directory.
This has a small semantic difference from unique_file: the default mode is 0666. This matches the behavior of most unix tools. For example, with this change lld now produces files with the same permissions as ld. I will add a test of this change when I port clang over to createUniqueFile (next commit).
llvm-svn: 185726
show more ...
|
Revision tags: llvmorg-3.3.0, llvmorg-3.3.0-rc3, llvmorg-3.3.0-rc2, llvmorg-3.3.0-rc1 |
|
#
0cb68460 |
| 05-Apr-2013 |
Douglas Gregor <dgregor@apple.com> |
<rdar://problem/13551789> Fix a race in the LockFileManager.
It's possible for the lock file to disappear and the owning process to return before we're able to see the generated file. Spin for a lit
<rdar://problem/13551789> Fix a race in the LockFileManager.
It's possible for the lock file to disappear and the owning process to return before we're able to see the generated file. Spin for a little while to see if it shows up before failing.
llvm-svn: 178909
show more ...
|
#
ef04593d |
| 21-Feb-2013 |
David Blaikie <dblaikie@gmail.com> |
Provide a "None" value for convenience when using Optional<T>()
This implementation of NoneType/None does have some holes but I haven't found one that doesn't - open to improvement.
llvm-svn: 175696
|
#
056eafd4 |
| 10-Jan-2013 |
Douglas Gregor <dgregor@apple.com> |
Fix a race condition in the lock-file manager: once the lock file is gone, check for the actual file we care about.
llvm-svn: 172033
|
Revision tags: llvmorg-3.2.0, llvmorg-3.2.0-rc3 |
|
#
ed0881b2 |
| 03-Dec-2012 |
Chandler Carruth <chandlerc@gmail.com> |
Use the new script to sort the includes of every file under lib.
Sooooo many of these had incorrect or strange main module includes. I have manually inspected all of these, and fixed the main module
Use the new script to sort the includes of every file under lib.
Sooooo many of these had incorrect or strange main module includes. I have manually inspected all of these, and fixed the main module include to be the nearest plausible thing I could find. If you own or care about any of these source files, I encourage you to take some time and check that these edits were sensible. I can't have broken anything (I strictly added headers, and reordered them, never removed), but they may not be the headers you'd really like to identify as containing the API being implemented.
Many forward declarations and missing includes were added to a header files to allow them to parse cleanly when included first. The main module rule does in fact have its merits. =]
llvm-svn: 169131
show more ...
|
Revision tags: llvmorg-3.2.0-rc2, llvmorg-3.2.0-rc1 |
|
#
c439a426 |
| 04-Sep-2012 |
Evgeniy Stepanov <eugeni.stepanov@gmail.com> |
Fix Android build of gtest and lib/Support.
llvm-svn: 163131
|
Revision tags: llvmorg-3.1.0, llvmorg-3.1.0-rc3, llvmorg-3.1.0-rc2, llvmorg-3.1.0-rc1 |
|
#
7039e358 |
| 29-Jan-2012 |
Douglas Gregor <dgregor@apple.com> |
Move Clang's file-level locking facility over to LLVM's support library, since it doesn't really have anything to do with Clang.
llvm-svn: 149203
|