Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace push_back with emplace_back where it makes sense | Mathias Baumann | 2018-12-11 | 1 | -1/+1 |
| | |||||
* | Introduce namespace `langutil` in liblangutil directory. | Christian Parpart | 2018-11-22 | 1 | -1/+1 |
| | | | | | | | Also: - Use {}-style list initialisation for SourceLocation construction - Introduce new system includes - Changes the API of the Scanner to take source as value (with move) as opposed to as a reference | ||||
* | Eliminate `byte`-typedef and use `uint8_t` in all their places instead. | Christian Parpart | 2018-11-07 | 1 | -3/+3 |
| | | | | | | | | | | | This change is made to (easily) be forward compatible with future C++ standards, in order to allow compiling the code with newer standards at some point in the future. * Removed the `using byte = uint8_t;` line from Common.h * Mechanically change all uses of `byte` to `uint8_t`. Tested with GCC 7.3 in C++11/14/17 modes :-) | ||||
* | Split simplification rules into two functions. | Daniel Kirchner | 2018-09-18 | 1 | -6/+15 |
| | |||||
* | Code, Changelog, ReleaseChecklist: Fix typos. | Cryptomental | 2018-07-11 | 1 | -1/+1 |
| | | | | Refs: #4442 | ||||
* | Turn simplification rule tuple into struct. | chriseth | 2018-02-07 | 1 | -6/+5 |
| | |||||
* | Add flag to indicate whether it can be applied to expressions with side-effects. | chriseth | 2018-02-07 | 1 | -5/+5 |
| | |||||
* | Move out the rule list. | chriseth | 2018-02-07 | 1 | -163/+3 |
| | |||||
* | Add simplification rule for SDIV(0,X) and SDIV(X,0) | Alex Beregszaszi | 2017-05-20 | 1 | -0/+2 |
| | |||||
* | Cleanup simplification rules | Alex Beregszaszi | 2017-05-20 | 1 | -8/+15 |
| | |||||
* | Fix match groups. | chriseth | 2017-01-13 | 1 | -0/+1 |
| | |||||
* | Fix debug output. | chriseth | 2017-01-13 | 1 | -2/+8 |
| | |||||
* | Optimise simplification rules (sort into bins). | chriseth | 2017-01-13 | 1 | -0/+363 |