aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/System
AgeCommit message (Expand)Author
2009-07-08Add an ExecuteNoWait interface to support asynchronous process spawning.David Greene
2009-07-07Have scoped mutexes take referenes instead of pointers.Owen Anderson
2009-07-07Eliminate the static constructors and locks from DynamicLibrary.cpp.Chris Lattner
2009-07-07remove dead code, noone creates instances of "DynamicLibrary", so the ctor an...Chris Lattner
2009-07-01Add a portable strerror*() wrapper, llvm::sys::StrError(). This includes theJeffrey Yasskin
2009-06-25Add support for const thread locals.Owen Anderson
2009-06-25Add a class for supporting platform independent thread-local storage.Owen Anderson
2009-06-23Add atomic multiply and divide operations, built on top of CompareAndSwap.Owen Anderson
2009-06-23Revert my last series of commits related to Timer and 64-bit atomics. Not al...Owen Anderson
2009-06-23Atomic ops that do arithmetic use signed arithmetic.Owen Anderson
2009-06-23Label the existing atomic functions as 32-bit specific, and add a 64-bit one ...Owen Anderson
2009-06-23Add an atomic add operation.Owen Anderson
2009-06-20Add debugging code to test for various locking faux-pas's, when running in si...Owen Anderson
2009-06-19Fix a major typo.Owen Anderson
2009-06-19Fix weird class-size-being-different problems. At some level this is being c...Owen Anderson
2009-06-18Add a SmartScopedLock, and use it to simplify code.Owen Anderson
2009-06-18Simplify the SmartMutex implementation a bit.Owen Anderson
2009-06-18Give RWMutex the SmartRWMutex treatment too.Owen Anderson
2009-06-18Insert a SmartMutex templated class into the class hierarchy, which takes a t...Owen Anderson
2009-06-18Move Threading.[h|cpp] from Support to System.Owen Anderson
2009-06-17Reapply r73647 in a non-broken form.Owen Anderson
2009-06-17Protect the GC table in Function.cppOwen Anderson
2009-06-17Add an RAII ScopedWriter, which allows one to acquire a writer lock for the d...Owen Anderson
2009-06-17Use atomic increment/decrement for reference counting of Type's.Owen Anderson
2009-06-17Add an atomic increment and decrement implementation, which will be used forOwen Anderson
2009-06-16Fix #include guards.Owen Anderson
2009-06-16Add a portable wrapper for reader-writer locks.Owen Anderson
2009-06-15add a new static method to portably determine whether a patch isChris Lattner
2009-06-04Fix comments.Torok Edwin
2009-06-04Add support for outputting ANSI colors to raw_fd_ostream.Torok Edwin
2009-05-30Untabify.Bill Wendling
2009-05-21Use DataTypes.h instead of stdint.h.Owen Anderson
2009-05-20Move atomic operations' definitions out of line. While this seems kind of si...Owen Anderson
2009-05-20Compile fix for MSVC.Owen Anderson
2009-05-20We need to include config.h here so that the #defines are set properly.Owen Anderson
2009-05-19Split the ENABLE_THREADS #define in two. Now ENABLE_THREADS indicates the ab...Owen Anderson
2009-05-19Make using an unsupported CAS size a hard error on Windows.Owen Anderson
2009-05-19Fix up the Windows portion of Atomic.h. This is untested, but it is my best ...Owen Anderson
2009-05-19Template CompareAndSwap function.Owen Anderson
2009-05-19Now that we have atomics support properly detected by configure,Owen Anderson
2009-05-17Significantly improve Atomic.h by pulling in code from libatomic_ops by HP. ...Owen Anderson
2009-05-16Remove the volatile marker from the cas_flag typedef, fixing some warnings. Owen Anderson
2009-05-15Unbreak mingw buildAnton Korobeynikov
2009-05-15Improve compatibility with older versions of Windows.Owen Anderson
2009-05-15(Hopefully) unbreak Apple-style builds.Owen Anderson
2009-05-15Don't #include OSAtomic.h unless we really need it.Owen Anderson
2009-05-15Now with working on Leopard!Owen Anderson
2009-05-14Dropped this #include by accident.Owen Anderson
2009-05-14Add CompareAndSwap.Owen Anderson
2009-05-14Add an Atomic.h to the System library, for providing a platform independent APIOwen Anderson