aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/System
AgeCommit message (Expand)Author
2009-11-25API change Path::isSpecialFile to Path::isRegularFile, improve semantics in r...Edward O'Callaghan
2009-11-24Fix comments as pre-post review for rev.89765.Edward O'Callaghan
2009-11-24Provide Path::isSpecialFile interface for PR5568.Edward O'Callaghan
2009-11-14Add llvm::sys::getHostCPUName, for detecting the LLVM name for the host CPU.Daniel Dunbar
2009-11-0780-col violation.Mikhail Glushenkov
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-10-11Fix typo.Nick Lewycky
2009-10-11Fix typo.Nick Lewycky
2009-09-22Revert "Get rid of GetProcessId in Win32/Program.inc.", this breaksDaniel Dunbar
2009-09-15Get rid of GetProcessId in Win32/Program.inc.Mikhail Glushenkov
2009-09-11Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn'tDan Gohman
2009-09-09Copy-pasto.Mikhail Glushenkov
2009-09-09Revert 81248 for now.Mikhail Glushenkov
2009-09-08Const-correctness.Mikhail Glushenkov
2009-09-08Since Program is basically a PID, it should be copyable.Mikhail Glushenkov
2009-09-08Get rid of the Pid_ member in the Program class.Mikhail Glushenkov
2009-09-08Add a Kill() function to the Program class.Mikhail Glushenkov
2009-09-06Tweak code into an equivalent form for which iccDuncan Sands
2009-08-23Prune #includes from llvm/Linker.h and llvm/System/Path.h,Chris Lattner
2009-08-12This void is implicit in C++.Dan Gohman
2009-08-11Revert 78662 to fix broken windows build. Add a comment which explains the pr...Benjamin Kramer
2009-08-11Remove an unnecessary mutable.Dan Gohman
2009-08-03Fix a race condition in getting the process exit code on Win32.Daniel Dunbar
2009-07-31Add a warning.Mikhail Glushenkov
2009-07-23Re-committing r76828 with the JIT memory manager changes now that the buildReid Kleckner
2009-07-23Reverting r76825 and r76828, since they caused clang runtime errors and some ...Reid Kleckner
2009-07-23Make the JIT code emitter properly retry and ask for more memory when it runsReid Kleckner
2009-07-18Add a Program::GetPid() method.Mikhail Glushenkov
2009-07-18Remove duplication in Program::Execute{And,No}Wait.Mikhail Glushenkov
2009-07-17Trailing whitespace.Mikhail Glushenkov
2009-07-15Add a raw_ostream operator<< to sys::Path.Dan Gohman
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