Skip to content

Commit ccda5b6

Browse files
committedMar 24, 2022
Merge with jdk-19+15
2 parents 01f58a1 + 78ef2fd commit ccda5b6

File tree

710 files changed

+1663
-1144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

710 files changed

+1663
-1144
lines changed
 

‎doc/hotspot-style.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ <h3 id="rtti-runtime-type-information">RTTI (Runtime Type Information)</h3>
210210
<p>Rationale: Other than to implement exceptions (which HotSpot doesn't use), most potential uses of <a href="https://en.wikipedia.org/wiki/Run-time_type_information" title="Runtime Type Information">RTTI</a> are better done via virtual functions. Some of the remainder can be replaced by bespoke mechanisms. The cost of the additional runtime data structures needed to support <a href="https://en.wikipedia.org/wiki/Run-time_type_information" title="Runtime Type Information">RTTI</a> are deemed not worthwhile, given the alternatives.</p>
211211
<h3 id="memory-allocation">Memory Allocation</h3>
212212
<p>Do not use the standard global allocation and deallocation functions (operator new and related functions). Use of these functions by HotSpot code is disabled for some platforms.</p>
213-
<p>Rationale: HotSpot often uses &quot;resource&quot; or &quot;arena&quot; allocation. Even where heap allocation is used, the standard global functions are avoided in favor of wrappers around malloc and free that support the VM's Native Memory Tracking (NMT) feature.</p>
213+
<p>Rationale: HotSpot often uses &quot;resource&quot; or &quot;arena&quot; allocation. Even where heap allocation is used, the standard global functions are avoided in favor of wrappers around malloc and free that support the VM's Native Memory Tracking (NMT) feature. Typically, uses of the global operator new are inadvertent and therefore often associated with memory leaks.</p>
214214
<p>Native memory allocation failures are often treated as non-recoverable. The place where &quot;out of memory&quot; is (first) detected may be an innocent bystander, unrelated to the actual culprit.</p>
215215
<h3 id="class-inheritance">Class Inheritance</h3>
216216
<p>Use public single inheritance.</p>
@@ -270,8 +270,8 @@ <h3 id="enum">enum</h3>
270270
<p>The underlying type of a <em>scoped-enum</em> should also be specified explicitly if conversions may be applied to values of that type.</p>
271271
<p>Due to bugs in certain (very old) compilers, there is widespread use of enums and avoidance of in-class initialization of static integral constant members. Compilers having such bugs are no longer supported. Except where an enum is semantically appropriate, new code should use integral constants.</p>
272272
<h3 id="thread_local">thread_local</h3>
273-
<p>Do not use <code>thread_local</code> (<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2659.htm">n2659</a>); instead, use the HotSpot macro <code>THREAD_LOCAL</code>. The initializer must be a constant expression.</p>
274-
<p>As was discussed in the review for <a href="https://mail.openjdk.java.net/pipermail/hotspot-dev/2019-September/039487.html">JDK-8230877</a>, <code>thread_local</code> allows dynamic initialization and destruction semantics. However, that support requires a run-time penalty for references to non-function-local <code>thread_local</code> variables defined in a different translation unit, even if they don't need dynamic initialization. Dynamic initialization and destruction of namespace-scoped thread local variables also has the same ordering problems as for ordinary namespace-scoped variables.</p>
273+
<p>Avoid use of <code>thread_local</code> (<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2659.htm">n2659</a>); and instead, use the HotSpot macro <code>THREAD_LOCAL</code>, for which the initializer must be a constant expression. When <code>thread_local</code> must be used, use the Hotspot macro <code>APPROVED_CPP_THREAD_LOCAL</code> to indicate that the use has been given appropriate consideration.</p>
274+
<p>As was discussed in the review for <a href="https://mail.openjdk.java.net/pipermail/hotspot-dev/2019-September/039487.html">JDK-8230877</a>, <code>thread_local</code> allows dynamic initialization and destruction semantics. However, that support requires a run-time penalty for references to non-function-local <code>thread_local</code> variables defined in a different translation unit, even if they don't need dynamic initialization. Dynamic initialization and destruction of non-local <code>thread_local</code> variables also has the same ordering problems as for ordinary non-local variables. So we avoid use of <code>thread_local</code> in general, limiting its use to only those cases where dynamic initialization or destruction are essential. See <a href="https://bugs.openjdk.java.net/browse/JDK-8282469">JDK-8282469</a> for further discussion.</p>
275275
<h3 id="nullptr">nullptr</h3>
276276
<p>Prefer <code>nullptr</code> (<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2431.pdf">n2431</a>) to <code>NULL</code>. Don't use (constexpr or literal) 0 for pointers.</p>
277277
<p>For historical reasons there are widespread uses of both <code>NULL</code> and of integer 0 as a pointer value.</p>

‎doc/hotspot-style.md

+21-13
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,9 @@ code is disabled for some platforms.
471471
Rationale: HotSpot often uses "resource" or "arena" allocation. Even
472472
where heap allocation is used, the standard global functions are
473473
avoided in favor of wrappers around malloc and free that support the
474-
VM's Native Memory Tracking (NMT) feature.
474+
VM's Native Memory Tracking (NMT) feature. Typically, uses of the global
475+
operator new are inadvertent and therefore often associated with memory
476+
leaks.
475477

476478
Native memory allocation failures are often treated as non-recoverable.
477479
The place where "out of memory" is (first) detected may be an innocent
@@ -631,7 +633,7 @@ Here are a few closely related example bugs:<br>
631633
### enum
632634

633635
Where appropriate, _scoped-enums_ should be used.
634-
([n2347](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2347.pdf))
636+
([n2347](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2347.pdf))
635637

636638
Use of _unscoped-enums_ is permitted, though ordinary constants may be
637639
preferable when the automatic initializer feature isn't used.
@@ -651,10 +653,12 @@ integral constants.
651653

652654
### thread_local
653655

654-
Do not use `thread_local`
656+
Avoid use of `thread_local`
655657
([n2659](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2659.htm));
656-
instead, use the HotSpot macro `THREAD_LOCAL`. The initializer must
657-
be a constant expression.
658+
and instead, use the HotSpot macro `THREAD_LOCAL`, for which the initializer must
659+
be a constant expression. When `thread_local` must be used, use the Hotspot macro
660+
`APPROVED_CPP_THREAD_LOCAL` to indicate that the use has been given appropriate
661+
consideration.
658662

659663
As was discussed in the review for
660664
[JDK-8230877](https://mail.openjdk.java.net/pipermail/hotspot-dev/2019-September/039487.html),
@@ -663,14 +667,18 @@ semantics. However, that support requires a run-time penalty for
663667
references to non-function-local `thread_local` variables defined in a
664668
different translation unit, even if they don't need dynamic
665669
initialization. Dynamic initialization and destruction of
666-
namespace-scoped thread local variables also has the same ordering
667-
problems as for ordinary namespace-scoped variables.
670+
non-local `thread_local` variables also has the same ordering
671+
problems as for ordinary non-local variables. So we avoid use of
672+
`thread_local` in general, limiting its use to only those cases where dynamic
673+
initialization or destruction are essential. See
674+
[JDK-8282469](https://bugs.openjdk.java.net/browse/JDK-8282469)
675+
for further discussion.
668676

669677
### nullptr
670678

671679
Prefer `nullptr`
672680
([n2431](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2431.pdf))
673-
to `NULL`. Don't use (constexpr or literal) 0 for pointers.
681+
to `NULL`. Don't use (constexpr or literal) 0 for pointers.
674682

675683
For historical reasons there are widespread uses of both `NULL` and of
676684
integer 0 as a pointer value.
@@ -939,7 +947,7 @@ References:
939947
* Generalized lambda capture (init-capture) ([N3648])
940948
* Generic (polymorphic) lambda expressions ([N3649])
941949
942-
[n2657]: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm
950+
[n2657]: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm
943951
[n2927]: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2927.pdf
944952
[N3648]: https://isocpp.org/files/papers/N3648.html
945953
[N3649]: https://isocpp.org/files/papers/N3649.html
@@ -980,7 +988,7 @@ References from C++23
980988
### Additional Permitted Features
981989
982990
* `constexpr`
983-
([n2235](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2235.pdf))
991+
([n2235](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2235.pdf))
984992
([n3652](https://isocpp.org/files/papers/N3652.html))
985993
986994
* Sized deallocation
@@ -1087,14 +1095,14 @@ in HotSpot code because of the "no implicit boolean" guideline.)
10871095
10881096
* Avoid covariant return types.
10891097
1090-
* Avoid `goto` statements.
1098+
* Avoid `goto` statements.
10911099
10921100
### Undecided Features
10931101
10941102
This list is incomplete; it serves to explicitly call out some
10951103
features that have not yet been discussed.
10961104
1097-
* Trailing return type syntax for functions
1105+
* Trailing return type syntax for functions
10981106
([n2541](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2541.htm))
10991107
11001108
* Variable templates
@@ -1108,7 +1116,7 @@ features that have not yet been discussed.
11081116
11091117
* Rvalue references and move semantics
11101118
1111-
[ADL]: https://en.cppreference.com/w/cpp/language/adl
1119+
[ADL]: https://en.cppreference.com/w/cpp/language/adl
11121120
"Argument Dependent Lookup"
11131121
11141122
[ODR]: https://en.cppreference.com/w/cpp/language/definition

0 commit comments

Comments
 (0)
Please sign in to comment.