hanchenye-llvm-project/clang
Tim Northover 727e1c9be3 Support: add llvm::thread class that supports specifying stack size.
This adds a new llvm::thread class with the same interface as std::thread
except there is an extra constructor that allows us to set the new thread's
stack size. On Darwin even the default size is boosted to 8MB to match the main
thread.

It also switches all users of the older C-style `llvm_execute_on_thread` API
family over to `llvm::thread` followed by either a `detach` or `join` call and
removes the old API.
2021-07-08 14:51:53 +01:00
..
INPUTS
bindings
cmake [clang][Fuchsia] Remove relative-vtables multilibs 2021-06-30 11:21:37 -07:00
docs [dfsan][NFC] Add Origin Tracking into doc 2021-07-07 18:13:26 +00:00
examples
include [AIX] Don't pass no-integrated-as by default 2021-07-08 02:50:17 +00:00
lib [AIX] Don't pass no-integrated-as by default 2021-07-08 02:50:17 +00:00
runtime
test [AIX] Don't pass no-integrated-as by default 2021-07-08 02:50:17 +00:00
tools Support: add llvm::thread class that supports specifying stack size. 2021-07-08 14:51:53 +01:00
unittests [libTooling] Add support for implicit `this` to `buildAddressOf`. 2021-07-07 17:35:04 +00:00
utils [Clang][RISCV] Implement vlseg and vlsegff. 2021-07-07 13:44:40 +08:00
www Add papers adopted by the C++ committee in the June 2021 plenary 2021-06-28 13:45:12 -04:00
.clang-format
.clang-tidy
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
INSTALL.txt
LICENSE.TXT
ModuleInfo.txt
NOTES.txt
README.txt

README.txt

//===----------------------------------------------------------------------===//
// C Language Family Front-end
//===----------------------------------------------------------------------===//

Welcome to Clang.  This is a compiler front-end for the C family of languages
(C, C++, Objective-C, and Objective-C++) which is built as part of the LLVM
compiler infrastructure project.

Unlike many other compiler frontends, Clang is useful for a number of things
beyond just compiling code: we intend for Clang to be host to a number of
different source-level tools.  One example of this is the Clang Static Analyzer.

If you're interested in more (including how to build Clang) it is best to read
the relevant web sites.  Here are some pointers:

Information on Clang:             http://clang.llvm.org/
Building and using Clang:         http://clang.llvm.org/get_started.html
Clang Static Analyzer:            http://clang-analyzer.llvm.org/
Information on the LLVM project:  http://llvm.org/

If you have questions or comments about Clang, a great place to discuss them is
on the Clang development mailing list:
  http://lists.llvm.org/mailman/listinfo/cfe-dev

If you find a bug in Clang, please file it in the LLVM bug tracker:
  http://llvm.org/bugs/