Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-03-02 | Options cleanup | Boris Kolpackov | 2 | -8/+14 | |
2017-03-02 | Implement parallel match | Boris Kolpackov | 81 | -2138/+3761 | |
2017-03-01 | Add set builtin | Karen Arutyunov | 8 | -18/+579 | |
2017-02-21 | Add note on variable expansion and set builtin in testscript | Boris Kolpackov | 1 | -1/+9 | |
2017-02-17 | Add note on set being pseudo-builtin in testscript | Boris Kolpackov | 1 | -1/+5 | |
2017-02-16 | Add cp builtin | Karen Arutyunov | 5 | -15/+530 | |
2017-02-15 | Spec set testscript builtin | Boris Kolpackov | 1 | -2/+42 | |
2017-02-15 | Tighten doc/.gitignore | Karen Arutyunov | 1 | -1/+1 | |
2017-02-15 | Minor change in cp testscript builtin spec | Karen Arutyunov | 1 | -2/+3 | |
2017-02-15 | Re-spec cp testscript builtin | Boris Kolpackov | 1 | -32/+34 | |
2017-02-14 | Redo library meta-information protocol without match_only() | Boris Kolpackov | 6 | -100/+88 | |
2017-02-14 | Modify library mate-information protocol not to use lib{} group | Boris Kolpackov | 9 | -79/+48 | |
2017-02-14 | Initialize target::state_ | Boris Kolpackov | 1 | -1/+1 | |
We may need it even before recipe() resets it, for example, in mtime(). | |||||
2017-02-14 | Specify cp testscript builtin | Boris Kolpackov | 1 | -4/+71 | |
2017-02-13 | Make GCC 4.9, VC14 happy | Boris Kolpackov | 4 | -3/+15 | |
2017-02-13 | Cosmetic change | Boris Kolpackov | 1 | -1/+1 | |
2017-02-13 | Use variable_cache for target type/pattern-specific prepend/append | Boris Kolpackov | 9 | -134/+227 | |
2017-02-13 | Add MT-safe variable_cache, use for variable overrides | Boris Kolpackov | 9 | -69/+181 | |
2017-02-13 | Add scheduler::shard_size() helper function | Boris Kolpackov | 2 | -46/+61 | |
2017-02-13 | Some ground work for proper variable cache implementation | Boris Kolpackov | 2 | -27/+37 | |
2017-02-13 | Track variable value modifications | Boris Kolpackov | 6 | -19/+29 | |
2017-02-13 | Allow back overriding variables specified in buildfiles | Boris Kolpackov | 3 | -11/+22 | |
It is still not clear whether this is the right thing to allow, conceptually, but with this disallowed it's hard to test this functionality. Perhaps we should have an attribute [overridable]. The problem is one will also have to set this variable to some value (e.g., [null]) which is not exactly the same as undefined (especially when testing). | |||||
2017-02-13 | Cosmetic changes | Boris Kolpackov | 1 | -5/+5 | |
2017-02-13 | Implement parallel error propagation, keep_going mode | Boris Kolpackov | 26 | -201/+479 | |
Keep going is the default but there is now the -s|--serial-stop that makes the driver run serially and stop at first error. Also fix some lockups, other minor improvements/features. | |||||
2017-02-13 | Redo scheduler task flag as atomic counter | Boris Kolpackov | 3 | -53/+38 | |
Makes for simpler code and also seems to perform better. | |||||
2017-02-13 | Various scheduler fixes, enhancements, and tuning | Boris Kolpackov | 2 | -72/+117 | |
While the task_ flags logic is hairy, it seems to work. | |||||
2017-02-13 | Make scheduler::async() indicate whether the task executed synchronously | Boris Kolpackov | 2 | -5/+10 | |
2017-02-13 | Get rid of count_postponed | Boris Kolpackov | 5 | -70/+61 | |
Terget execution is postponed with regards to the current thread only thus it doesn't seem right to make postponed a target state. | |||||
2017-02-13 | Do some naming cleanups | Boris Kolpackov | 7 | -13/+25 | |
2017-02-13 | Tighten target constness further | Boris Kolpackov | 10 | -53/+43 | |
2017-02-13 | Implement parallel operation execution | Boris Kolpackov | 16 | -144/+363 | |
2017-02-13 | Use target:as<> instead of static_cast for target casting | Boris Kolpackov | 12 | -60/+67 | |
2017-02-13 | Tighten code that operates during both search/match and execute | Boris Kolpackov | 9 | -100/+215 | |
2017-02-13 | Pass const target& to recipes | Boris Kolpackov | 37 | -356/+465 | |
2017-02-13 | Use const scheduler task count where appropriate | Boris Kolpackov | 2 | -9/+9 | |
2017-02-13 | Introduce target::task_count | Boris Kolpackov | 9 | -136/+192 | |
2017-02-13 | Make scheduler::resume() call usable in serial execution | Boris Kolpackov | 1 | -0/+5 | |
2017-02-13 | Use less-than test for start count in scheduler | Boris Kolpackov | 2 | -6/+6 | |
2017-02-13 | Add support for passing alternative task start counts to scheduler | Boris Kolpackov | 3 | -18/+45 | |
2017-02-13 | Add support for waiting on other threads task counts in scheduler | Boris Kolpackov | 2 | -13/+34 | |
2017-02-13 | Implement target_set locking, including extension update | Boris Kolpackov | 14 | -78/+225 | |
2017-02-13 | Redesign target_set interface in preparation for locking | Boris Kolpackov | 6 | -43/+44 | |
2017-02-13 | Store extension in target map key rather than in target | Boris Kolpackov | 14 | -98/+110 | |
This is in preparation for locking its modification/access. | |||||
2017-02-13 | Fallback to normal mutex if shared_mutex not available | Boris Kolpackov | 1 | -6/+17 | |
As is the case on MacOS prior to 10.12. | |||||
2017-02-13 | Pass const scope& where modification should not happen | Boris Kolpackov | 41 | -219/+392 | |
2017-02-13 | Fix scheduler::tune() to wait for active threads coming off | Boris Kolpackov | 1 | -2/+9 | |
2017-02-13 | Redo variable pattern-typing to match in more specific order | Boris Kolpackov | 4 | -41/+123 | |
2017-02-13 | Add bin.vars module | Boris Kolpackov | 4 | -83/+111 | |
Use in cc to make sure hint variables are already registered. | |||||
2017-02-13 | Temporarily disable parallel search & match for multi-target builds | Boris Kolpackov | 1 | -0/+5 | |
2017-02-13 | Fix bug in scheduler::tune() | Boris Kolpackov | 1 | -1/+1 | |