From b4c1e3074374ac045b8b6d66f99cb2b48b2f30c7 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 10:58:16 +0900 Subject: [PATCH 01/12] Make usage of run-time, compile-time, lifetime, real-time and hard-real-time consistent --- CppCoreGuidelines.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 21b514d..31b1d4c 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -269,7 +269,7 @@ Other rules articulate general principles. For these more general rules, more de These guidelines address the core of C++ and its use. We expect that most large organizations, specific application areas, and even large projects will need further rules, possibly further restrictions, and further library support. -For example, hard real-time programmers typically can't use free store (dynamic memory) freely and will be restricted in their choice of libraries. +For example, hard-real-time programmers typically can't use free store (dynamic memory) freely and will be restricted in their choice of libraries. We encourage the development of such more specific rules as addenda to these core guidelines. Build your ideal small foundation library and use that, rather than lowering your level of programming to glorified assembly code. @@ -714,7 +714,7 @@ Leaving hard-to-detect errors in a program is asking for crashes and bad results ##### Note -Ideally, we catch all errors (that are not errors in the programmer's logic) at either compile-time or run-time. It is impossible to catch all errors at compile time and often not affordable to catch all remaining errors at run-time. However, we should endeavor to write programs that in principle can be checked, given sufficient resources (analysis programs, run-time checks, machine resources, time). +Ideally, we catch all errors (that are not errors in the programmer's logic) at either compile time or run time. It is impossible to catch all errors at compile time and often not affordable to catch all remaining errors at run time. However, we should endeavor to write programs that in principle can be checked, given sufficient resources (analysis programs, run-time checks, machine resources, time). ##### Example, bad @@ -2548,7 +2548,7 @@ it just guarantees that the function can be evaluated at compile time for consta int m1 = min(-1, 2); // probably compile-time evaluation constexpr int m2 = min(-1, 2); // compile-time evaluation int m3 = min(-1, v); // run-time evaluation - constexpr int m4 = min(-1, v); // error: cannot evaluate at compile-time + constexpr int m4 = min(-1, v); // error: cannot evaluate at compile time } ##### Note @@ -2577,7 +2577,7 @@ Most computation is best done at run time. ##### Note -Any API that may eventually depend on high-level runtime configuration or +Any API that may eventually depend on high-level run-time configuration or business logic should not be made `constexpr`. Such customization can not be evaluated by the compiler, and any `constexpr` functions that depended upon that API would have to be refactored or drop `constexpr`. @@ -4321,7 +4321,7 @@ Concrete types can be stack allocated and be members of other classes. The use of indirection is fundamental for run-time polymorphic interfaces. The allocation/deallocation overhead is not (that's just the most common case). We can use a base class as the interface of a scoped object of a derived class. -This is done where dynamic allocation is prohibited (e.g. hard real-time) and to provide a stable interface to some kinds of plug-ins. +This is done where dynamic allocation is prohibited (e.g. hard-real-time) and to provide a stable interface to some kinds of plug-ins. ##### Enforcement @@ -7516,7 +7516,7 @@ Casting to a reference expresses that you intend to end up with a valid object, ##### Reason -The `dynamic_cast` conversion allows to test whether a pointer is pointing at a polymorphic object that has a given class in its hierarchy. Since failure to find the class merely returns a null value, it can be tested during run-time. This allows writing code that can choose alternative paths depending on the results. +The `dynamic_cast` conversion allows to test whether a pointer is pointing at a polymorphic object that has a given class in its hierarchy. Since failure to find the class merely returns a null value, it can be tested during run time. This allows writing code that can choose alternative paths depending on the results. Contrast with [C.147](#Rh-ptr-cast), where failure is an error, and should not be used for conditional execution. @@ -8787,7 +8787,7 @@ For example, if an `owner` is a member of a class, that class better have a ##### Example, bad -Returning a (raw) pointer imposes a life-time management uncertainty on the caller; that is, who deletes the pointed-to object? +Returning a (raw) pointer imposes a lifetime management uncertainty on the caller; that is, who deletes the pointed-to object? Gadget* make_gadget(int n) { @@ -8945,7 +8945,7 @@ In some implementations that `delete` and that `free()` might work, or maybe the ##### Exception There are applications and sections of code where exceptions are not acceptable. -Some of the best such examples are in life-critical hard real-time code. +Some of the best such examples are in life-critical hard-real-time code. Beware that many bans on exception use are based on superstition (bad) or by concerns for older code bases with unsystematic resource management (unfortunately, but sometimes necessary). In such cases, consider the `nothrow` versions of `new`. @@ -9552,7 +9552,7 @@ but don't hand-code a well-known algorithm: ##### Exception -Large parts of the standard library rely on dynamic allocation (free store). These parts, notably the containers but not the algorithms, are unsuitable for some hard-real time and embedded applications. In such cases, consider providing/using similar facilities, e.g., a standard-library-style container implemented using a pool allocator. +Large parts of the standard library rely on dynamic allocation (free store). These parts, notably the containers but not the algorithms, are unsuitable for some hard-real-time and embedded applications. In such cases, consider providing/using similar facilities, e.g., a standard-library-style container implemented using a pool allocator. ##### Enforcement @@ -10386,7 +10386,7 @@ Tricky. Using `std::unique_ptr` is the simplest way to avoid leaks. It is reliable, it makes the type system do much of the work to validate ownership safety, it -increases readability, and it has zero or near zero runtime cost. +increases readability, and it has zero or near zero run-time cost. ##### Example @@ -14612,7 +14612,7 @@ Don't use a `throw` as simply an alternative way of returning a value from a fun ##### Exception -Some systems, such as hard-real time systems require a guarantee that an action is taken in a (typically short) constant maximum time known before execution starts. Such systems can use exceptions only if there is tool support for accurately predicting the maximum time to recover from a `throw`. +Some systems, such as hard-real-time systems require a guarantee that an action is taken in a (typically short) constant maximum time known before execution starts. Such systems can use exceptions only if there is tool support for accurately predicting the maximum time to recover from a `throw`. **See also**: [RAII](#Re-raii) @@ -15178,7 +15178,7 @@ When used for exceptional circumstances in code that is not littered with pointe exception handling is almost always affordable (in time and space) and almost always leads to better code. This, of course, assumes a good implementation of the exception handling mechanisms, which is not available on all systems. There are also cases where the problems above do not apply, but exceptions cannot be used for other reasons. -Some hard real-time systems are an example: An operation has to be completed within a fixed time with an error or a correct answer. +Some hard-real-time systems are an example: An operation has to be completed within a fixed time with an error or a correct answer. In the absence of appropriate time estimation tools, this is hard to guarantee for exceptions. Such systems (e.g. flight control software) typically also ban the use of dynamic (heap) memory. @@ -19265,7 +19265,7 @@ However, we can briefly outline why we consider exceptions the best alternative and in the context of these guidelines. Simple arguments for and against are often inconclusive. There are specialized applications where exceptions indeed can be inappropriate -(e.g., hard-real time systems without support for reliable estimates of the cost of handling an exception). +(e.g., hard-real-time systems without support for reliable estimates of the cost of handling an exception). Consider the major objections to exceptions in turn @@ -19442,7 +19442,7 @@ Reference sections: * [JSF++: JOINT STRIKE FIGHTER AIR VEHICLE C++ CODING STANDARDS](http://www.stroustrup.com/JSF-AV-rules.pdf). Document Number 2RDU00001 Rev C. December 2005. For flight control software. - For hard real time. + For hard-real-time. This means that it is necessarily very restrictive ("if the program fails somebody dies"). For example, no free store allocation or deallocation may occur after the plane takes off (no memory overflow and no fragmentation allowed). No exception may be used (because there was no available tool for guaranteeing that an exception would be handled within a fixed short time). From d28a46983e6f4be301c7115fc7b14309dc68ca9d Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 10:58:29 +0900 Subject: [PATCH 02/12] Fix missing comma --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 31b1d4c..005751b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2006,7 +2006,7 @@ Grouping arguments into "bundles" is a general technique to reduce the number of Alternatively, we could use concepts (as defined by the ISO TS) to define the notion of three types that must be usable for merging: - Mergeable{In1 In2, Out} + Mergeable{In1, In2, Out} OutputIterator merge(In1 r1, In2 r2, Out result); ##### Example From f1971b14017d79d25351e75c0b8fe2e978a60b07 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 11:35:52 +0900 Subject: [PATCH 03/12] add nonwords to dict to remove spellchacker warning --- scripts/hunspell/isocpp.dic | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/hunspell/isocpp.dic b/scripts/hunspell/isocpp.dic index e808820..ff03769 100644 --- a/scripts/hunspell/isocpp.dic +++ b/scripts/hunspell/isocpp.dic @@ -103,6 +103,8 @@ CplusplusCS cpp cpp98 CppCon +cppcorecheck +cppcoreguidelines cppreference CRTP cst From 00f9e9ae50a1dd18d337eaa30942ec5e2bf9d3df Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 12:37:55 +0900 Subject: [PATCH 04/12] fix bad hyphen for standard-library as adjective --- CppCoreGuidelines.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 005751b..b5b5542 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3645,7 +3645,7 @@ We mention this only because of the persistence of this error in the community. The convention for operator overloads (especially on value types) is for `operator=(const T&)` to perform the assignment and then return (non-const) -`*this`. This ensures consistency with standard library types and follows the +`*this`. This ensures consistency with standard-library types and follows the principle of "do as the ints do." ##### Note @@ -5764,7 +5764,7 @@ After a copy `x` and `y` can be independent objects (value semantics, the way no ##### Note -Prefer copy semantics unless you are building a "smart pointer". Value semantics is the simplest to reason about and what the standard library facilities expect. +Prefer copy semantics unless you are building a "smart pointer". Value semantics is the simplest to reason about and what the standard-library facilities expect. ##### Enforcement @@ -5939,7 +5939,7 @@ There is no know general way of avoiding a `if (this == &a) return *this;` test ##### Note -The ISO standard guarantees only a "valid but unspecified" state for the standard library containers. Apparently this has not been a problem in about 10 years of experimental and production use. Please contact the editors if you find a counter example. The rule here is more caution and insists on complete safety. +The ISO standard guarantees only a "valid but unspecified" state for the standard-library containers. Apparently this has not been a problem in about 10 years of experimental and production use. Please contact the editors if you find a counter example. The rule here is more caution and insists on complete safety. ##### Example @@ -7833,7 +7833,7 @@ To find function objects and functions defined in a separate namespace to "custo ##### Example -Consider `swap`. It is a general (standard library) function with a definition that will work for just about any type. +Consider `swap`. It is a general (standard-library) function with a definition that will work for just about any type. However, it is desirable to define specific `swap()`s for specific types. For example, the general `swap()` will copy the elements of two `vector`s being swapped, whereas a good specific implementation will not copy elements at all. @@ -12866,7 +12866,7 @@ Getting good performance measurements can be hard and require specialized tools. ##### Note -A few simple microbenchmarks using Unix `time` or the standard library `` can help dispel the most obvious myths. +A few simple microbenchmarks using Unix `time` or the standard-library `` can help dispel the most obvious myths. If you can't measure your complete system accurately, at least try to measure a few of your key operations and algorithms. A profiler can help tell you which parts of your system are performance critical. Often, you will be surprised. @@ -14167,7 +14167,7 @@ Parallelism rule summary: ## CP.mess: Message passing -The standard-library facilities are quite low level, focused on the needs of close-to the hardware critical programming using `thread`s, `mutex`es, `atomic` types, etc. +The standard-library facilities are quite low-level, focused on the needs of close-to the hardware critical programming using `thread`s, `mutex`es, `atomic` types, etc. Most people shouldn't work at this level: it's error-prone and development is slow. If possible, use a higher level facility: messaging libraries, parallel algorithms, and vectorization. This section looks at passing messages so that a programmer doesn't have to do explicit synchronization. @@ -14845,7 +14845,7 @@ By declaring `compute` to be `noexcept`, we give the compiler and human readers ##### Note -Many standard library functions are `noexcept` including all the standard library functions "inherited" from the C standard library. +Many standard-library functions are `noexcept` including all the standard-library functions "inherited" from the C standard library. ##### Example @@ -15046,7 +15046,7 @@ Every example we have seen of this is error-prone, specialized, and often buggy. ##### Note -The standard library assumes that destructors, deallocation functions (e.g., `operator delete`), and `swap` do not throw. If they do, basic standard library invariants are broken. +The standard library assumes that destructors, deallocation functions (e.g., `operator delete`), and `swap` do not throw. If they do, basic standard-library invariants are broken. ##### Note @@ -16851,7 +16851,7 @@ This prints `T0` and `Bad`. Now the `==` in `Bad` was designed to cause trouble, but would you have spotted the problem in real code? The problem is that `v.size()` returns an `unsigned` integer so that a conversion is needed to call the local `==`; the `==` in `Bad` requires no conversions. -Realistic types, such as the standard library iterators can be made to exhibit similar anti-social tendencies. +Realistic types, such as the standard-library iterators can be made to exhibit similar anti-social tendencies. ##### Note @@ -18600,7 +18600,7 @@ If code is using an unmodified standard library, then there are still workaround ##### Enforcement -* Issue a diagnostic for any call to a standard library function that is not bounds-checked. +* Issue a diagnostic for any call to a standard-library function that is not bounds-checked. ??? insert link to a list of banned functions This rule is part of the [bounds profile](#SS-bounds). @@ -19680,7 +19680,7 @@ Bounds safety profile summary: [Pass pointers to single objects (only)](#Ri-array) and [Keep pointer arithmetic simple](#Res-simple). * Bounds.3: No array-to-pointer decay: [Pass pointers to single objects (only)](#Ri-array) and [Keep pointer arithmetic simple](#Res-simple). -* Bounds.4: Don't use standard library functions and types that are not bounds-checked: +* Bounds.4: Don't use standard-library functions and types that are not bounds-checked: [Use the standard library in a type-safe manner](#Rsl-bounds). ##### Impact @@ -20831,7 +20831,7 @@ Consider the following advice and requirements found in the C++ Standard: > If a destructor called during stack unwinding exits with an exception, terminate is called (15.5.1). So destructors should generally catch exceptions and not let them propagate out of the destructor. --[\[C++03\]](#C++03) §15.2(3) > -> No destructor operation defined in the C++ Standard Library (including the destructor of any type that is used to instantiate a standard library template) will throw an exception. --[\[C++03\]](#C++03) §17.4.4.8(3) +> No destructor operation defined in the C++ Standard Library (including the destructor of any type that is used to instantiate a standard-library template) will throw an exception. --[\[C++03\]](#C++03) §17.4.4.8(3) Deallocation functions, including specifically overloaded `operator delete` and `operator delete[]`, fall into the same category, because they too are used during cleanup in general, and during exception handling in particular, to back out of partial work that needs to be undone. Besides destructors and deallocation functions, common error-safety techniques rely also on `swap` operations never failing -- in this case, not because they are used to implement a guaranteed rollback, but because they are used to implement a guaranteed commit. For example, here is an idiomatic implementation of `operator=` for a type `T` that performs copy construction followed by a call to a no-fail `swap`: From 95b001c0d85c1781394e40aa4b00fdc478d590c7 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 12:32:53 +0900 Subject: [PATCH 05/12] fix hyphenation of open-source --- CppCoreGuidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b5b5542..e8f70fe 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9,7 +9,7 @@ Editors: * [Herb Sutter](http://herbsutter.com/) This document is a very early draft. It is inkorrekt, incompleat, and pµÃoorly formatted. -Had it been an open source (code) project, this would have been release 0.7. +Had it been an open-source (code) project, this would have been release 0.7. Copying, use, modification, and creation of derivative works from this project is licensed under an MIT-style license. Contributing to this project requires agreeing to a Contributor License. See the accompanying [LICENSE](LICENSE) file for details. We make this project available to "friendly users" to use, copy, modify, and derive from, hoping for constructive input. @@ -20446,7 +20446,7 @@ This section covers answers to frequently asked questions about these guidelines ### FAQ.1: What do these guidelines aim to achieve? -See the top of this page. This is an open source project to maintain modern authoritative guidelines for writing C++ code using the current C++ Standard (as of this writing, C++14). The guidelines are designed to be modern, machine-enforceable wherever possible, and open to contributions and forking so that organizations can easily incorporate them into their own corporate coding guidelines. +See the top of this page. This is an open-source project to maintain modern authoritative guidelines for writing C++ code using the current C++ Standard (as of this writing, C++14). The guidelines are designed to be modern, machine-enforceable wherever possible, and open to contributions and forking so that organizations can easily incorporate them into their own corporate coding guidelines. ### FAQ.2: When and where was this work first announced? @@ -20499,7 +20499,7 @@ The GSL is the small set of types and aliases specified in these guidelines. As ### FAQ.51: Is [github.com/Microsoft/GSL](https://github.com/Microsoft/GSL) the GSL? -No. That is just a first implementation contributed by Microsoft. Other implementations by other vendors are encouraged, as are forks of and contributions to that implementation. As of this writing one week into the public project, at least one GPLv3 open source implementation already exists. We plan to produce a WG21-style interface specification to ensure that different implementations agree. +No. That is just a first implementation contributed by Microsoft. Other implementations by other vendors are encouraged, as are forks of and contributions to that implementation. As of this writing one week into the public project, at least one GPLv3 open-source implementation already exists. We plan to produce a WG21-style interface specification to ensure that different implementations agree. ### FAQ.52: Why not supply an actual GSL implementation in/with these guidelines? From 9aa9e8fc9fa1a8734744f2f177cbb91742423bfa Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 12:32:34 +0900 Subject: [PATCH 06/12] fix hyphenation of ...-allocated adcjectives --- CppCoreGuidelines.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index e8f70fe..dffcd2c 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3333,7 +3333,7 @@ You need to pass a pointer rather than an object if what you are transferring is ##### Enforcement -(Simple) Warn if a function returns a locally-allocated raw pointer. Suggest using either `unique_ptr` or `shared_ptr` instead. +(Simple) Warn if a function returns a locally allocated raw pointer. Suggest using either `unique_ptr` or `shared_ptr` instead. ### F.27: Use a `shared_ptr` to share ownership @@ -4314,7 +4314,7 @@ That implies more memory overhead, more allocations and deallocations, and more ##### Note -Concrete types can be stack allocated and be members of other classes. +Concrete types can be stack-allocated and be members of other classes. ##### Note @@ -7563,7 +7563,7 @@ Avoid resource leaks. void use(int i) { auto p = new int {7}; // bad: initialize local pointers with new - auto q = make_unique(9); // ok: guarantee the release of the memory allocated for 9 + auto q = make_unique(9); // ok: guarantee the release of the memory-allocated for 9 if (0 < i) return; // maybe return and leak delete p; // too late } @@ -7593,7 +7593,7 @@ It also ensures exception safety in complex expressions. // 3. call bar, // 4. construct unique_ptr. // - // If bar throws, Foo will not be destroyed, and the memory allocated for it will leak. + // If bar throws, Foo will not be destroyed, and the memory-allocated for it will leak. f(unique_ptr(new Foo()), bar()); // Exception-safe: calls to functions are never interleaved. From d14067a5b45c847704e17291e801afef6de1f693 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 12:34:09 +0900 Subject: [PATCH 07/12] make 'error-prone' usage consistent --- CppCoreGuidelines.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index dffcd2c..bf94564 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -822,7 +822,7 @@ Avoid errors leading to (possibly unrecognized) wrong results. ##### Example - void increment1(int* p, int n) // bad: error prone + void increment1(int* p, int n) // bad: error-prone { for (int i = 0; i < n; ++i) ++p[i]; } @@ -5593,7 +5593,7 @@ The common action gets tedious to write and may accidentally not be common. ##### Reason -If you need those constructors for a derived class, re-implementing them is tedious and error prone. +If you need those constructors for a derived class, re-implementing them is tedious and error-prone. ##### Example @@ -9898,7 +9898,7 @@ Flag variable and constant declarations with multiple declarators (e.g., `int* p ##### Reason -* Simple repetition is tedious and error prone. +* Simple repetition is tedious and error-prone. * When you use `auto`, the name of the declared entity is in a fixed position in the declaration, increasing readability. * In a template function declaration the return type can be a member type. @@ -12890,7 +12890,7 @@ When did you even want to sort memory? Really, we sort sequences of elements, typically stored in containers. A call to `qsort` throws away much useful information (e.g., the element type), forces the user to repeat information already known (e.g., the element size), and forces the user to write extra code (e.g., a function to compare `double`s). -This implies added work for the programmer, is error prone, and deprives the compiler of information needed for optimization. +This implies added work for the programmer, is error-prone, and deprives the compiler of information needed for optimization. double data[100]; // ... fill a ... From 172520b570d22264471b5ef86e8f4883e8b52765 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 12:35:29 +0900 Subject: [PATCH 08/12] make 'reuse' vs. 're-use' spelling consistent --- CppCoreGuidelines.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index bf94564..1cbc4c8 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2363,7 +2363,7 @@ The shortest code is not always the best for performance or maintainability. Loop bodies, including lambdas used as loop bodies, rarely need to be named. However, large loop bodies (e.g., dozens of lines or dozens of pages) can be a problem. The rule [Keep functions short](#Rf-single) implies "Keep loop bodies short." -Similarly, lambdas used as callback arguments are sometimes non-trivial, yet unlikely to be re-usable. +Similarly, lambdas used as callback arguments are sometimes non-trivial, yet unlikely to be reusable. ##### Enforcement @@ -13172,7 +13172,7 @@ See also: ##### Reason It is hard to be certain that concurrency isn't used now or will be sometime in the future. -Code gets re-used. +Code gets reused. Libraries using threads may be used from some other part of the program. Note that this applies most urgently to library code and least urgently to stand-alone applications. However, thanks to the magic of cut-and-paste, code fragments can turn up in unexpected places. @@ -15821,7 +15821,7 @@ Generic programming is programming using types and algorithms parameterized by t ##### Reason -Generality. Re-use. Efficiency. Encourages consistent definition of user types. +Generality. Reuse. Efficiency. Encourages consistent definition of user types. ##### Example, bad @@ -15890,7 +15890,7 @@ If you use GCC 6.1, you can uncomment them. ##### Reason -Generality. Minimizing the amount of source code. Interoperability. Re-use. +Generality. Minimizing the amount of source code. Interoperability. Reuse. ##### Example From ba82be70bd5d694b4785f0b3f0827e28322a1b38 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 12:36:14 +0900 Subject: [PATCH 09/12] make 'side effect' vs. 'side-effect' spelling consistent --- CppCoreGuidelines.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 1cbc4c8..02e257b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2565,7 +2565,7 @@ it just guarantees that the function can be evaluated at compile time for consta This is usually a very good thing. When given a non-constant argument, a `constexpr` function can throw. -If you consider exiting by throwing a side-effect, a `constexpr` function isn't completely pure; +If you consider exiting by throwing a side effect, a `constexpr` function isn't completely pure; if not, this is not an issue. ??? A question for the committee: can a constructor for an exception thrown by a `constexpr` function modify state? "No" would be a nice answer that matches most practice. @@ -2751,7 +2751,7 @@ Pure functions are easier to reason about, sometimes easier to optimize (and eve `constexpr` functions are pure. When given a non-constant argument, a `constexpr` function can throw. -If you consider exiting by throwing a side-effect, a `constexpr` function isn't completely pure; +If you consider exiting by throwing a side effect, a `constexpr` function isn't completely pure; if not, this is not an issue. ??? A question for the committee: can a constructor for an exception thrown by a `constexpr` function modify state? "No" would be a nice answer that matches most practice. @@ -10746,7 +10746,7 @@ Readability. Error prevention. Efficiency. for (int i = 1; i < v.size(); ++i) // touches two elements: can't be a range-for cout << v[i] + v[i - 1] << '\n'; - for (int i = 0; i < v.size(); ++i) // possible side-effect: can't be a range-for + for (int i = 0; i < v.size(); ++i) // possible side effect: can't be a range-for cout << f(v, &v[i]) << '\n'; for (int i = 0; i < v.size(); ++i) { // body messes with loop variable: can't be a range-for @@ -10776,7 +10776,7 @@ Better still, if the loop variable isn't modified or copied: ##### Enforcement -Look at loops, if a traditional loop just looks at each element of a sequence, and there are no side-effects on what it does with the elements, rewrite the loop to a ranged-`for` loop. +Look at loops, if a traditional loop just looks at each element of a sequence, and there are no side effects on what it does with the elements, rewrite the loop to a ranged-`for` loop. ### ES.72: Prefer a `for`-statement to a `while`-statement when there is an obvious loop variable From 9159315d8c74a61c4f0d7de62fbd6c7b2769a97d Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 13:04:16 +0900 Subject: [PATCH 10/12] make non-`const` spelling consistent --- CppCoreGuidelines.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 02e257b..0f46b20 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3644,7 +3644,7 @@ We mention this only because of the persistence of this error in the community. ##### Reason The convention for operator overloads (especially on value types) is for -`operator=(const T&)` to perform the assignment and then return (non-const) +`operator=(const T&)` to perform the assignment and then return (non-`const`) `*this`. This ensures consistency with standard-library types and follows the principle of "do as the ints do." @@ -11179,7 +11179,7 @@ The loop control up front should enable correct reasoning about what is happenin ##### Enforcement -Flag variables that are potentially updated (have a non-const use) in both the loop control iteration-expression and the loop body. +Flag variables that are potentially updated (have a non-`const` use) in both the loop control iteration-expression and the loop body. ## ES.expr: Expressions @@ -15555,7 +15555,7 @@ Note that function parameter is a local variable so changes to it are local. ##### Enforcement -* Flag non-const variables that are not modified (except for parameters to avoid many false positives) +* Flag non-`const` variables that are not modified (except for parameters to avoid many false positives) ### Con.2: By default, make member functions `const` @@ -15579,7 +15579,7 @@ This gives a more precise statement of design intent, better readability, more e ##### Note -It is not inherently bad to pass a pointer or reference to non-const, +It is not inherently bad to pass a pointer or reference to non-`const`, but that should be done only when the called function is supposed to modify the object. A reader of code must assume that a function that takes a "plain" `T*` or `T&` will modify the object referred to. If it doesn't now, it might do so later without forcing recompilation. @@ -15650,7 +15650,7 @@ See also [Pimpl](#Ri-pimpl). ##### Note -It is not inherently bad to pass a pointer or reference to non-const, +It is not inherently bad to pass a pointer or reference to non-`const`, but that should be done only when the called function is supposed to modify the object. ##### Note @@ -21239,7 +21239,7 @@ More information on many topics about C++ can be found on the [Standard C++ Foun * *lifetime*: the time from the initialization of an object until it becomes unusable (goes out of scope, is deleted, or the program terminates). * *linker*: a program that combines object code files and libraries into an executable program. * *literal*: a notation that directly specifies a value, such as 12 specifying the integer value "twelve." -* *loop*: a piece of code executed repeatedly; in C++, typically a for-statement or a while-statement. +* *loop*: a piece of code executed repeatedly; in C++, typically a for-statement or a `while`-statement. * *move*: an operation that transfers a value from one object to another leaving behind a value representing "empty." See also copy. * *mutable*: changeable; the opposite of immutable, constant, and invariable. * *object*: (1) an initialized region of memory of a known type which holds a value of that type; (2) a region of memory. From 015ee8df10e060772b68ec88d954422291e8156e Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 12:51:25 +0900 Subject: [PATCH 11/12] make 'non-' prefix spelling consistent --- CppCoreGuidelines.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 0f46b20..20f2234 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7238,7 +7238,7 @@ Without a using declaration, member functions in the derived class hide the enti ##### Note -This issue affects both virtual and non-virtual member functions +This issue affects both virtual and nonvirtual member functions For variadic bases, C++17 introduced a variadic form of the using-declaration, @@ -7709,7 +7709,7 @@ Here, the conventional semantics is maintained: [Copies compare equal](#SS-copy) ##### Note -Non-member operators should be either friends or defined in [the same namespace as their operands](#Ro-namespace). +Nonmember operators should be either friends or defined in [the same namespace as their operands](#Ro-namespace). [Binary operators should treat their operands equivalently](#Ro-symmetric). ##### Enforcement @@ -7721,7 +7721,7 @@ Possibly impossible. ##### Reason If you use member functions, you need two. -Unless you use a non-member function for (say) `==`, `a == b` and `b == a` will be subtly different. +Unless you use a nonmember function for (say) `==`, `a == b` and `b == a` will be subtly different. ##### Example @@ -20923,7 +20923,7 @@ If you need to define any of these five functions, it means you need it to do mo * If you write/disable either of the copy constructor or the copy assignment operator, you probably need to do the same for the other: If one does "special" work, probably so should the other because the two functions should have similar effects. (See Item 53, which expands on this point in isolation.) * If you explicitly write the copying functions, you probably need to write the destructor: If the "special" work in the copy constructor is to allocate or duplicate some resource (e.g., memory, file, socket), you need to deallocate it in the destructor. -* If you explicitly write the destructor, you probably need to explicitly write or disable copying: If you have to write a nontrivial destructor, it's often because you need to manually release a resource that the object held. If so, it is likely that those resources require careful duplication, and then you need to pay attention to the way objects are copied and assigned, or disable copying completely. +* If you explicitly write the destructor, you probably need to explicitly write or disable copying: If you have to write a non-trivial destructor, it's often because you need to manually release a resource that the object held. If so, it is likely that those resources require careful duplication, and then you need to pay attention to the way objects are copied and assigned, or disable copying completely. In many cases, holding properly encapsulated resources using RAII "owning" objects can eliminate the need to write these operations yourself. (See Item 13.) From d13bfcda649a14c12368fa1d8bbab53d31a26503 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 13:13:52 +0900 Subject: [PATCH 12/12] Consistent hyphenation of ajectives like lock-free, well-defined, old-style,... --- CppCoreGuidelines.md | 28 ++++++++++++++-------------- scripts/hunspell/isocpp.dic | 11 +++++++++-- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 20f2234..e95b253 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1356,7 +1356,7 @@ For example: Now someone must `delete` that object in some suitably thread-safe way. That's error-prone, so we don't use that technique unless -* `myX` is in multithreaded code, +* `myX` is in multi-threaded code, * that `X` object needs to be destroyed (e.g., because it releases a resource), and * `X`'s destructor's code needs to be synchronized. @@ -2979,7 +2979,7 @@ If you have multiple values to return, [use a tuple](#Rf-out-multi) or similar m // OK: return pointers to elements with the value x vector find_all(const vector&, int x); - // Bad: place pointers to elements with value x in out + // Bad: place pointers to elements with value x in-out void find_all(const vector&, vector& out, int x); ##### Note @@ -5687,7 +5687,7 @@ But what if you can get significantly better performance by not making a tempora return *this; } -By writing directly to the target elements, we will get only [the basic guarantee](#???) rather than the strong guarantee offered by the `swap` technique. Beware of [self assignment](#Rc-copy-self). +By writing directly to the target elements, we will get only [the basic guarantee](#???) rather than the strong guarantee offered by the `swap` technique. Beware of [self-assignment](#Rc-copy-self). **Alternatives**: If you think you need a `virtual` assignment operator, and understand why that's deeply problematic, don't call it `operator=`. Make it a named function like `virtual void assign(const Foo&)`. See [copy constructor vs. `clone()`](#Rc-copy-virtual). @@ -11689,7 +11689,7 @@ Casts are widely (mis) used. Modern C++ has rules and constructs that eliminate * Use templates * Use `std::variant` -* Rely on the well defined, safe, implicit conversions between pointer types +* Rely on the well-defined, safe, implicit conversions between pointer types ##### Enforcement @@ -11927,7 +11927,7 @@ An alternative solution would to store a pointer to the `cache`: That solution is the most flexible, but requires explicit construction and destruction of `*cache` (most likely in the constructor and destructor of `X`). -In any variant, we must guard against data races on the `cache` in multithreaded code, possibly using a `std::mutex`. +In any variant, we must guard against data races on the `cache` in multi-threaded code, possibly using a `std::mutex`. ##### Enforcement @@ -12958,7 +12958,7 @@ Use libraries with good interfaces. If no library is available build one yourself and imitate the interface style from a good library. The [standard library](#S-stdlib) is a good first place to look for inspiration. * Isolation: -Isolate your code from messy and/or old style code by providing an interface of your choosing to it. +Isolate your code from messy and/or old-style code by providing an interface of your choosing to it. This is sometimes called "providing a wrapper" for the useful/necessary but messy code. Don't let bad designs "bleed into" your code. @@ -13042,7 +13042,7 @@ Maybe looking for `void*` function arguments will find examples of interfaces th ##### Reason -Type violations, weak types (e.g. `void*`s), and low level code (e.g., manipulation of sequences as individual bytes) make the job of the optimizer much harder. Simple code often optimizes better than hand-crafted complex code. +Type violations, weak types (e.g. `void*`s), and low-level code (e.g., manipulation of sequences as individual bytes) make the job of the optimizer much harder. Simple code often optimizes better than hand-crafted complex code. ??? @@ -14245,7 +14245,7 @@ Synchronization using `mutex`es and `condition_variable`s can be relatively expe Furthermore, it can lead to deadlock. For performance and to eliminate the possibility of deadlock, we sometimes have to use the tricky low-level "lock-free" facilities that rely on briefly gaining exclusive ("atomic") access to memory. -Lock free programming is also used to implement higher-level concurrency mechanisms, such as `thread`s and `mutex`es. +Lock-free programming is also used to implement higher-level concurrency mechanisms, such as `thread`s and `mutex`es. Lock-free programming rule summary: @@ -14254,7 +14254,7 @@ Lock-free programming rule summary: * [CP.102: Carefully study the literature](#Rconc-literature) * how/when to use atomics * avoid starvation -* use a lock free data structure rather than hand-crafting specific lock-free access +* use a lock-free data structure rather than hand-crafting specific lock-free access * [CP.110: Do not write your own double-checked locking for initialization](#Rconc-double) * [CP.111: Use a conventional pattern if you really need double-checked locking](#Rconc-double-pattern) * how/when to compare and swap @@ -15410,7 +15410,7 @@ A not uncommon technique is to gather cleanup at the end of the function to avoi The larger the function, the more tempting this technique becomes. `finally` can [ease the pain a bit](#Re-finally). -Also, the larger the program becomes the harder it is to apply an error-indicator-based error handling strategy systematically. +Also, the larger the program becomes the harder it is to apply an error-indicator-based error-handling strategy systematically. We [prefer exception-based error handling](#Re-throw) and recommend [keeping functions short](#Rf-single). @@ -16386,7 +16386,7 @@ Once language support is available, the `//` in front of the axiom can be remove ##### Note -The GSL concepts have well defined semantics; see the Palo Alto TR and the Ranges TS. +The GSL concepts have well-defined semantics; see the Palo Alto TR and the Ranges TS. ##### Exception (using TS concepts) @@ -18733,7 +18733,7 @@ those sequences are allocated and stored. ##### Note -`std::string_view` (C++17) is read only. +`std::string_view` (C++17) is read-only. ##### Enforcement @@ -18745,7 +18745,7 @@ those sequences are allocated and stored. Readability. Statement of intent. -A plain `char*` can be a pointer to a single character, a pointer to an array of characters, a pointer to a C-style (zero terminated) string, or even to a small integer. +A plain `char*` can be a pointer to a single character, a pointer to an array of characters, a pointer to a C-style (zero-terminated) string, or even to a small integer. Distinguishing these alternatives prevents misunderstandings and bugs. ##### Example @@ -18962,7 +18962,7 @@ If input isn't validated, every function must be written to cope with bad data ( complex z{ 3, 4 }; cout << z << '\n'; -`complex` is a user defined type and its I/O is defined without modifying the `iostream` library. +`complex` is a user-defined type and its I/O is defined without modifying the `iostream` library. ##### Example diff --git a/scripts/hunspell/isocpp.dic b/scripts/hunspell/isocpp.dic index ff03769..79348d8 100644 --- a/scripts/hunspell/isocpp.dic +++ b/scripts/hunspell/isocpp.dic @@ -83,6 +83,7 @@ Cline99 ClosePort cm3 CommonMark +*compiletime composability composable conceptsTS @@ -103,7 +104,7 @@ CplusplusCS cpp cpp98 CppCon -cppcorecheck +CppCoreCheck cppcoreguidelines cppreference CRTP @@ -267,6 +268,7 @@ Lakos96 Lavavej LCSD05 lifecycle +*life-time linearization llvm lockfree @@ -311,7 +313,7 @@ mnemonizes modify1 modify2 moredata -multithreaded +*multithreaded msgsl mtx Murray93 @@ -419,6 +421,7 @@ Rcon Rconc Rconst Rcpl +*realtime Rec2 refactor refactored @@ -436,6 +439,10 @@ reseating reseats resizable retryable +*re-use +*re-usable +*re-usability +*Re-usability reusability Reusability Ri