aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/System
AgeCommit message (Expand)Author
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
2009-05-11Add terminal width detection to llvm::sys::Process. This is needed toDouglas Gregor
2009-04-09Add sys::Path::makeAbsolute().Daniel Dunbar
2009-03-31Add llvm::sys::getHostTriple and removeDaniel Dunbar
2009-03-04Add a new 'AddSignalHandler' function to Signals.h that allowsChris Lattner
2009-03-03Fix a bunch of Doxygen syntax issues. Escape special characters,Dan Gohman
2009-02-0880-column violation.Mikhail Glushenkov
2009-02-08Add a Sleep() function.Mikhail Glushenkov
2009-02-06Make Mutex's constructor explicit, and tidy up whitespace.Dan Gohman
2009-01-22rename methods in System/Host to be more consistent.Chris Lattner
2008-10-20Update the stub and callback code to handle lazy compilation. The stubJim Grosbach
2008-10-03On Darwin ARM, memory needs special handling to do JIT. This patch expandsJim Grosbach
2008-10-02Add llvm::sys::{osName,osVersion} for retrieving operating system nameDaniel Dunbar
2008-09-18Preliminary support for systems which require changing JIT memory regions pri...Evan Cheng
2008-08-11add a helper method to sys::Path for clang, patch byChris Lattner
2008-06-25Add a new InvalidateInstructionCache method to sys::Memory.Chris Lattner
2008-06-24Add support for building on solaris, working around namespaceChris Lattner
2008-06-16Add comment.Matthijs Kooijman
2008-05-29Prune and tidy #includes.Dan Gohman
2008-05-21Follow-up to the reverting of r51218. This puts the checks out-of-line. BecauseBill Wendling