summaryrefslogtreecommitdiff
path: root/src/support/threads.h
Commit message (Collapse)AuthorAgeFilesLines
* Use C++17's [[maybe_unused]]. NFC (#5309)Sam Clegg2022-12-021-2/+2
|
* Add BYN_ENABLE_ASSERTSION option to allow assertions to be disabled. (#2500)Sam Clegg2019-12-041-0/+3
| | | | | | | | We always enable assertions by default, but this options allows for a build without them. Fix all errors in the ASSERTIONS=OFF build, even though we don't normally build this its good to keep it building.
* Apply format changes from #2048 (#2059)Alon Zakai2019-04-261-12/+7
| | | Mass change to apply clang-format to everything. We are applying this in a PR by me so the (git) blame is all mine ;) but @aheejin did all the work to get clang-format set up and all the manual work to tidy up some things to make the output nicer in #2048
* Simplify ThreadPool::isRunning (#1391)Alon Zakai2018-01-301-1/+1
| | | | | | * simplify ThreadPool::isRunning: it doesn't need to be static and to go through the global unique_ptr * it's undefined behavior to access the threadpool from a shutting down thread, as the parent is being destroyed
* ThreadPool refactoring (#1389)Alon Zakai2018-01-261-2/+12
| | | | | | | | Refactor ThreadPool code for clarity and to fix some bugs with using the pool from different threads in parallel. We have a singleton pool, and need to ensure it is created only once and used only by one thread at a time. This model is a simple way to ensure we use a number of threads equal to the number of cores, more or less (a pool per Module might lead to number of cores * number of Modules being optimized). This refactoring adds a parent pointer in the worker threads (giving them direct access to the pool makes it simpler to make sure that pool and thread creation and teardown are threadsafe). This commit also adds proper locking around pool creation and pool usage.
* Threading fixes (#1377)Alon Zakai2018-01-241-2/+1
| | | | | | * threading fixes, be careful when creating the pool (more than one thread may try to) and don't create it just to check if its running in the thread constructor assertions * child threads will call ::get() - don't do initialize() under the lock
* Fix build with gcc 7 (#957)Morris Hafner2017-03-291-0/+1
| | | | 1. Add a missing <functional> include 2. Put the // fallthrough comment after the closing bracket so the compiler does not emit a implicit fallthrough warning.
* ensure we create the OptimizeInstructions database on demand, avoiding ↵Alon Zakai2016-09-071-0/+18
| | | | global ctors
* refactor a getNumCores methodAlon Zakai2016-06-021-0/+3
|
* Function parallelism (#343)Alon Zakai2016-04-151-0/+107
* allow traversals to mark themselves as function-parallel, in which case we run them using a thread pool. also mark some thread-safety risks (interned strings, arena allocators) with assertions they modify only on the main thread