Compare commits

...

1181 Commits

Author SHA1 Message Date
Nikita Gubarkov
02d36310f5 Lower Spir-V target version to match Vulkan 1.2 2023-09-06 15:19:44 +02:00
Nikita Gubarkov
afdfd15c92 Make dynamic rendering optional. 2023-09-06 15:19:44 +02:00
Nikita Gubarkov
bd7e216e4f Lower Vulkan version to 1.2 and use dynamic rendering extension. 2023-09-06 15:19:44 +02:00
Nikita Gubarkov
5ac65d371f Make synchronization2 optional. 2023-09-06 15:19:43 +02:00
Nikita Gubarkov
001e63aa13 Separate method for attaching native surface data to Java object. 2023-09-06 15:19:43 +02:00
Nikita Gubarkov
86bb3a5441 Memory management via VMA, vertex buffer pool, shader push constants. 2023-09-06 15:19:43 +02:00
Nikita Gubarkov
85811e97dd Enable logicOp feature for XOR painting mode. 2023-09-06 15:19:43 +02:00
Nikita Gubarkov
4618419f78 Shader compilation, test pipeline.
Shaders are compiled with glslc or glslangValidator and bytecode is inlined directly into libawt_wlawt
2023-09-06 15:19:43 +02:00
Nikita Gubarkov
634910f86c Split command recording into primary and secondary command buffers.
This allows us to record commands "in the past", before current render pass started, which gives possibility for some heavy optimizations:
1. When we suddenly need some texture in the middle of the render pass - no need to stop render pass in order to insert necessary synchronization - we can do it as if we knew it beforehand.
2. When we draw something and then clear the surface - just erase all commands inside current render pass we recorded earlier, so the actual drawing will never happen.
2023-09-06 15:19:43 +02:00
Nikita Gubarkov
544a6771c6 Each device has a single timeline semaphore (basically 64-bit counter), monotonically increasing as device executes our commands, allowing us to track the state of the submitted batches and reuse resources which are no longer in use. 2023-09-06 15:19:43 +02:00
Nikita Gubarkov
a554ca9888 State management, synchronization & layout transition.
Now using dynamic render passes and synchronization2 from Vulkan 1.3
2023-09-06 15:19:43 +02:00
Nikita Gubarkov
71224a9c95 Refactored native surface data hierarchy.
There was a C-style "inheritance" model with VKSDOps having an SurfaceDataOps as its first member and conversions back and forth between them. And then also privOps - pointer to the platform-specific part (WLVK).

This was refactored into plain inheritance:
SurfaceDataOps -> VKSurfaceData -> VKSwapchainSurfaceData -> WLVKSurfaceData

Also replaced pthread mutexes with std::recursive_mutex to move this abstraction up the hierarchy.
2023-09-06 15:19:43 +02:00
Nikita Gubarkov
dc03522baa Moved platform-independent part of WLVKSurfaceData into VKSwapchainSurfaceData 2023-09-06 15:19:43 +02:00
Nikita Gubarkov
57d46f4f82 Make debug messenger part of graphics configuration 2023-09-06 15:19:43 +02:00
Nikita Gubarkov
0e7602d8e1 Report which device was created 2023-09-06 15:19:43 +02:00
Nikita Gubarkov
ebba8f1aba Fixed validation errors (only). Added basic synchronization.
Merged physical and logical device into single entity.
Other refactoring.
2023-09-06 15:19:42 +02:00
Nikita Gubarkov
aa1d84f9e1 Get rid of maxTextureSize in Vulkan code.
This concept was introduced to fix macOS-specific bugs and don't map well to Vulkan implementation, as this value is tied to specific device and texture format, so get rid of it for now and see whether we need it at all.
2023-09-06 15:19:42 +02:00
Alexey Ushakov
f5a72877ba JBR-6032 WLToolkit: Uninitialized WLComponentPeer sends paint requests
Protected surfaceAssigned from MT access
2023-09-06 12:47:38 +02:00
Alexey Ushakov
081bc495a1 JBR-6032 WLToolkit: Uninitialized WLComponentPeer sends paint requests
Skip sending paint events for not configured peers
2023-09-05 21:51:27 +02:00
Maxim Kartashev
56ce6657e8 JBR-5968 Wayland: support PERPIXEL_TRANSLUCENT 2023-09-05 12:11:27 +04:00
Vitaly Provodin
c7eaed89c2 JBR-6008 Update JetBrains Mono fonts to v2.304 2023-09-05 06:03:50 +07:00
Maxim Kartashev
07b83bad84 JBR-6002 Linux: maximized window goes fullscreen after being moved between monitors 2023-09-01 10:00:31 +04:00
Maxim Kartashev
703e87cc3a JBR-5971 JBR API hash update
Updated the JBR API hash because of changes in comments
in the WindowMove API.
2023-08-30 11:52:39 +04:00
Dmitrii Morskii
dabd52c312 JBR-5844: fix case with non-scalable face 2023-08-29 14:36:46 +02:00
Dmitrii Morskii
574c6d97e9 JBR-5804: refactoring of freetypeScaler and moving fontconfig's logic in separate file 2023-08-29 14:36:02 +02:00
Maxim Kartashev
8ff96bc79f JBR-5971 Wayland: support WindowMove JBR API 2023-08-29 10:48:18 +04:00
Vitaly Provodin
f600c73328 update exclude list on results of 21_b205.2 test runs 2023-08-25 17:33:22 +07:00
Nikita Tsarev
94d6344b43 JBR-5963: Fix RobotKeyboard test and implement getLockingKeyState 2023-08-24 20:06:00 +02:00
Maxim Kartashev
3834f6c24e JBR-5962 Wayland: fix the main event loop to allow for secondary queues
Return READ_RESULT_FINISHED_NO_EVENTS from WLToolkit.readEvents() in
case of poll returning with no new data (i.e. via timeout).
2023-08-23 15:32:12 +04:00
Sergei Tachenov
a4e4430a5a JBR-5824 Ensure popup menus are on the correct screen
This is a very old bug, JDK-6415065.

What happens here is that when the position
of a popup menu is calculated, it can expand
above or below, depending on the position
of the parent menu, the item being expanded
and the size of the submenu and screen resolution.

If the menu decides to expand above,
the position calculation in JMenu.getPopupMenuOrigin
may yield a coordinate above the current screen.
Later, JPopupMenu.adjustPopupLocationToFitScreen
tries to fit the entire menu into the screen.
However, it has no idea which screen is correct,
as all it has is an (x, y) location. If that
location is invalid, it may correct it by
fitting it into the screen. However, if it is
valid, but located on an incorrect screen,
then the whole logic goes awry and the menu
is fitted into the wrong screen.

Fix by pre-adjusting the Y location to fit
into the correct screen in JMenu.getPopupMenuOrigin,
where the correct screen is still known.
The resulting location may still not be final,
as the menu's height needs to be taken into
account as well, but that's exactly what
JPopupMenu.adjustPopupLocationToFitScreen does.
Since the coordinate is on the correct screen now,
it fits the menu into the same screen, which
guarantees it'll be the correct one.
2023-08-22 12:19:23 +04:00
Dmitry Batrak
f85dae83df JBR-5953 If hieroglyph typing isn't finalised, focusing another component inserts the composed text there
(cherry picked from commit ff8fa489f8e1e16cb055cc56f1b441018c2f495c)
2023-08-21 13:39:53 +03:00
Vitaly Provodin
6b64fe9b77 update exclude list on results of 21_b202.1 test runs 2023-08-18 05:07:02 +07:00
Nikita Tsarev
85fb38c9a9 Regenerate wakefield-client-protocol using an older wayland-scanner to temporarily fix build problems 2023-08-17 15:56:48 +02:00
Dmitry Batrak
bcd4b38663 JBR-5946 Allow to disable painting of composed text in Swing text components using TextLayout.draw
(cherry picked from commit 81d531fb9f7496498fcab1f0e76554885941f16c)
2023-08-16 15:27:02 +03:00
Nikita Tsarev
77bccaf640 JBR-5676: Support emulating input events in Wakefield 2023-08-15 12:37:27 +02:00
Vitaly Provodin
27bb9662b2 update exclude list on results of 21_b199.2 test runs 2023-08-12 06:58:24 +07:00
Daniel D. Daugherty
cd18df6c66 8314062: ProblemList jdk/jfr/tool/TestView.java on macosx-x64
Reviewed-by: naoto
2023-08-12 06:47:32 +07:00
Stefan Karlsson
0795b7e7e1 8311179: Generational ZGC: gc/z/TestSmallHeap.java failed with OutOfMemoryError
Reviewed-by: aboldtch, tschatzl
Backport-of: 28fd7a1739
2023-08-12 06:47:32 +07:00
Jim Laskey
04e3cc31e8 8313809: String template fails with java.lang.StringIndexOutOfBoundsException if last fragment is UTF16
Reviewed-by: redestad
Backport-of: 6864441163
2023-08-12 06:47:32 +07:00
Jim Laskey
82f1a2ce4a 8312814: Compiler crash when template processor type is a captured wildcard
Reviewed-by: jjg, vromero
Backport-of: f14245b388
2023-08-12 06:47:31 +07:00
Tobias Hartmann
64c0d8c181 8313345: SuperWord fails due to CMove without matching Bool pack
Reviewed-by: chagedorn
Backport-of: d3b578f1c9
2023-08-12 06:47:31 +07:00
Jesper Wilhelmsson
33e83936c6 8312985: Remove EA from the JDK 21 version string with first RC promotion on August 10, 2023
Reviewed-by: mikael
2023-08-12 06:47:31 +07:00
Stefan Karlsson
c702e89c52 8313593: Generational ZGC: NMT assert when the heap fails to expand
Reviewed-by: eosterlund
Backport-of: 19e2c8c321
2023-08-12 06:47:31 +07:00
Nikita Tsarev
7159ccf83c JBR-5900: Fix deadlock when enabling the Wakefield extension 2023-08-10 12:47:58 +02:00
Nikita Tsarev
7971b98a99 JBR-5896: Fix WLToolkit being instantiated twice 2023-08-10 12:46:09 +02:00
Dmitrii Morskii
8907bf5479 JBR-5724: fixed serialization and backward compatibility of Font 2023-08-08 13:28:41 +02:00
Dmitry Batrak
c7cd32a03d JBR-5823 IDEA crashes when '-Dmain.thread.as.edt=true' vmoption is set and VoiceOver is enabled
done as part of JBR-4993 Support using 'main' thread as EDT on macOS

(cherry picked from commit 55598693c3)
(cherry picked from commit 2d8d56b5d61bd219b084fc50faea738f625be922)
2023-08-04 10:52:54 +03:00
Justin Lu
6b7bbe79cb 8312572: JDK 21 RDP2 L10n resource files update
Reviewed-by: naoto, iris
Backport-of: 9b55e9a706
2023-08-04 10:27:06 +07:00
Matthias Baesken
43b4cd00e2 8312574: jdk/jdk/jfr/jvm/TestChunkIntegrity.java fails with timeout
Reviewed-by: clanger
Backport-of: 34173ff0d1
2023-08-04 10:27:06 +07:00
Christoph Langer
2506bc3cca 8309088: security/infra/java/security/cert/CertPathValidator/certification/AmazonCA.java fails
Reviewed-by: mbaesken
Backport-of: 4c2e54fb05
2023-08-04 10:27:05 +07:00
Christoph Langer
12378c2123 8311822: AIX : test/jdk/java/foreign/TestLayouts.java fails because of different output - expected [[i4](struct)] but found [[I4](struct)]
Reviewed-by: mbaesken
Backport-of: d1cc278260
2023-08-04 10:27:05 +07:00
Christoph Langer
eb483848b6 8303549: [AIX] TestNativeStack.java is failing with exit value 1
Reviewed-by: mbaesken
Backport-of: 5ff42d1429
2023-08-04 10:27:05 +07:00
Jorn Vernee
7219fde797 8313023: Return value corrupted when using CCS + isTrivial (mainline)
Reviewed-by: thartmann, mcimadamore
Backport-of: 6fca289887
2023-08-04 10:27:04 +07:00
Christoph Langer
ea2647d428 8313256: Exclude failing multicast tests on AIX
Reviewed-by: mbaesken
Backport-of: 98a915a54c
2023-08-04 10:27:04 +07:00
Christoph Langer
46f0a568e1 8313404: Fix section label in test/jdk/ProblemList.txt
Reviewed-by: mbaesken
Backport-of: 94b50b714a
2023-08-04 10:27:04 +07:00
Justin Lu
b19d723ace 8039165: [Doc] MessageFormat null locale generates NullPointerException
Reviewed-by: naoto, iris
Backport-of: c6396dceb9
2023-08-04 10:27:04 +07:00
Roger Riggs
46270d5867 8310033: Clarify return value of Java Time compareTo methods
Reviewed-by: naoto
Backport-of: 8650026ff1
2023-08-04 10:27:04 +07:00
Christoph Langer
4e12f81c86 8313316: Disable runtime/ErrorHandling/MachCodeFramesInErrorFile.java on ppc64le
Reviewed-by: mbaesken
Backport-of: 807ca2d3a1
2023-08-04 10:27:03 +07:00
David Holmes
fba7b16b07 8300937: Update nroff pages in JDK 21 before RC
Reviewed-by: mchung, iris, egahlin
2023-08-04 10:27:03 +07:00
Dmitrii Morskii
81e97c5f8a JBR-5259: fixed Canvas mispositioning after dragging JFrame to a monitor with different scale 2023-07-31 16:18:04 +02:00
Sergey Bylokhov
e71048d298 8313260: JDK21: ProblemList java/lang/ScopedValue/StressStackOverflow.java on linux-x86
Reviewed-by: clanger
2023-07-31 12:16:48 +07:00
Tobias Hartmann
11ca5e8d6d 8313241: Temporarily disable "malformed control flow" assert to reduce noise
Reviewed-by: chagedorn, kvn, dcubed
2023-07-31 12:16:48 +07:00
Christoph Langer
52fd37a490 8313250: Exclude java/foreign/TestByteBuffer.java on AIX
Reviewed-by: rriggs
Backport-of: c05ba48b60
2023-07-31 12:16:48 +07:00
Markus Grönlund
84e548697f 8312293: SIGSEGV in jfr.internal.event.EventWriter.putUncheckedByte after JDK-8312086
Reviewed-by: egahlin
Backport-of: 59f66a3b83
2023-07-31 12:16:47 +07:00
Daniel D. Daugherty
f058b31cf8 8313208: ProblemList java/util/concurrent/tck/JSR166TestCase.java on select platforms
Reviewed-by: darcy
2023-07-31 12:16:47 +07:00
Daniel D. Daugherty
302f9d6e63 8313193: ProblemList java/util/concurrent/SynchronousQueue/Fairness.java on X64
Reviewed-by: rriggs
2023-07-31 12:16:47 +07:00
Serguei Spitsyn
c72add02ac 8300051: assert(JvmtiEnvBase::environments_might_exist()) failed: to enter event controller, JVM TI environments must exist
Reviewed-by: cjplummer
Backport-of: 783de32b6a
2023-07-31 12:16:47 +07:00
Daniel Jeliński
6517cc564e 8307185: pkcs11 native libraries make JNI calls into java code while holding GC lock
Reviewed-by: alanb
Backport-of: 354c6605e3
2023-07-31 12:16:46 +07:00
Vitaly Provodin
fd1cc0b6a5 update exclude list on results of 21_b195.1 test runs 2023-07-31 12:14:36 +07:00
Valerie Peng
4d790c2be4 8311902: Concurrency regression in the PBKDF2 key impl of SunJCE provider
Reviewed-by: mullan, ascarpino, xuelei
Backport-of: 28c4d196cf
2023-07-22 05:17:34 +07:00
Chris Plummer
23234a83b6 8310551: vmTestbase/nsk/jdb/interrupt/interrupt001/interrupt001.java timed out due to missing prompt
Reviewed-by: sspitsyn
Backport-of: c84866ac0d
2023-07-22 05:17:34 +07:00
Jan Lahoda
b1fac6f358 8311815: Incorrect exhaustivity computation
Reviewed-by: vromero
Backport-of: a4412166ec
2023-07-22 05:17:34 +07:00
Aggelos Biboudis
1d9dde2a3c 8312163: Crash in dominance check when compiling unnamed patterns
Reviewed-by: jlahoda
Backport-of: 1fc726a8b3
2023-07-22 05:17:33 +07:00
Christian Hagedorn
1ccadbd336 8308682: Enhance AES performance
Reviewed-by: rhalade, dlong, kvn
2023-07-22 05:17:33 +07:00
Jan Lahoda
87aa435e4d 8303376: Better launching of JDI
Reviewed-by: mschoene, rhalade, vromero
2023-07-22 05:17:33 +07:00
Calvin Cheung
3351ece9ac 8296565: Enhanced archival support
Reviewed-by: rhalade, iklam
2023-07-22 05:17:33 +07:00
Brian Burkhalter
076cfd1f77 8305312: Enhanced path handling
Reviewed-by: rhalade, alanb
2023-07-22 05:17:32 +07:00
Ioi Lam
40206536c7 8294323: Improve Shared Class Data
Co-authored-by: Calvin Cheung <ccheung@openjdk.org>
Reviewed-by: coleenp, rhalade
2023-07-22 05:17:32 +07:00
Hai-May Chao
0c743f785d 8300596: Enhance Jar Signature validation
Reviewed-by: mullan, rhalade, mschoene, weijun
2023-07-22 05:17:32 +07:00
Lance Andersen
bc11ed4114 8302483: Enhance ZIP performance
Reviewed-by: ahgross, alanb, rhalade, coffeys
2023-07-22 05:17:32 +07:00
Michael McMahon
c620b0ce4a 8302475: Enhance HTTP client file downloading
Reviewed-by: dfuchs, rhalade
2023-07-22 05:17:31 +07:00
Tobias Hartmann
864686aa78 8304460: Improve array usages
Reviewed-by: iveresov, rhalade, chagedorn
2023-07-22 05:17:31 +07:00
Tobias Hartmann
16bf733fc8 8304468: Better array usages
Reviewed-by: iveresov, rhalade, chagedorn
2023-07-22 05:17:31 +07:00
Jamil Nimeh
96854ead11 8300285: Enhance TLS data handling
Reviewed-by: ahgross, ascarpino, rhalade
2023-07-22 05:17:31 +07:00
Serguei Spitsyn
7ab527590a 8312189: ProblemList serviceability/jvmti/vthread/VThreadTLSTest/VThreadTLSTest.java#id1
Reviewed-by: amenkov
Backport-of: 3236ba0be4
2023-07-22 05:17:30 +07:00
Serguei Spitsyn
861b95bf9d 8311556: GetThreadLocalStorage not working for vthreads mounted during JVMTI attach
Reviewed-by: amenkov
Backport-of: 11a5115caf
2023-07-22 05:17:30 +07:00
Markus Grönlund
8023b5101c 8311040: JFR: RecordedThread::getOSThreadId() should return -1 if thread is virtual
Reviewed-by: egahlin
Backport-of: 9905f75822
2023-07-22 05:17:30 +07:00
Jan Lahoda
7f40dd0b44 8311038: Incorrect exhaustivity computation
Reviewed-by: vromero
Backport-of: bbb7ce5137
2023-07-22 05:17:30 +07:00
Mandy Chung
d551c2c7ee 8310814: Clarify the targetName parameter of Lookup::findClass
Reviewed-by: darcy
Backport-of: b4dce0d624
2023-07-22 05:17:29 +07:00
Joakim Nordström
0c4c702c27 8307526: [JFR] Better handling of tampered JFR repository
Reviewed-by: mgronlun
Backport-of: 66d2736521
2023-07-22 05:17:29 +07:00
Jan Lahoda
8182a51a93 8311825: Duplicate qualified enum constants not detected
Reviewed-by: vromero
Backport-of: d1fa1a8686
2023-07-22 05:17:29 +07:00
Jan Lahoda
f825086114 8312093: Incorrect javadoc comment text
Reviewed-by: jlaskey, iris
Backport-of: 1c9691b1f7
2023-07-22 05:17:29 +07:00
Jim Laskey
c9bd5f53fb 8312098: Update man page for javadoc
Reviewed-by: darcy
2023-07-22 05:17:28 +07:00
Aleksey Shipilev
8c6bdeee6d 8311647: Memory leak in Java_jdk_internal_org_jline_terminal_impl_jna_linux_CLibraryImpl_ttyname_1r
Reviewed-by: rriggs
Backport-of: 43099a85b1
2023-07-22 05:17:28 +07:00
Markus Grönlund
139beb92aa 8303134: JFR: Missing stack trace during chunk rotation stress
Reviewed-by: egahlin
Backport-of: 7539cc092d
2023-07-22 05:17:28 +07:00
Vitaly Provodin
dfcb233c88 update exclude list on results of 21_b190.1 test runs 2023-07-22 05:16:24 +07:00
Maxim Kartashev
fc7e7f0725 JBR-5861 Wayland: minimum necessary stubs to run IDEA 2023-07-21 17:15:58 +04:00
Markus Grönlund
706e410826 8244289: fatal error: Possible safepoint reached by thread that does not allow it
Reviewed-by: egahlin
Backport-of: 61932f49a5
2023-07-14 19:40:06 +07:00
Alan Bateman
728fde56c3 8311867: StructuredTaskScope.shutdown does not interrupt newly started threads
Reviewed-by: jpai
Backport-of: 92a04e201e
2023-07-14 19:40:06 +07:00
Justin Lu
6519ab02b2 6960866: [Fmt-Ch] ChoiceFormat claims impossible and unimplemented functionality
Reviewed-by: naoto, lancea, iris
Backport-of: 6cb9ec32a6
2023-07-14 19:40:05 +07:00
Stuart Marks
7ccfa3ca9c 8306785: fix deficient spliterators for Sequenced Collections
Reviewed-by: rriggs
Backport-of: 743e8b8e0a
2023-07-14 19:40:05 +07:00
Erik Gahlin
bd472d7169 8294401: Update jfr man page to include recently added features
Reviewed-by: mgronlun
Backport-of: f60c1f9bc4
2023-07-14 19:40:05 +07:00
Markus Grönlund
1a7156370e 8311536: JFR TestNativeMemoryUsageEvents fails in huge pages configuration
Reviewed-by: egahlin
Backport-of: 6895debf66
2023-07-14 19:40:04 +07:00
Aleksey Shipilev
15e83af59e 8311645: Memory leak in jspawnhelper spawnChild after JDK-8307990
Reviewed-by: alanb
Backport-of: 401c3dea5d
2023-07-14 19:40:04 +07:00
Vladimir Petko
d2a9b2c5b9 8311092: Please disable runtime/jni/nativeStack/TestNativeStack.java on armhf
Reviewed-by: dholmes
Backport-of: 0916e6a603
2023-07-14 19:40:04 +07:00
Tobias Hartmann
4e5e35a1e3 8303279: C2: crash in SubTypeCheckNode::sub() at IGVN split if
Reviewed-by: chagedorn
Backport-of: caadad4fdc
2023-07-14 19:40:03 +07:00
Robbin Ehn
2b30ddf722 8310656: RISC-V: __builtin___clear_cache can fail silently.
Reviewed-by: luhenry, fyang
Backport-of: faf1b822d0
2023-07-14 19:40:03 +07:00
Stuart Marks
c8230b05b7 8308694: Clarify reversed() default methods' implementation requirements
Reviewed-by: naoto, bpb
Backport-of: f82c8184b2
2023-07-14 19:40:03 +07:00
Rajan Halade
93aa8f21cf 8156889: ListKeychainStore.sh fails in some virtualized environments
Reviewed-by: mullan
Backport-of: 119cc495fc
2023-07-14 19:40:03 +07:00
Rajan Halade
77262d47c4 8295894: Remove SECOM certificate that is expiring in September 2023
Reviewed-by: mullan
Backport-of: fd7fddb6ed
2023-07-14 19:40:02 +07:00
Patricio Chilano Mateo
4cb3d4858b 8309637: runtime/handshake/HandshakeTimeoutTest.java fails with "has not cleared handshake op" and SIGILL
Reviewed-by: coleenp
Backport-of: 57e7e82fa1
2023-07-14 19:40:02 +07:00
Alan Bateman
31ee3ceb12 8310892: ScopedValue throwing StructureViolationException should be clearer
Reviewed-by: darcy, iris, lancea
Backport-of: 623cfcd04b
2023-07-14 19:40:02 +07:00
Maurizio Cimadamore
0ecca996a0 8311593: Minor doc issue in MemorySegment::copy
Reviewed-by: jvernee
Backport-of: 6569b252b9
2023-07-14 19:40:02 +07:00
Alexey Ivanov
c1172de798 8311689: Wrong visible amount in Adjustable of ScrollPane
Reviewed-by: honkar, azvegint, prr
Backport-of: b3f34039fe
2023-07-14 19:40:01 +07:00
Patricio Chilano Mateo
bc8b3fb572 8302351: "assert(!JavaThread::current()->is_interp_only_mode() || !nm->method()->is_continuation_enter_intrinsic() || ContinuationEntry::is_interpreted_call(return_pc)) failed: interp_only_mode but not in enterSpecial interpreted entry" in fixup_callers_callsite
Reviewed-by: coleenp
Backport-of: 0c86c31bcc
2023-07-14 19:40:01 +07:00
Erik Gahlin
6be2cd7480 8311245: JFR: Remove t.printStackTrace() in PeriodicEvents
Reviewed-by: mgronlun
Backport-of: a1cfc96954
2023-07-14 19:40:01 +07:00
Hao Sun
9ff86192c4 8311548: AArch64: [ZGC] Many tests fail with "assert(allocates2(pc)) failed: not in CodeBuffer memory" on some CPUs
Reviewed-by: tschatzl
Backport-of: 4b1403d06b
2023-07-14 19:40:01 +07:00
Erik Joelsson
8081944830 8308585: AC_REQUIRE: `PLATFORM_EXTRACT_TARGET_AND_BUILD' was expanded before it was required
Reviewed-by: mikael
Backport-of: 554b4d7243
2023-07-14 19:40:00 +07:00
Zhengyu Gu
5dad107712 8309761: Leak class loader constraints
Reviewed-by: coleenp
Backport-of: 8e4e6b056c
2023-07-14 19:40:00 +07:00
Naoto Sato
31d1ffbf21 8311183: Remove unused mapping test files
Reviewed-by: lancea
Backport-of: d072c40ff1
2023-07-14 19:40:00 +07:00
Thomas Stuefe
8de2ce735a 8310265: (process) jspawnhelper should not use argv[0]
Reviewed-by: rriggs
Backport-of: 47d00a4cbe
2023-07-14 19:39:59 +07:00
Maxim Kartashev
8d90bd6d5d JBR-5815 javax/swing/AbstractButton/6711682/bug6711682.java: Row #2 checkbox is not selected
Fixed the test to use proper cell coordinates when clicking.
2023-07-13 11:54:22 +04:00
bourgesl
71e1ff1b1a fixup! JBR-5625: use sun.java2d.metal.colorMatching=true by default (current metal behaviour) 2023-07-12 21:10:29 +02:00
Vitaly Provodin
c024fc4ad9 update exclude list on results of 21_b185.5 test runs 2023-07-11 16:14:08 +07:00
Alexey Ushakov
7c0beaa530 JBR-5831 Compile failure after applying JDK-8309140 (ResourceHashtable failed ...)
Fixed compile issue
2023-07-10 20:12:22 +02:00
Alexey Ushakov
c423b9bc2e JBR-5645 Provide basic classes for Vulkan rendering pipeline
Fix compilation failure on macos
2023-07-10 14:10:05 +02:00
Tobias Hartmann
eb957de688 8295210: IR framework should not whitelist -XX:-UseTLAB
Reviewed-by: epeter
Backport-of: 31dcda5d67
2023-07-07 19:40:57 +07:00
Coleen Phillimore
1063d09924 8309140: ResourceHashtable failed "assert(~(_allocation_t[0] | allocation_mask) == (uintptr_t)this) failed: lost resource object"
Reviewed-by: iklam
Backport-of: b6c789faad
2023-07-07 19:40:49 +07:00
Tobias Hartmann
039c82b4f6 8310425: [JVMCI] compiler/runtime/TestConstantDynamic: lookupConstant returned an object of incorrect type: null
Reviewed-by: chagedorn
Backport-of: 15878360bf
2023-07-07 19:32:57 +07:00
Hannes Wallnöfer
c07097a888 8311264: JavaDoc index comparator is not transitive
Reviewed-by: prappo
Backport-of: 0741cd3289
2023-07-07 19:32:57 +07:00
Pavel Rappo
299f672e2a 8311122: Fix typos in java.base
Reviewed-by: iris
Backport-of: 7b3c2dc5f4
2023-07-07 19:32:57 +07:00
Tobias Hartmann
a3bcdeacfe 8311023: assert(false) failed: EA: missing memory path
Reviewed-by: chagedorn
Backport-of: 6ebb0e3bd4
2023-07-07 19:32:56 +07:00
Tobias Hartmann
ba6ffccf8b 8309531: Incorrect result with unwrapped iotaShuffle.
Reviewed-by: chagedorn
Backport-of: d6578bff1c
2023-07-07 19:32:56 +07:00
Serguei Spitsyn
cd7d0d50d8 8303086: SIGSEGV in JavaThread::is_interp_only_mode()
Reviewed-by: pchilanomate
Backport-of: 971c2efb69
2023-07-07 19:32:56 +07:00
Rajan Halade
98bf58e13d 8301379: Verify TLS_ECDH_* cipher suites cannot be negotiated
Reviewed-by: mullan
Backport-of: 9f64a64376
2023-07-07 19:32:55 +07:00
Axel Boldt-Christmas
2cedb9d3bb 8310743: assert(reserved_rgn != nullptr) failed: Add committed region, No reserved region found
Reviewed-by: ayang
Backport-of: f393975d1b
2023-07-07 19:32:55 +07:00
Matthias Baesken
b2bc6893ea 8310549: avoid potential leaks in KeystoreImpl.m related to JNU_CHECK_EXCEPTION early returns
Reviewed-by: clanger
Backport-of: 7da3f1999f
2023-07-07 19:32:55 +07:00
Mandy Chung
90974afeba 8254566: Clarify the spec of ClassLoader::getClassLoadingLock for non-parallel capable loader
Reviewed-by: iris
Backport-of: b9198f9931
2023-07-07 19:32:55 +07:00
Tobias Hartmann
0019cdf781 8310829: guarantee(!HAS_PENDING_EXCEPTION) failed in ExceptionTranslation::doit
Reviewed-by: chagedorn
Backport-of: f6bdccb45c
2023-07-07 19:32:54 +07:00
Matthias Baesken
e7e9c3492f 8310380: Handle problems in core-related tests on macOS when codesign tool does not work
Reviewed-by: cjplummer
Backport-of: 39c104df44
2023-07-07 19:32:54 +07:00
Chen Liang
26863d19fc 8309819: Clarify API note in Class::getName and MethodType::toMethodDescriptorString
Reviewed-by: mchung
Backport-of: 8c8e9d911d
2023-07-07 19:32:54 +07:00
Chen Liang
44fe0a12c6 8310838: Correct range notations in MethodTypeDesc specification
Reviewed-by: mchung
Backport-of: a197ee797b
2023-07-07 19:32:54 +07:00
Daniel D. Daugherty
ff0d766ef6 8311186: ProblemList javax/management/remote/mandatory/subjectDelegation/SubjectDelegation1Test.java on linux-aarch64
8311189: disable gc/z/TestHighUsage.java
8311190: ProblemList javax/management/remote/mandatory/connection/DeadLockTest.java with virtual threads on windows-x64
8311191: ProblemList javax/management/remote/mandatory/connection/ConnectionTest.java with virtual threads on windows-x64
8311193: ProblemList vmTestbase/nsk/jdb/interrupt/interrupt001/interrupt001.java on linux-all
8311195: ProblemList vmTestbase/nsk/jvmti/scenarios/capability/CM03/cm03t001/TestDescription.java with Xcomp on macosx-x64

Reviewed-by: lmesnik
Backport-of: 140b70fb29
2023-07-07 19:32:53 +07:00
Axel Boldt-Christmas
917c3597ed 8311046: ProblemList gc/z/TestHighUsage.java with Generational ZGC
Reviewed-by: stefank
Backport-of: 2a9e2f614f
2023-07-07 19:32:53 +07:00
Vitaly Provodin
59edee4716 update exclude list on results of 21_b173.1 test runs (follow up) 2023-07-07 19:32:02 +07:00
Vitaly Provodin
28edf9aa51 update exclude list on results of 21_b173.1 test runs (follow up) 2023-07-07 07:24:39 +07:00
Alexey Ushakov
dd761c3138 JBR-5645 Provide basic classes for Vulkan rendering pipeline
Implemented shared classes for cross-platform vulkan implementation and some support for wayland toolkit
2023-07-06 20:07:51 +02:00
Alexey Ushakov
79263e5875 JBR-5807 java/awt/Frame/FrameVisible/FrameContentAppearanceTest.java: Failed: OpenGL 26 image rendering failure(s)
Added synchronisation for rendering and appearance
2023-07-06 19:21:35 +02:00
Vitaly Provodin
4eaaf559e5 update exclude list on results of 21_b173.1 test runs 2023-07-05 05:53:19 +07:00
Maxim Kartashev
470c36bbd8 JBR-5661 Wayland: implement heavy-weight popup windows 2023-07-04 09:29:37 +04:00
bourgesl
5473bc5596 fixup! JBR-5625: use CGColorSpaceCopyName() available since macOS 10.6 in MTLLayer
(cherry picked from commit 4ec4f728f4461a0c173bb80cd3f3c9652f267f4f)
2023-07-01 12:34:42 +02:00
bourgesl
3027b5e95c JBR-5625: disable color-matching (colorspace = nil) in MTLLayer by default (see new system property 'sun.java2d.metal.colorMatching=true/false') + added new MetalLayerColorTest 2023-06-30 18:19:34 +02:00
Tobias Hartmann
2ee44fface 8309902: C2: assert(false) failed: Bad graph detected in build_loop_late after JDK-8305189
Reviewed-by: chagedorn
Backport-of: 26efff7586
2023-06-30 20:00:06 +07:00
Joe Darcy
b0eb2a22e2 8311115: Type in java.lang.reflect.AccessFlag.METHOD_PARAMETER
Reviewed-by: prappo
Backport-of: d97966266e
2023-06-30 20:00:06 +07:00
Tobias Hartmann
4956bcb3d4 8310299: C2: 8275201 broke constant folding of array store check in some cases
Reviewed-by: chagedorn
Backport-of: be64d3ac3c
2023-06-30 20:00:05 +07:00
Erik Gahlin
b632a89ba5 8311007: jdk/jfr/tool/TestView.java can't find event
Reviewed-by: mgronlun
Backport-of: e3f18af1df
2023-06-30 20:00:05 +07:00
Joe Darcy
0be7c6e827 8310061: Note if implicit annotation processing is being used
Reviewed-by: vromero
Backport-of: 3df36c4f10
2023-06-30 20:00:05 +07:00
Jorn Vernee
ea0b791f94 8310914: Remove 2 malformed java/foreign ProblemList entries
Reviewed-by: jpai
Backport-of: f07e396bda
2023-06-30 20:00:05 +07:00
Jorn Vernee
c35e073cd9 8310405: Linker.Option.firstVariadicArg should specify which index values are valid
Reviewed-by: mcimadamore
Backport-of: 7fffdb5e60
2023-06-30 20:00:04 +07:00
Tobias Hartmann
be708c5de0 8310130: C2: assert(false) failed: scalar_input is neither phi nor a matchin reduction
Reviewed-by: kvn
Backport-of: 526dba1a29
2023-06-30 20:00:04 +07:00
Rajan Halade
05af322e8a 8292704: sun/security/tools/jarsigner/compatibility/Compatibility.java use wrong key size for EC
Reviewed-by: valeriep, hchao
Backport-of: 130a9f1387
2023-06-30 20:00:04 +07:00
Archie Cobbs
4ade52291c 8305671: javac rejects semicolons in compilation units with no imports
Reviewed-by: vromero
Backport-of: a08352f621
2023-06-30 20:00:04 +07:00
Pavel Rappo
59ff7acff6 8311034: Fix typo in javac man page
Reviewed-by: rriggs
Backport-of: f17bfeec61
2023-06-30 20:00:03 +07:00
Kevin Walls
5c3fe85288 8303916: ThreadLists.java inconsistent results
Reviewed-by: sspitsyn
Backport-of: 8c9b85a990
2023-06-30 20:00:03 +07:00
Stefan Karlsson
c01213983c 8310194: Generational ZGC: Lock-order asserts in JVMTI IterateThroughHeap
Reviewed-by: ayang
Backport-of: 4e4e586dac
2023-06-30 20:00:03 +07:00
Tobias Hartmann
dc28c85058 8310459: [BACKOUT] 8304450: [vectorapi] Refactor VectorShuffle implementation
Reviewed-by: kvn
Backport-of: ff9a754109
2023-06-30 20:00:02 +07:00
Joe Darcy
5b7b91f80b 8310830: typo in the parameter name in @throws of ClassDesc::ofDescriptor
Reviewed-by: mchung
Backport-of: 4bce38c6d7
2023-06-30 20:00:02 +07:00
Jim Laskey
4da9ef9367 8310975: java.util.FormatItemModifier should not be protected
Reviewed-by: darcy
Backport-of: 315242b741
2023-06-30 20:00:02 +07:00
Naoto Sato
c31883d7ae 8310182: DateTimeFormatter date formats (ISO_LOCAL_DATE) separated with hyphen, not dash
Reviewed-by: rriggs
Backport-of: ec45bd64d5
2023-06-30 20:00:01 +07:00
Robbin Ehn
7ce6caddcc 8309258: RISC-V: Add riscv_hwprobe syscall
Reviewed-by: luhenry, fyang
Backport-of: 31b6fd775f
2023-06-30 20:00:01 +07:00
Mandy Chung
449333a596 8310242: Clarify the name parameter to Class::forName
8310922: java/lang/Class/forName/ForNameNames.java fails after being added by JDK-8310242

Reviewed-by: dholmes
Backport-of: 7db2f08756
2023-06-30 20:00:01 +07:00
Joe Darcy
938ce68fac 8310861: Improve location reporting for javac serial lint warnings
8310907: Add missing file

Reviewed-by: jlahoda
Backport-of: 289f218a32
2023-06-30 20:00:01 +07:00
Christian Stein
b135da3050 8309670: java -help output for --module-path / -p is incomplete
Reviewed-by: jjg
Backport-of: 4bf78162c5
2023-06-30 20:00:00 +07:00
Hannes Wallnöfer
2e9c2f2d2f 8309471: Limit key characters in static index pages
Reviewed-by: jjg
Backport-of: 21f6d83358
2023-06-30 20:00:00 +07:00
Jaikiran Pai
5072c3ddf8 8310868: Thread.interrupt() method's javadoc has an incorrect {@link}
Reviewed-by: alanb
Backport-of: 013367b483
2023-06-30 20:00:00 +07:00
Frederic Thevenet
4bf9d30bc1 8309959: JFR: Display N/A for missing data amount
Reviewed-by: egahlin
Backport-of: 9872a14192
2023-06-30 20:00:00 +07:00
Joe Darcy
509d789d2e 8310676: add note about unnamed module to Elements.getAllModuleElements
Reviewed-by: jjg
Backport-of: 69f3114c41
2023-06-30 19:59:59 +07:00
Jamil Nimeh
872410a552 8309740: Expand timeout windows for tests in JDK-8179502
Reviewed-by: xuelei, hchao
Backport-of: 5ca4cdd2ca
2023-06-30 19:59:59 +07:00
Daniel D. Daugherty
0304e5af2d 8310822: JDK21: ProblemList java/lang/ScopedValue/StressStackOverflow.java on generic-x64
Reviewed-by: iris, lmesnik
2023-06-30 19:59:59 +07:00
Alexander Zuev
a29a052655 8309733: [macOS, Accessibility] VoiceOver: Incorrect announcements of JRadioButton
Reviewed-by: prr
Backport-of: d1d2b55ce0
2023-06-30 19:59:58 +07:00
Sergey Bylokhov
eec4c76e76 8304885: Reuse stale data to improve DNS resolver resiliency
Reviewed-by: djelinski, michaelm
Backport-of: bdd81b3182
2023-06-30 19:57:41 +07:00
Vitaly Provodin
dc913b2ba1 update exclude list on results of 21_b173.1 test runs 2023-06-30 18:39:23 +07:00
Maxim Kartashev
725fe7afce JBR-5777 isWindowMoveSupported() doesn't work with non-default GraphicsEnvironment
Co-authored-by: Nikita Gubarkov <nikita.gubarkov@jetbrains.com>
2023-06-28 11:47:22 +04:00
Sergey Shelomentsev
4bf6cbc0ab fixup! JBR-5746 add mouse events logging 2023-06-27 23:18:08 +03:00
Dmitrii Morskii
c6ddc37179 fixup! JBR-1775: improved logic for choosing newer font between system and bundled ones 2023-06-26 18:00:30 +02:00
Dmitry Batrak
25f8116d68 JBR-5720 Wrong modifiers are reported for mouse middle and right buttons' release/clicked events
(cherry picked from commit 64dad2a50a)
2023-06-26 12:10:40 +03:00
Alexey Ushakov
4583bce7fb JBR-5151 Test failures caused by -Dsun.java2d.metal.displaySync=false
Removed display sync from window layer, provide layer content updates only when necessary
2023-06-23 18:49:40 +02:00
Alan Bateman
45badf7fdf 8309853: StructuredTaskScope.join description improvements
Reviewed-by: darcy
Backport-of: 3661cdee1b
(cherry picked from commit e86d765b22)
2023-06-23 17:27:48 +07:00
Erik Gahlin
3b2662040d 8309296: jdk/jfr/event/runtime/TestAgentEvent.java fails due to "missing" dynamic JavaAgent
Reviewed-by: mgronlun
Backport-of: 658c3374d8
(cherry picked from commit 2f1af3cff8)
2023-06-23 17:27:47 +07:00
Axel Boldt-Christmas
b84f104c8f 8310187: Improve Generational ZGC jtreg testing
Reviewed-by: eosterlund
Backport-of: a0595761ef
(cherry picked from commit 6317249b50)
2023-06-23 17:27:47 +07:00
Tobias Hartmann
6827cc7db7 8309498: [JVMCI] race in CallSiteTargetValue recording
Reviewed-by: chagedorn, dlong
Backport-of: bb966827ac
(cherry picked from commit 55aa4cb48a)
2023-06-23 17:27:47 +07:00
Tobias Hartmann
5731093e0a 8308855: ARM32: TestBooleanVector crashes after 8300257
Reviewed-by: chagedorn, dlong
Backport-of: 266f9838ee
(cherry picked from commit 5357bcd776)
2023-06-23 17:27:47 +07:00
Tobias Hartmann
1aeac500dc 8309266: C2: assert(final_con == (jlong)final_int) failed: final value should be integer
Reviewed-by: chagedorn, dlong
Backport-of: 4a9cc8a000
(cherry picked from commit 7621d988f9)
2023-06-23 17:27:46 +07:00
Tobias Hartmann
03e282b3fe 8310126: C1: Missing receiver null check in Reference::get intrinsic
Reviewed-by: chagedorn, dlong
Backport-of: 02aaab12e3
(cherry picked from commit 89ac41be57)
2023-06-23 17:27:46 +07:00
Jan Lahoda
5789ab8533 8302865: Illegal bytecode for break from if with instanceof pattern matching condition
Reviewed-by: vromero
Backport-of: a15db1a56c
(cherry picked from commit 789b2fc4f2)
2023-06-23 17:27:46 +07:00
Jan Lahoda
53d980bdd3 8310133: Effectivelly final condition not enforced in guards for binding variables from the same case
Reviewed-by: vromero
Backport-of: 01623f6a57
(cherry picked from commit ceadaece94)
2023-06-23 17:27:46 +07:00
Serguei Spitsyn
585cabc4db 8309612: [REDO] JDK-8307153 JVMTI GetThreadState on carrier should return STATE_WAITING
Reviewed-by: cjplummer
Backport-of: f91e9ba757
(cherry picked from commit f8a38eecc6)
2023-06-23 17:27:45 +07:00
Chris Plummer
f85ef6c00e 8308499: Test vmTestbase/nsk/jdi/MethodExitRequest/addClassExclusionFilter/filter001/TestDescription.java failed: VMDisconnectedException
Reviewed-by: kevinw, sspitsyn
Backport-of: 79ff72a776
(cherry picked from commit 722b512c40)
2023-06-23 17:27:45 +07:00
Darragh Clarke
ce3fdae3dc 8308336: Test java/net/HttpURLConnection/HttpURLConnectionExpectContinueTest.java failed: java.net.BindException: Address already in use
Reviewed-by: dfuchs
Backport-of: a48bcf3671
(cherry picked from commit a4159ddaa2)
2023-06-23 17:27:45 +07:00
Jorn Vernee
7e94035ac4 8310053: VarHandle and slice handle derived from layout are lacking alignment check
Reviewed-by: mcimadamore
Backport-of: e022e87654
(cherry picked from commit 3985a4d534)
2023-06-23 17:27:44 +07:00
Matthias Baesken
9bdd685eb4 8310191: com/sun/tools/attach/warnings/DynamicLoadWarningTest.java second failure on AIX
Reviewed-by: alanb
Backport-of: 6a63badd8e
(cherry picked from commit 1fc60429a1)
2023-06-23 17:27:44 +07:00
Per Minborg
2851c2edac 8309937: Add @sealedGraph for some Panama FFM interfaces
Reviewed-by: mcimadamore
Backport-of: b412fc79c3
(cherry picked from commit ef0357f6cb)
2023-06-23 17:27:44 +07:00
Matthias Baesken
c33f76cf13 8309549: com/sun/tools/attach/warnings/DynamicLoadWarningTest.java fails on AIX
Reviewed-by: lucy, alanb
Backport-of: 4d66d97745
(cherry picked from commit 60cae33c46)
2023-06-23 17:27:44 +07:00
Alexey Ivanov
f4298d9a3a 8310054: ScrollPane insets are incorrect
Reviewed-by: honkar, prr
Backport-of: d6c2ee3448
(cherry picked from commit beb0d9579b)
2023-06-23 17:27:43 +07:00
Roger Riggs
9173dcad30 8310019: MIPS builds are broken after JDK-8304913
Reviewed-by: shade
Backport-of: 33c6ec9d4e
(cherry picked from commit e0cc40108a)
2023-06-23 17:27:43 +07:00
Glavo
01f0ecaaac 8310105: LoongArch64 builds are broken after JDK-8304913
Reviewed-by: shade
Backport-of: 137a5f7c2c
(cherry picked from commit 7e788939d3)
2023-06-23 17:27:43 +07:00
David Holmes
dea70ad99a 8309228: Clarify EXPERIMENTAL flags comment in hotspot/share/runtime/globals.hpp
Reviewed-by: shade
Backport-of: 96a7db7b3c
(cherry picked from commit fb6f5f1b82)
2023-06-23 17:27:43 +07:00
Jim Laskey
8bfeab18aa 8309957: Rename JDK-8309595 test to conform
Reviewed-by: prappo
Backport-of: 1d1ed0d8f7
(cherry picked from commit 7ca0f1460c)
2023-06-23 17:27:42 +07:00
Jim Laskey
c6fededaba 8309595: Allow javadoc to process unnamed classes
Reviewed-by: prappo
Backport-of: 0be39054a6
(cherry picked from commit bfffd8b608)
2023-06-23 17:27:42 +07:00
Jan Lahoda
4e9fb05ba8 8310314: Misplaced "unnamed classes are a preview feature and are disabled by default" error
Reviewed-by: jlaskey
Backport-of: 79069c5e74
(cherry picked from commit ede16cd19e)
2023-06-23 17:27:42 +07:00
Jaikiran Pai
a4e0bd5eb4 8310259: Pin msys2/setup-msys2 github action to a specific commit
8309934: Update GitHub Actions to use JDK 17 for building jtreg

Reviewed-by: cstein, clanger
Backport-of: 959a61fdd4
(cherry picked from commit 08965e646e)
2023-06-23 17:27:41 +07:00
Erik Gahlin
576518769f 8304835: jdk/jfr/event/oldobject/TestArrayInformation.java fails with "Could not find event with class ... as (leak) object"
Reviewed-by: mgronlun
Backport-of: 7d4b77ad9e
(cherry picked from commit e0d3706f9e)
2023-06-23 17:27:41 +07:00
Erik Österlund
e958446d7e 8310015: ZGC: Unbounded asynchronous unmapping can lead to running out of address space
Reviewed-by: stefank, aboldtch
Backport-of: 4229baf9b6
(cherry picked from commit 14c5091a9f)
2023-06-23 17:27:41 +07:00
Erik Gahlin
d04865c7f6 8309928: JFR: View issues
Reviewed-by: mgronlun
Backport-of: 84d010a24b
(cherry picked from commit 36e3fe914c)
2023-06-23 17:27:40 +07:00
Albert Mingkun Yang
d520d33e04 8309960: ParallelGC young collections very slow in DelayInducer
Reviewed-by: tschatzl
(cherry picked from commit 4d81b8998a)
2023-06-23 17:27:40 +07:00
Kim Barrett
84850c23d0 8308643: Incorrect value of 'used' jvmstat counter
Reviewed-by: tschatzl
Backport-of: 92167505b2
(cherry picked from commit ace56237d3)
2023-06-23 17:27:40 +07:00
Phil Race
ce5125a90f 8309756: Occasional crashes with pipewire screen capture on Wayland
Reviewed-by: azvegint
Backport-of: d3d0dbc363
(cherry picked from commit 3698a022ff)
2023-06-23 17:27:40 +07:00
Justin Lu
385c581b56 8309632: JDK 21 RDP1 L10n resource files update
Reviewed-by: naoto
Backport-of: 81bfd78901
(cherry picked from commit a1c1d97a4e)
2023-06-23 17:27:39 +07:00
Maxim Kartashev
cb9c3217e1 JBR-5722 vmTestbase/vm/gc/compact/Compact_TwoFields_InternedStrings: SIGSEGV at Symbol::as_klass_external_name(char*, int)
Do not use print_native_stack() when recording OOME stacks as it is
designed to be used only in the context of a fatal error reporting where
induced crashes are tolerated.
2023-06-23 12:59:41 +04:00
Dmitry Batrak
82383cef3c JBR-5684 Focus state is broken after closing of modal dialog in an inactive application
(cherry picked from commit f1feadc9e5)
2023-06-23 11:38:46 +03:00
Nikita Provotorov
f3580cb167 JBR-5762 Sometimes naturally generated MOUSE_DRAGGED events don't contain the pressed button's modifier.
Enforce keeping the pressed button in the modifiers for MOUSE_DRAGGED events. This is under a (default enabled) system property "awt.mac.enforceMouseModifiersForMouseDragged".

(cherry picked from commit fb12990a98)
2023-06-22 19:06:14 +03:00
Dmitrii Morskii
6c1d3527ef JBR-1775: improved logic for choosing newer font between system and bundled ones 2023-06-22 16:02:39 +02:00
Dmitrii Morskii
864dcab9d8 JBR-5548 fix BadSerializationTest 2023-06-22 15:55:12 +02:00
Vitaly Provodin
c66295a92f update exclude list on results of 21_b163.1 test runs 2023-06-22 16:38:37 +07:00
Vitaly Provodin
b2af077f9f update exclude list on results of 21_b156.4 test runs 2023-06-22 16:31:37 +07:00
Maxim Kartashev
ca4d3ddb25 JBR-5761 Make error printing more robust during early stages of VM initialization 2023-06-21 19:41:38 +04:00
Sergey Shelomentsev
5fd56485aa JBR-5746 wait for menu visibility of fail the test 2023-06-20 18:42:51 +03:00
Vitaly Provodin
528f36f7b7 fixup! JBR-5246 add OpenType's features support (follow up) 2023-06-17 06:38:04 +07:00
Vitaly Provodin
883a78fb2f fixup! JBR-5246 add OpenType's features support 2023-06-17 05:49:16 +07:00
Vitaly Provodin
2613211eed fixup! JBR-5480 Include more information in OOME crash reports 2023-06-17 05:33:13 +07:00
Nikita Tsarev
985ff0d80b JBR-5379: Ignore input events only on permament focus loss 2023-06-16 15:19:45 +02:00
Vitaly Provodin
d44783df44 fixup! update exclude list on results of 21_b156.4 test runs 2023-06-16 17:48:06 +07:00
Aggelos Biboudis
3090a44d42 8310128: Switch with unnamed patterns erroneously non-exhaustive
Reviewed-by: jlahoda
Backport-of: 32243ef47d
(cherry picked from commit aced11446e)
2023-06-16 17:21:06 +07:00
Roberto Castañeda Lozano
0802b1573b 8303513: C2: LoadKlassNode::make fails with 'expecting TypeKlassPtr'
Reviewed-by: thartmann
Backport-of: 83d92672d4
(cherry picked from commit 39e98e7bbf)
2023-06-16 17:21:06 +07:00
Martin Doerr
577b7a1383 8309613: [Windows] hs_err files sometimes miss information about the code containing the error
Reviewed-by: mbaesken
Backport-of: bd79db3930
(cherry picked from commit 07d20dc86a)
2023-06-16 17:21:05 +07:00
Aleksey Shipilev
155bca2d23 8309956: Shenandoah: Strengthen the mark word check in string dedup
Reviewed-by: rkennke
Backport-of: 57b8251241
(cherry picked from commit 0ac92753dd)
2023-06-16 17:21:05 +07:00
Chen Liang
acfdfe9169 8307508: IndirectVarHandle.isAccessModeSupported throws NPE
Reviewed-by: mchung
Backport-of: 75dcc4ef94
(cherry picked from commit 6711041f55)
2023-06-16 17:21:05 +07:00
Stuart Marks
4f67e453b9 8309882: LinkedHashMap adds an errant serializable field
Reviewed-by: rriggs
Backport-of: e138685648
(cherry picked from commit f7cd0aec92)
2023-06-16 17:21:04 +07:00
Raffaello Giulietti
7f45827674 8309955: Matcher uses @since {@inheritDoc}
Reviewed-by: bpb
Backport-of: bfef3c3e80
(cherry picked from commit e18993c006)
2023-06-16 17:21:04 +07:00
Mandy Chung
3100171558 8309303: jdk/internal/misc/VM/RuntimeArguments test ignores jdk/internal/vm/options
Reviewed-by: alanb
Backport-of: 679a6d8935
(cherry picked from commit 3363050f9e)
2023-06-16 17:21:04 +07:00
Markus Grönlund
6f792f56d2 8309862: Unsafe list operations in JfrStringPool
Reviewed-by: egahlin
Backport-of: 05f896a153
(cherry picked from commit ea4ab656b0)
2023-06-16 17:21:03 +07:00
Martin Doerr
84b4a719ba 8309462: [AIX] vmTestbase/nsk/jvmti/RunAgentThread/agentthr001/TestDescription.java crashing due to empty while loop
Reviewed-by: mbaesken
Backport-of: cf9e6353cc
(cherry picked from commit 08eff92b5e)
2023-06-16 17:21:03 +07:00
Jan Lahoda
ef2a69875a 8309467: Pattern dominance should be adjusted
Reviewed-by: vromero
Backport-of: 408cadb351
(cherry picked from commit 83ea293581)
2023-06-16 17:21:03 +07:00
Joe Darcy
a8c6a1c33f 8309870: Using -proc:full should be considered requesting explicit annotation processing
Reviewed-by: jjg
Backport-of: 3ce1240ca1
(cherry picked from commit b743405033)
2023-06-16 17:21:02 +07:00
Maurizio Cimadamore
705d70071f 8308645: Javadoc of FFM API needs to be refreshed
8309398: ValueLayout:: arrayElementVarHandle doesn't throws UnsupportedOperationException - if byteAlignment() > byteSize()
8308812: SequenceLayout::withElementCount(long elementCount) doesn't throw IllegalArgumentException - if elementCount < 0 for some cases

Reviewed-by: jvernee
(cherry picked from commit 20371fd918)
2023-06-16 17:21:02 +07:00
Chris Hegarty
b7eb3b0594 8309727: Assert privileges while reading the jdk.incubator.vector.VECTOR_ACCESS_OOB_CHECK system property
Reviewed-by: uschindler, rriggs
Backport-of: cee5724d09
(cherry picked from commit 73a9f486ae)
2023-06-16 17:21:02 +07:00
Matthias Baesken
7d17695ec3 8309703: AIX build fails after JDK-8280982
Reviewed-by: mdoerr
Backport-of: 3981297fd3
(cherry picked from commit 005006e7c4)
2023-06-16 17:21:01 +07:00
Daniel D. Daugherty
73622ef2c1 8309760: ProblemList serviceability/jvmti/vthread/FollowReferences/VThreadStackRefTest.java#default with ZGC
Reviewed-by: darcy
Backport-of: aace3dc28c
(cherry picked from commit 4bf6babda5)
2023-06-16 17:21:01 +07:00
Daniel D. Daugherty
552735c1c5 8309702: Exclude java/lang/ScopedValue/StressStackOverflow.java from JTREG_TEST_THREAD_FACTORY=Virtual runs
Reviewed-by: darcy
Backport-of: 307085618d
(cherry picked from commit 406ba341fe)
2023-06-16 17:21:01 +07:00
Vitaly Provodin
a2e0786c22 update exclude list on results of 21_b156.4 test runs 2023-06-15 10:21:29 +07:00
Vitaly Provodin
16d12c8519 update exclude list on results of 21_b150.1 test 2023-06-10 05:25:09 +07:00
Stefan Karlsson
8be1389399 8309675: Generational ZGC: compiler/gcbarriers/UnsafeIntrinsicsTest.java fails in nmt_commit
Reviewed-by: dcubed
Backport-of: c4e6542514
(cherry picked from commit 430ffe7ae6)
2023-06-09 16:09:23 +07:00
Stefan Karlsson
eaa7382eea 8306841: Generational ZGC: NMT reports Java heap size larger than max heap size
Reviewed-by: eosterlund, stuefe
(cherry picked from commit bb377b2673)
2023-06-09 16:09:22 +07:00
Chen Liang
73e8bb0fba 8304425: ClassHierarchyResolver from Reflection
Reviewed-by: asotona
(cherry picked from commit ac3ce2bf75)
2023-06-09 16:09:21 +07:00
Aggelos Biboudis
fc978710d3 8309235: Unnamed Variables (_) can't be used in JShell
Co-authored-by: Jan Lahoda <jlahoda@openjdk.org>
Co-authored-by: Aggelos Biboudis <abimpoudis@openjdk.org>
Reviewed-by: asotona
(cherry picked from commit 79a4ac791c)
2023-06-09 16:09:20 +07:00
Nagata-Haruhito
49881fbaf1 8306431: File.listRoots method description should be re-examined
Reviewed-by: bpb, alanb
(cherry picked from commit 9d64a9d220)
2023-06-09 16:09:19 +07:00
Serguei Spitsyn
aaba13d513 8309602: update JVMTI history table for jdk 21
Reviewed-by: alanb, iris
(cherry picked from commit 5af9d2a0ac)
2023-06-09 16:09:18 +07:00
David Holmes
fb3766b94c 8308764: Reporting errors from create_vm may crash
Reviewed-by: stuefe, coleenp, kbarrett
(cherry picked from commit 6646272a05)
2023-06-09 16:09:17 +07:00
Sergey Bylokhov
9a5f0e005d 8308152: PropertyDescriptor should work with overridden generic getter method
Reviewed-by: azvegint
(cherry picked from commit 73dd03cc5a)
2023-06-09 16:09:16 +07:00
Martin Balao
7ac0d737ea 8309569: sun/security/pkcs11/Signature/TestRSAKeyLength.java fails after JDK-8301553
Co-authored-by: Martin Balao <mbalao@openjdk.org>
Co-authored-by: Francisco Ferrari Bihurriet <fferrari@redhat.com>
Reviewed-by: valeriep
(cherry picked from commit 760cb04a2e)
2023-06-09 16:09:15 +07:00
Mandy Chung
1217047ff0 8309630: Clean up tests that reference deploy modules
Reviewed-by: bchristi
(cherry picked from commit e8a59843f2)
2023-06-09 16:09:14 +07:00
Raffaello Giulietti
a2a7a996d3 8309515: Stale cached data from Matcher.namedGroups() after Matcher.usePattern()
Reviewed-by: rriggs
(cherry picked from commit 90027ff204)
2023-06-09 16:09:13 +07:00
Alexey Ivanov
4d19663847 8297923: java.awt.ScrollPane broken after multiple scroll up/down
Reviewed-by: honkar, prr, serb
(cherry picked from commit ea41907396)
2023-06-09 16:09:12 +07:00
Yudi Zheng
bf5816390b 8309562: [JVMCI] Export symbols used by VirtualThread notifyJvmti intrinsics to JVMCI compilers.
Reviewed-by: dnsimon, kvn
(cherry picked from commit 99749c597b)
2023-06-09 16:09:12 +07:00
Eric Nothum
28ac4647f8 8309474: [IR Framework] Wrong @ForceCompile link in README
Reviewed-by: chagedorn, thartmann
(cherry picked from commit 92beb85510)
2023-06-09 16:09:11 +07:00
Daniel D. Daugherty
17ce7e4035 8256302: releasing oopStorage when deflating allows for faster deleting
Reviewed-by: dholmes, rehn, coleenp
(cherry picked from commit 6402004852)
2023-06-09 16:09:10 +07:00
Mandy Chung
0941211777 8309532: java/lang/Class/getDeclaredField/FieldSetAccessibleTest should filter modules that depend on JVMCI
Reviewed-by: alanb, dfuchs
(cherry picked from commit 02bce0b145)
2023-06-09 16:09:09 +07:00
Joe Darcy
bdc07abb13 8309574: Improve core reflection tests for JEP 445
Reviewed-by: mchung
(cherry picked from commit 4ffc8cc216)
2023-06-09 16:09:08 +07:00
Chris Plummer
b4dfcb4160 8309420: com/sun/jdi/StepTest.java fails with virtual thread wrapper
Reviewed-by: sspitsyn, amenkov
(cherry picked from commit e3f3ac0825)
2023-06-09 16:09:07 +07:00
Chris Plummer
bfe5ca05e6 8309510: com/sun/jdi/RedefineNestmateAttr/TestNestmateAttr.java no longer needs to override startUp() method
Reviewed-by: sspitsyn, amenkov
(cherry picked from commit c38abbfcaa)
2023-06-09 16:09:06 +07:00
Joe Darcy
d2285b5d5d 8309503: Improve javax.lang.model tests for JEP 445
Reviewed-by: jlahoda, jjg, jlaskey
(cherry picked from commit c24b0bada2)
2023-06-09 16:09:05 +07:00
Chris Plummer
31d20952c0 8309509: com/sun/jdi/RedefineNestmateAttr/TestNestmateAttr.java fails with virtual test thread factory
Reviewed-by: sspitsyn, amenkov
(cherry picked from commit a54f4d4ab9)
2023-06-09 16:09:04 +07:00
Daniel D. Daugherty
60584a8cf8 8309614: [BACKOUT] JDK-8307153 JVMTI GetThreadState on carrier should return STATE_WAITING
Reviewed-by: azvegint
(cherry picked from commit 33bb64f24f)
2023-06-09 16:09:03 +07:00
JoKern65
ce7e174e01 8308288: Fix xlc17 clang warnings and build errors in hotspot
Reviewed-by: goetz, mbaesken
(cherry picked from commit 5b147eb5e4)
2023-06-09 16:09:02 +07:00
JoKern65
7884a8a411 8309225: Fix xlc17 clang 15 warnings in security and servicability
Reviewed-by: goetz, mdoerr, clanger
(cherry picked from commit 89f5bacaf6)
2023-06-09 16:09:01 +07:00
JoKern65
e78673adbe 8309219: Fix xlc17 clang 15 warnings in java.base
Reviewed-by: goetz, mdoerr
(cherry picked from commit 6eddbe26dd)
2023-06-09 16:09:01 +07:00
Serguei Spitsyn
3a08166477 8307153: JVMTI GetThreadState on carrier should return STATE_WAITING
Reviewed-by: amenkov, cjplummer
(cherry picked from commit 177e8327d6)
2023-06-09 16:09:00 +07:00
Aleksey Shipilev
d61653478d 8309543: Micro-optimize x86 assembler UseCondCardMark
Reviewed-by: kvn, mdoerr
(cherry picked from commit f0236edfba)
2023-06-09 16:08:59 +07:00
Alexander Zvegintsev
1a77364d8b 8280982: [Wayland] [XWayland] java.awt.Robot taking screenshots
Reviewed-by: prr, kizune, psadhukhan
(cherry picked from commit 9d7bf5329e)
2023-06-09 16:08:57 +07:00
Frederic Thevenet
af828a181b 8309550: jdk.jfr.internal.Utils::formatDataAmount method should gracefully handle amounts equal to Long.MIN_VALUE
Reviewed-by: stuefe, mgronlun
(cherry picked from commit a1ab377d99)
2023-06-09 16:08:56 +07:00
Jorn Vernee
8307442519 8308445: Linker should check that capture state segment is big enough
Reviewed-by: mcimadamore
(cherry picked from commit c49129f545)
2023-06-09 16:08:56 +07:00
Jorn Vernee
8fc758cbad 8308031: Linkers should reject unpromoted variadic parameters
Reviewed-by: mcimadamore
(cherry picked from commit fa791119f0)
2023-06-09 16:08:55 +07:00
Jim Laskey
5ae6f19643 8309594: Cleanup naming in JavacParser related to unnamed classes
Reviewed-by: jlahoda
(cherry picked from commit 16ebf47fe3)
2023-06-09 16:08:53 +07:00
Stefan Karlsson
646a548111 8307374: Add a JFR event for tracking RSS
Reviewed-by: stuefe, rcastanedalo
(cherry picked from commit 5722903d53)
2023-06-09 16:08:52 +07:00
Eric Nothum
1e4caafc2b 8302145: ddepth should be uint in PhaseIdealLoop::register_node()
Reviewed-by: chagedorn, thartmann
(cherry picked from commit 1de40f360f)
2023-06-09 16:08:51 +07:00
Jim Laskey
9ca08e4cbb 8309568: javac crashes attempting to -Xprint on a class file of an unnamed class
Reviewed-by: darcy, jlahoda
(cherry picked from commit a6726b66db)
2023-06-09 16:08:50 +07:00
Boris Ulasevich
8654d31807 8305959: x86: Improve itable_stub
Reviewed-by: phh, shade, aph
(cherry picked from commit 8cdd95e8a2)
2023-06-09 16:08:49 +07:00
Matthias Baesken
001aa3e47d 8309297: Adjust ShenandoahHeap print_heap_regions_on
Reviewed-by: ysr, mdoerr
(cherry picked from commit 9233dcc838)
2023-06-09 16:08:48 +07:00
Dhamoder Nalla
f352d1ab9c 8305763: Parsing a URI with an underscore goes through a silent exception, negatively impacting performance
Reviewed-by: dfuchs
(cherry picked from commit 749d480193)
2023-06-09 16:08:47 +07:00
Jaikiran Pai
c8d47bafae 8305906: HttpClient may use incorrect key when finding pooled HTTP/2 connection for IPv6 address
Reviewed-by: djelinski, dfuchs
(cherry picked from commit 3ccb3c0e09)
2023-06-09 16:08:46 +07:00
Serguei Spitsyn
dfc51517ef 8295976: GetThreadListStackTraces returns wrong state for blocked VirtualThread
Reviewed-by: cjplummer, amenkov
(cherry picked from commit a25b7b8b55)
2023-06-09 16:08:45 +07:00
Daniel Jeliński
b0f3a1eb5b 8309527: Improve test proxy performance
Reviewed-by: dfuchs, jpai
(cherry picked from commit fadcd65018)
2023-06-09 16:08:44 +07:00
Christian Hagedorn
970d3642af 8309472: IGV: Add dump_igv(custom_name) for improved debugging
Reviewed-by: roland, thartmann
(cherry picked from commit 0ed4af76c0)
2023-06-09 16:08:43 +07:00
Alan Bateman
4b3e0b1253 8306647: Implementation of Structured Concurrency (Preview)
8306572: Implementation of Scoped Values (Preview)

Co-authored-by: Alan Bateman <alanb@openjdk.org>
Co-authored-by: Andrew Haley <aph@openjdk.org>
Reviewed-by: psandoz, dfuchs, mchung
(cherry picked from commit f1c7afcc3f)
2023-06-09 16:08:42 +07:00
Ichiroh Takiguchi
8d5283c417 8307953: [AIX] C locale's font setting was changed by JEP 400
Reviewed-by: naoto, prr
(cherry picked from commit a08c5cb3f1)
2023-06-09 16:08:41 +07:00
Daniel D. Daugherty
c7cca79547 8309570: ProblemList sun/security/pkcs11/Signature/TestRSAKeyLength.java
Reviewed-by: jjg, darcy
(cherry picked from commit 0ceb43227d)
2023-06-09 16:08:40 +07:00
Chris Plummer
e15438b957 8309396: com/sun/jdi/JdbMethodExitTest.java fails with virtual threads due to a bug in determining the main thread id
Reviewed-by: amenkov, sspitsyn
(cherry picked from commit 65bdbc7a8c)
2023-06-09 16:08:39 +07:00
Martin Balao
0059758c87 8301553: Support Password-Based Cryptography in SunPKCS11
Co-authored-by: Francisco Ferrari Bihurriet <fferrari@redhat.com>
Co-authored-by: Martin Balao <mbalao@openjdk.org>
Reviewed-by: valeriep
(cherry picked from commit 4a75fd462c)
2023-06-09 16:08:38 +07:00
Hannes Wallnöfer
7a78f0c9d8 8292157: Incorrect error: "block element not allowed within inline element <a>"
Reviewed-by: jjg
(cherry picked from commit 0a4f9ad637)
2023-06-09 16:08:37 +07:00
Chris Plummer
7b87fc6236 8309505: com/sun/jdi/MethodEntryExitEvents.java due to finding wrong main thread
Reviewed-by: amenkov, sspitsyn
(cherry picked from commit 16ab7bfe22)
2023-06-09 16:08:36 +07:00
Joe Darcy
8590b9609f 8295071: Spec Clarification : ClassFileFormatVersion: System property java.class.version | Java class format version number
Reviewed-by: iris, alanb, rriggs
(cherry picked from commit d82436e4e3)
2023-06-09 16:08:35 +07:00
Chris Plummer
7fc68c2928 8309506: com/sun/jdi/MultiBreakpointsTest.java fails with virtual test thread factory
Reviewed-by: amenkov, sspitsyn
(cherry picked from commit 571fbdc311)
2023-06-09 16:08:34 +07:00
Joe Darcy
1345b4da95 8309554: Update descriptions in SourceVersion
Reviewed-by: jlaskey, jjg, rriggs
(cherry picked from commit 7d1147ee5c)
2023-06-09 16:08:33 +07:00
Stuart Marks
51eed250b8 8307840: SequencedMap view method specification and implementation adjustments
Reviewed-by: darcy, alanb
(cherry picked from commit 9526190863)
2023-06-09 16:08:32 +07:00
Mandy Chung
bb03ece978 8301721: lookup.findSpecial fails on Object method call from interface
Reviewed-by: alanb
(cherry picked from commit 74dc50b7f0)
2023-06-09 16:08:31 +07:00
Doug Simon
fdd52dcc65 8309542: compiler/jvmci/TestEnableJVMCIProduct.java fails with "JVMCI compiler 'graal' specified by jvmci.Compiler not found"
Reviewed-by: kvn, never
(cherry picked from commit 0f0fda7abc)
2023-06-09 16:08:30 +07:00
Chen Liang
00e0ff56bf 8309413: Improve the performance of MethodTypeDesc::descriptorString
8304932: MethodTypeDescImpl can be mutated by argument passed to MethodTypeDesc.of

Reviewed-by: mchung
(cherry picked from commit 38cef2adbd)
2023-06-09 16:08:29 +07:00
Tom Rodriguez
9eb805a955 8309501: Remove workaround in bin/idea.sh for non standard JVMCI file layout
Reviewed-by: dnsimon, erikj

(cherry picked from commit 7edd0540e0)
2023-06-09 16:07:32 +07:00
Brian Burkhalter
bf01aee27c 8309216: Cast from jchar* to char* in test java/io/GetXSpace.java
Reviewed-by: rriggs, naoto
(cherry picked from commit 9188142698)
2023-06-09 15:48:53 +07:00
Brian Burkhalter
bc05047270 8307887: (fs) Files.createSymbolicLink throws less specific exception when in developer mode and file already exists
Reviewed-by: alanb
(cherry picked from commit d709c25cbf)
2023-06-09 15:48:52 +07:00
Jim Laskey
cb27e98475 8309534: @JEP(number=430, title="String Templates") should use default status
Reviewed-by: alanb
(cherry picked from commit ca6f07f9ab)
2023-06-09 15:48:51 +07:00
Rudi Horn
e31b6113bc 8308748: JNU_GetStringPlatformChars may write to String's internal memory array
Reviewed-by: dholmes, rriggs, alanb
(cherry picked from commit 8f0839bc55)
2023-06-09 15:48:50 +07:00
Pavel Rappo
4efd0f3cf4 8304878: ConcurrentModificationException in javadoc tool
Reviewed-by: jjg
(cherry picked from commit 01455a07a7)
2023-06-09 15:48:49 +07:00
Gui Cao
6a7b7f2b35 8309419: RISC-V: Relax register constraint for AddReductionVF & AddReductionVD nodes
Reviewed-by: fyang, luhenry, yzhu
(cherry picked from commit 7d25bf7722)
2023-06-09 15:48:48 +07:00
Dingli Zhang
1fdd194889 8309418: RISC-V: Make use of vl1r.v & vfabs.v pseudo-instructions where appropriate
Reviewed-by: fyang, luhenry, gcao
(cherry picked from commit 5146a58249)
2023-06-09 15:48:47 +07:00
Maxim Kartashev
0f31f6da89 8308875: java/awt/Toolkit/GetScreenInsetsCustomGC/GetScreenInsetsCustomGC.java failed with 'Cannot invoke "sun.awt.X11GraphicsDevice.getInsets()" because "device" is null'
Reviewed-by: avu, prr
(cherry picked from commit 41bf2ad159)
2023-06-09 15:48:46 +07:00
quadhier
11aab9e6d7 8309346: Extend hs_err logging for all VM operations deriving from VM_GC_Operation
Reviewed-by: tschatzl, stefank
(cherry picked from commit a7a0913005)
2023-06-09 15:48:45 +07:00
Matthias Baesken
d422f0b9d3 8309340: Provide sctpHandleSocketErrorWithMessage
Reviewed-by: clanger
(cherry picked from commit 3b85f84f02)
2023-06-09 15:48:44 +07:00
Alan Bateman
72c9cb13ee 8309406: Change jdk.trackAllThreads to default to true
Reviewed-by: rpressler, mchung, cjplummer
(cherry picked from commit 2e9eff5641)
2023-06-09 15:48:43 +07:00
Stuart Marks
ab21d919fd 8308167: SequencedMap::firstEntry throws NPE when first entry has null key or value
Reviewed-by: bchristi
(cherry picked from commit 6d155a47f1)
2023-06-09 15:48:42 +07:00
Serguei Spitsyn
3dfe49cc40 8304438: jcmd JVMTI.agent_load should obey EnableDynamicAgentLoading
Reviewed-by: cjplummer, alanb, amenkov
(cherry picked from commit 4b1534989b)
2023-06-09 15:48:41 +07:00
Doug Simon
58770321c4 8309136: [JVMCI] add -XX:+UseGraalJIT flag
Reviewed-by: dholmes, kvn
(cherry picked from commit b3c9d6785e)
2023-06-09 15:48:40 +07:00
Jim Laskey
977d4f91c1 8306112: Implementation of JEP 445: Unnamed Classes and Instance Main Methods (Preview)
8308613: javax.lang.model updates for JEP 445 (preview)
8308913: Update core reflection for JEP 445 (preview)

Co-authored-by: Maurizio Cimadamore <mcimadamore@openjdk.org>
Co-authored-by: Joe Darcy <darcy@openjdk.org>
Co-authored-by: Jan Lahoda <jlahoda@openjdk.org>
Co-authored-by: Jim Laskey <jlaskey@openjdk.org>
Co-authored-by: Adam Sotona <asotona@openjdk.org>
Reviewed-by: mcimadamore, vromero, darcy
(cherry picked from commit 98b53c06cf)
2023-06-09 15:48:39 +07:00
Calvin Cheung
f506bf05bd 8309170: CDS archive heap is always relocated for larger heap
Reviewed-by: stuefe, iklam
(cherry picked from commit e970ddbc60)
2023-06-09 15:48:38 +07:00
Adam Sotona
8d5c2d2f5d 8308842: Consolidate exceptions thrown from Class-File API
Reviewed-by: briangoetz
(cherry picked from commit 4b8922f576)
2023-06-09 15:48:37 +07:00
Joe Darcy
390b5f1381 8309416: Misstatement in semantics of methods in javax.lang.model.ElementFilter
Reviewed-by: prappo
(cherry picked from commit 2b38343e4d)
2023-06-09 15:48:36 +07:00
Alexander Zvegintsev
4fa45eb884 8280994: [XWayland] Drag and Drop does not work in java -> wayland app direction
Reviewed-by: prr, psadhukhan
(cherry picked from commit 73352b68c4)
2023-06-09 15:48:35 +07:00
Antonios Printezis
146554306d 8308726: RISC-V: avoid unnecessary slli in the vectorized arraycopy stubs for bytes
Reviewed-by: fyang, luhenry
(cherry picked from commit 5cd8af7622)
2023-06-09 15:48:34 +07:00
Antonios Printezis
44026a6630 8308969: make test-prebuilt doesn't return the correct exit code
Reviewed-by: erikj
(cherry picked from commit 80232b7e75)
2023-06-09 15:48:33 +07:00
changpeng1997
854531785f 8309129: AArch64: guarantee(T != T2S) failed: "incorrect arrangement" after JDK-8307795
Reviewed-by: thartmann, xgong, eastigeevich
(cherry picked from commit 6d511f1376)
2023-06-09 15:48:32 +07:00
Jan Lahoda
87fbbb8c87 8291966: SwitchBootstrap.typeSwitch could be faster
Reviewed-by: asotona
(cherry picked from commit 9be5769a68)
2023-06-09 15:48:31 +07:00
Hannes Wallnöfer
d0078e8b61 8306578: Report error if no label given in @see and {@link} when no default is available
Reviewed-by: jjg
(cherry picked from commit db0857ddd8)
2023-06-09 15:48:30 +07:00
Prasanta Sadhukhan
3ffa1f0667 8296920: Regression Test DialogOrient.java fails on MacOS
Reviewed-by: honkar, dnguyen, achung, jdv
(cherry picked from commit 8c9d21e519)
2023-06-09 15:48:29 +07:00
Christoph Langer
3e0ad99cdf 8303465: KeyStore of type KeychainStore, provider Apple does not show all trusted certificates
Reviewed-by: mbaesken, weijun
(cherry picked from commit ac41c03003)
2023-06-09 15:48:29 +07:00
David Leopoldseder
d21848f653 8309104: [JVMCI] compiler/unsafe/UnsafeGetStableArrayElement test asserts wrong values with Graal
Reviewed-by: dnsimon, thartmann
(cherry picked from commit 11fb5b2209)
2023-06-09 15:48:28 +07:00
Vladimir Kempik
32d52e41fd 8309405: RISC-V: is_deopt may produce unaligned memory read
Reviewed-by: fyang, luhenry
(cherry picked from commit a02d8001fa)
2023-06-09 15:48:27 +07:00
Roberto Castañeda Lozano
b0bb7c39b3 8302673: [SuperWord] MaxReduction and MinReduction should vectorize for int
Co-authored-by: Jatin Bhateja <jbhateja@openjdk.org>
Reviewed-by: epeter, kvn
(cherry picked from commit 3fa776d66a)
2023-06-09 15:48:26 +07:00
Emanuel Peter
382b9dd374 8309268: C2: "assert(in_bb(n)) failed: must be" after JDK-8306302
Reviewed-by: rcastanedalo, kvn, thartmann
(cherry picked from commit 22a9a86be0)
2023-06-09 15:48:25 +07:00
Jan Lahoda
cf2316d47f 8305225: A service broken error despite annotation processor generating it if directives listed
Reviewed-by: asotona
(cherry picked from commit b6c9232b8b)
2023-06-09 15:48:24 +07:00
Jan Lahoda
e96bf21262 8309336: Incorrect switch in enum not reported properly
Reviewed-by: vromero
(cherry picked from commit 05fb6c6648)
2023-06-09 15:48:23 +07:00
Gui Cao
7fca1a198a 8309332: RISC-V: Improve PrintOptoAssembly output of vector nodes
Reviewed-by: yzhu, fyang
(cherry picked from commit 08c91c2212)
2023-06-09 15:48:22 +07:00
Chris Plummer
3a41c7cddd 8309334: ProcessTools.main() does not properly set thread names when using the virtual thread wrapper
Reviewed-by: amenkov, lmesnik, sspitsyn, alanb
(cherry picked from commit ecb17532dc)
2023-06-09 15:48:21 +07:00
Jaikiran Pai
9664b866e2 8309409: Update HttpInputStreamTest and BodyProcessorInputStreamTest to use hg.openjdk.org
Reviewed-by: dfuchs
(cherry picked from commit ac1597bcc7)
2023-06-09 15:48:20 +07:00
Chris Plummer
716ad3a93b 8309391: Remove non-failing tests from test/jdk/ProblemList-Virtual.txt
Reviewed-by: dcubed, lmesnik
(cherry picked from commit fdb5893bf0)
2023-06-09 15:48:19 +07:00
Guoxiong Li
1e252c1e57 8309265: Serial: Remove the code related to GC overheap limit
Reviewed-by: ayang, tschatzl
(cherry picked from commit 6edd786bf6)
2023-06-09 15:48:18 +07:00
Dingli Zhang
95ee9cafa5 8309254: Implement fast-path for ASCII-compatible CharsetEncoders on RISC-V
Reviewed-by: luhenry, yzhu, fyang, fjiang
(cherry picked from commit 61bb014a86)
2023-06-09 15:48:17 +07:00
Alex Menkov
8c7c91a6fa 8308978: regression with a deadlock involving FollowReferences
Reviewed-by: sspitsyn, lmesnik
(cherry picked from commit 62c935d4fa)
2023-06-09 15:48:16 +07:00
Joe Wang
2ae3bbee63 8303530: Redefine JAXP Configuration File
Reviewed-by: naoto, lancea, alanb, smarks
(cherry picked from commit aff9cea054)
2023-06-09 15:48:15 +07:00
Chris Plummer
21ad939f7b 8309329: com/sun/jdi/DeferredStepTest.java fails with virtual threads due to not waiting for threads to exit
Reviewed-by: sspitsyn, lmesnik, amenkov
(cherry picked from commit 1bb037bdc6)
2023-06-09 15:48:14 +07:00
Mandy Chung
6713afaa28 8309241: ClassForNameLeak fails intermittently as the class loader hasn't been unloaded
Reviewed-by: dnsimon, bchristi
(cherry picked from commit a23bbea959)
2023-06-09 15:48:13 +07:00
Daniel Fuchs
0e61326a75 8309200: java/net/httpclient/ExecutorShutdown fails intermittently, if connection closed during upgrade
Reviewed-by: jpai, djelinski
(cherry picked from commit 931913fbb2)
2023-06-09 15:48:12 +07:00
Andrew Haley
389dc61519 8296411: AArch64: Accelerated Poly1305 intrinsics
Reviewed-by: redestad, adinn
(cherry picked from commit dc21e8aa83)
2023-06-09 15:48:11 +07:00
Poonam Bajaj
d5381fc93e 8303215: Make thread stacks not use huge pages
Reviewed-by: stuefe, dholmes
(cherry picked from commit 59d9d9fcb9)
2023-06-09 15:48:08 +07:00
Albert Mingkun Yang
40e00d8a46 8309286: G1: Remove unused G1HeapRegionAttr::is_valid_gen
Reviewed-by: tschatzl
(cherry picked from commit cb1e5e3f0f)
2023-06-09 15:48:06 +07:00
Stefan Karlsson
cc21938e01 8309210: Extend VM Operations hs_err logging
Reviewed-by: dholmes, stuefe, eosterlund, sjohanss
(cherry picked from commit e8268d9163)
2023-06-09 15:48:05 +07:00
Christian Hagedorn
2f3d643ce9 8308892: Bad graph detected in build_loop_late after JDK-8305635
Reviewed-by: rcastanedalo, roland, thartmann
(cherry picked from commit 7dbdad50a6)
2023-06-09 15:48:04 +07:00
Severin Gehwolf
9153f78d16 8308090: Add container tests for on-the-fly resource quota updates
Reviewed-by: dholmes, mseledtsov
(cherry picked from commit dc8bc6c98c)
2023-06-09 15:48:03 +07:00
Jan Kratochvil
3119ba47fd 8309287: Add fontconfig requirement to building.md for Debian
Reviewed-by: erikj
(cherry picked from commit 73e7af9e28)
2023-06-09 15:48:01 +07:00
Sibabrata Sahoo
c2d74a9e26 8308711: Develop additional Tests for KEM implementation
Reviewed-by: weijun
(cherry picked from commit aeb53e67f9)
2023-06-09 15:48:00 +07:00
JoKern65
43797eed21 8309224: Fix xlc17 clang 15 warnings in java.desktop
Reviewed-by: prr, goetz

(cherry picked from commit dcd9590fed)
2023-06-09 15:44:31 +07:00
Erik Österlund
1514affc90 8308752: Generational ZGC: Avoid final marking through stack chunks
Reviewed-by: stefank, aboldtch
(cherry picked from commit 8f1ce78907)
2023-06-09 15:31:46 +07:00
Axel Boldt-Christmas
92039362c6 8308387: CLD created and unloading list sharing _next node pointer leads to concurrent YC missing CLD roots
Reviewed-by: stefank, coleenp, dholmes, eosterlund
(cherry picked from commit 7b0a33600e)
2023-06-09 15:31:45 +07:00
Roberto Castañeda Lozano
06ad013a7c 8309295: C2: MaxNode::signed_min() returns nullptr for int operands
Reviewed-by: thartmann
(cherry picked from commit 60f3b87d96)
2023-06-09 15:31:44 +07:00
Aggelos Biboudis
afb7b0644b 8309093: Underscore with brackets
Reviewed-by: jlahoda
(cherry picked from commit 8007599756)
2023-06-09 15:31:43 +07:00
Alan Bateman
6b9258f66f 8307478: Implementation of Prepare to Restrict The Dynamic Loading of Agents
Reviewed-by: sspitsyn, cjplummer
(cherry picked from commit 5bd2af26e6)
2023-06-09 15:31:42 +07:00
Tejesh R
7c1cd7cdde 8307105: JFileChooser InvalidPathException when selecting some system folders on Windows
Reviewed-by: aivanov, abhiscxk, dnguyen
(cherry picked from commit 325940b091)
2023-06-09 15:31:41 +07:00
Matias Saavedra Silva
2472c1fc8e 8308891: TestCDSVMCrash.java needs @requires vm.cds
Reviewed-by: dcubed
(cherry picked from commit 101bf2290d)
2023-06-09 15:31:40 +07:00
Doug Simon
4d170d845e 8308954: [JVMCI] code installation increments decompile_count for call_site_target_value failures
Reviewed-by: never
(cherry picked from commit 2bb1972483)
2023-06-09 15:31:39 +07:00
Martin Doerr
d2217a7566 8308469: [PPC64] Implement alternative fast-locking scheme
Reviewed-by: rrich, lucy
(cherry picked from commit 0ab09630c6)
2023-06-09 15:31:38 +07:00
Zdenek Zambersky
5d03f413cb 8309138: Fix container tests for jdks with symlinked conf dir
Reviewed-by: sgehwolf
(cherry picked from commit ec55539534)
2023-06-09 15:31:37 +07:00
Chris Plummer
6d0ebf2abc 8309146: extend JDI StackFrame.setValue() and JDWP StackFrame.setValues minimal support for virtual threads
Reviewed-by: sspitsyn, alanb
(cherry picked from commit e8271649e0)
2023-06-09 15:31:37 +07:00
Chen Liang
51dc034412 8302822: Method/Field/Constructor/RecordComponent::getGenericInfo() is not thread safe
Reviewed-by: stsypanov, redestad
(cherry picked from commit be36096a19)
2023-06-09 15:31:35 +07:00
Chris Plummer
be55ae01dc 8308232: nsk/jdb tests don't pass -verbose flag to the debuggee
Reviewed-by: sspitsyn, lmesnik
(cherry picked from commit c6f20db945)
2023-06-09 15:31:34 +07:00
Mark Powers
e2ddcd8f0e 8307794: Test for HSS/LMS Signature Verification
Reviewed-by: mullan
(cherry picked from commit d987176412)
2023-06-09 15:31:33 +07:00
Ferenc Rakoczi
3916d25e0d 8298127: HSS/LMS Signature Verification
Reviewed-by: weijun, mullan
(cherry picked from commit 050425b141)
2023-06-09 15:31:32 +07:00
Adam Sotona
716c092251 8308856: jdk.internal.classfile.impl.EntryMap::nextPowerOfTwo math problem
Reviewed-by: jlahoda
(cherry picked from commit a6109bf1ea)
2023-06-09 15:31:32 +07:00
Jan Lahoda
d979d0dbc9 8308943: jdk.internal.le build fails on AIX
Reviewed-by: asotona
(cherry picked from commit 6adc242cf3)
2023-06-09 15:31:30 +07:00
Volker Simonis
6b1ad5666d 8307990: jspawnhelper must close its writing side of a pipe before reading from it
Reviewed-by: stuefe, rriggs
(cherry picked from commit 39f6d807db)
2023-06-09 15:31:29 +07:00
Aleksey Shipilev
35332fdf98 8308803: Improve java/util/UUID/UUIDTest.java
Reviewed-by: jpai, rriggs
(cherry picked from commit 4460429d7a)
2023-06-09 15:31:29 +07:00
Christian Hagedorn
a369ad132d 8307683: Loop Predication should not hoist range checks with trap on success projection by negating their condition
Reviewed-by: thartmann, roland
(cherry picked from commit dfd3da3f52)
2023-06-09 15:31:28 +07:00
Thomas Schatzl
5416fd0860 8308766: TLAB initialization may cause div by zero
Reviewed-by: shade, ayang
(cherry picked from commit 96ed1392d1)
2023-06-09 15:31:27 +07:00
Yanhong Zhu
b6b598bf96 8303417: RISC-V: Merge vector instructs with similar match rules
Reviewed-by: fyang, rehn, dzhang
(cherry picked from commit 6c7225f819)
2023-06-09 15:31:26 +07:00
Hao Sun
6f9c4e6159 8308503: AArch64: SIGILL when running with -XX:UseBranchProtection=pac-ret on hardware without PAC feature
Reviewed-by: aph, ngasson, dlong
(cherry picked from commit a46b5acc15)
2023-06-09 15:31:25 +07:00
Sandhya Viswanathan
d46d643a7a 8300865: C2: product reduction in ProdRed_Double is not vectorized
Reviewed-by: fgao, epeter, kvn
(cherry picked from commit f9ad7df4da)
2023-06-09 15:31:24 +07:00
Justin King
d5f89fea9f 8305320: DbgStrings and AsmRemarks are leaking
Reviewed-by: coleenp, fparain
(cherry picked from commit 8eda97dc8d)
2023-06-09 15:31:23 +07:00
Jonathan Gibbons
e0e58b0062 8309150: Need to escape " inside attribute values
Reviewed-by: prappo
(cherry picked from commit 09514745fc)
2023-06-09 15:31:22 +07:00
David Holmes
dc9d1d5014 8309171: Test vmTestbase/nsk/jvmti/scenarios/jni_interception/JI05/ji05t001/TestDescription.java fails after JDK-8308341
Reviewed-by: dcubed, gziemski
(cherry picked from commit 0119969816)
2023-06-09 15:31:21 +07:00
Dean Long
70624cf111 8308975: Fix signed integer overflow in compiler code, part 2
Reviewed-by: aph, coleenp, kvn
(cherry picked from commit f8a924a749)
2023-06-09 15:31:20 +07:00
Chris Plummer
b29ceb9e4f 8308819: add JDWP and JDI virtual thread support for ThreadReference.ForceEarlyReturn
Reviewed-by: sspitsyn, alanb
(cherry picked from commit 5531f6ba1b)
2023-06-09 15:31:19 +07:00
Daniel D. Daugherty
4640b9537d 8309236: ProblemList java/util/concurrent/locks/Lock/OOMEInAQS.java with ZGC and Generational ZGC again
Reviewed-by: bpb, azvegint
(cherry picked from commit e42a4b659a)
2023-06-09 15:31:18 +07:00
Brian Burkhalter
67b9d9b261 8308678: (fs) UnixPath::toRealPath needs additional permissions when running with SM (macOS)
Reviewed-by: lancea, alanb
(cherry picked from commit 8dbd384003)
2023-06-09 15:31:17 +07:00
Roger Riggs
8de7a796c7 8304914: Use OperatingSystem, Architecture, and Version in jpackage
Reviewed-by: asemenyuk
(cherry picked from commit c3cd481a9a)
2023-06-09 15:31:16 +07:00
Chris Plummer
d501322e41 8309159: Some minor comment and code cleanup in jdk/com/sun/jdi/PopFramesTest.java
Reviewed-by: sspitsyn, lmesnik
(cherry picked from commit eae1f59da9)
2023-06-09 15:31:15 +07:00
Daniel D. Daugherty
1868e69088 8309230: ProblemList jdk/incubator/vector/Float64VectorTests.java on aarch64
8309231: ProblemList vmTestbase/nsk/jvmti/scenarios/jni_interception/JI05/ji05t001/TestDescription.java

Reviewed-by: darcy
(cherry picked from commit 45473ef235)
2023-06-09 15:31:12 +07:00
Chen Liang
efd81cb6ba 8299505: findVirtual on array classes incorrectly restricts the receiver type
Reviewed-by: mchung
(cherry picked from commit 78aa5f3fc1)
2023-06-09 15:31:10 +07:00
Xue-Lei Andrew Fan
7bfc3ad6f7 8308022: update for deprecated sprintf for java.base
Reviewed-by: naoto
(cherry picked from commit 42ca6e6942)
2023-06-09 15:31:09 +07:00
Naoto Sato
9c12ec1bcb 8308316: Default decomposition mode in Collator
Reviewed-by: rriggs
(cherry picked from commit 1264902517)
2023-06-09 15:31:08 +07:00
Matthias Baesken
fffcd2f3ab 8308872: enhance logging and some exception in krb5/Config.java
Reviewed-by: weijun
(cherry picked from commit 70670b4af6)
2023-06-09 15:31:07 +07:00
Matias Saavedra Silva
a006a7d290 8308910: Allow executeAndLog to accept running process
Reviewed-by: ccheung, iklam
(cherry picked from commit 024d9b131d)
2023-06-09 15:31:06 +07:00
Emanuel Peter
7703b7df22 8308917: C2 SuperWord::output: assert before bailout with CountedLoopReserveKit
Reviewed-by: kvn, thartmann
(cherry picked from commit 25b9803056)
2023-06-09 15:31:05 +07:00
Yadong Wang
b7edca769a 8308765: RISC-V: Expand size of stub routines for zgc only
Reviewed-by: fjiang, fyang
(cherry picked from commit d66b6d8fd2)
2023-06-09 15:31:03 +07:00
Daniel Fuchs
d6c485a0c4 8309120: java/net/httpclient/AsyncShutdownNow.java fails intermittently
Reviewed-by: jpai
(cherry picked from commit 4aea7dab15)
2023-06-09 15:31:02 +07:00
Albert Mingkun Yang
e1fd31b718 8309111: Removing unused constructor of PerfLongCounter and PerfLongVariable
Reviewed-by: dholmes
(cherry picked from commit a990322429)
2023-06-09 15:31:01 +07:00
Aggelos Biboudis
d6876c3c1a 8309054: Parsing of erroneous patterns succeeds
Reviewed-by: jlahoda
(cherry picked from commit 4f3a95af2f)
2023-06-09 15:30:59 +07:00
Johan Sjölen
7fe7c61596 8309044: Replace NULL with nullptr, final sweep of hotspot code
Reviewed-by: stefank, dholmes, kvn, amitkumar
(cherry picked from commit 4f16161607)
2023-06-09 15:30:58 +07:00
Leo Korinth
cd98db8b1e 8309048: Remove malloc locker test case
Reviewed-by: dholmes, tschatzl, coleenp, lmesnik
(cherry picked from commit 88236263dc)
2023-06-09 15:30:56 +07:00
Kim Barrett
7685dde64d 8240774: [REDO] G1DirtyCardQueue destructor has useless flush
Reviewed-by: dholmes, ayang, tschatzl
(cherry picked from commit 927a9ed683)
2023-06-09 15:30:55 +07:00
Dingli Zhang
fd68ea8d69 8308997: RISC-V: Sign extend when comparing 32-bit value with zero instead of testing the sign bit
Co-authored-by: zifeihan <caogui@iscas.ac.cn>
Reviewed-by: fjiang, fyang
(cherry picked from commit 119994f3ce)
2023-06-09 15:30:53 +07:00
Leonid Mesnik
f60435a570 8308986: Disable svc tests failing with virtual thread factory
Reviewed-by: dholmes, dcubed, sspitsyn
(cherry picked from commit 327733c93d)
2023-06-09 15:30:52 +07:00
Alexey Ushakov
3ed5db8e59 JBR-5704 displaySyncOFF: javax/swing/JDialog/Transparency/TransparencyTest.java: JDialog transparency lost upon iconify/deiconify sequence
Corrected startRedraw method to call setNeedsDisplay in displaySync=false mode

(cherry picked from commit bd291402b1)
2023-06-08 12:43:48 +02:00
Nikita Gubarkov
31bec5b54b JBR-5637 Linux: force release grabs before doing _NET_WM_MOVERESIZE. 2023-06-06 22:06:16 +02:00
Sergey Shelomentsev
258e860c9c fixup! JBR-5670 restore original display mode 2023-06-06 21:55:52 +03:00
Sergey Shelomentsev
559499ef3d JBR-5701 update source and target java version in J2DBench build file 2023-06-06 15:54:06 +03:00
Sergey Shelomentsev
7bd0a4f9b8 JBR-2870 add resression test for JPopupMenu
- verify that the popup menu is usable if overlaps WM's dock panel of the bottom of screen
2023-06-06 11:42:43 +03:00
Nikita Tsarev
34f54e4e9e JBR-5630: vmoption to change dead key reporting behavior on macOS 2023-06-02 17:38:29 +02:00
Nikita Tsarev
d9e8213d6a JBR-5469: Fix NextAppWinKey behavior with certain keys 2023-06-02 17:38:23 +02:00
Nikita Tsarev
f45ba83159 JBR-5558: macOS keyboard rewrite 2 2023-06-02 17:38:17 +02:00
Maxim Kartashev
7d51b5d1c0 JBR-5666 Wayland: WLToolkit doesn't work with weston
Multiple Wayland buffers support.
2023-06-02 19:05:40 +04:00
Vladislav Rassokhin
473c0e7675 JBR-5600 Reduce noise in signing scripts output
(cherry picked from commit 4e2fa80e86)
2023-06-02 20:33:46 +07:00
Vladislav Rassokhin
c0fc88ae56 JBR-5600 Sign frameworks as whole, verify framework signature before full app sign
(cherry picked from commit ebb82ed952)
2023-06-02 20:33:45 +07:00
Vladislav Rassokhin
3c0fb6c09d tools/mac/scripts: minor improvements
* don't move into itself
* use `PKG_NAME` variable instead of `${APP_NAME}.pkg`
* cleanup sign.sh
* add `SCRIPT_VERBOSE` env variable to control `set -x`

(cherry picked from commit 45a9853b23)
2023-06-02 20:33:45 +07:00
Vladislav Rassokhin
6411043581 JBR-5600 Staple .pkg with signature
(cherry picked from commit e1dc322fd3)
2023-06-02 20:33:45 +07:00
Vladislav Rassokhin
5761732efc JBR-5600 Notarize macOS binaries using notarytool
(cherry picked from commit f0f1734d50)
2023-06-02 20:33:44 +07:00
Vladislav Rassokhin
ae867dd13d JBR-5600 Sign macOS binaries using jet-sign
(cherry picked from commit 9cbf4e489b)
2023-06-02 20:33:44 +07:00
David Holmes
8c4aed5120 8308341: JNI_GetCreatedJavaVMs returns a partially initialized JVM
Reviewed-by: jsjolen, gziemski
(cherry picked from commit 1e6770fb97)
2023-06-02 18:39:01 +07:00
Joe Darcy
e1fde81faa 8309134: Augment test/langtools/tools/javac/versions/Versions.java for JDK 21 language changes
Reviewed-by: jjg
(cherry picked from commit cb40db052c)
2023-06-02 18:39:01 +07:00
Mandy Chung
447d381f5d 8307944: ClassFileDumper should only load java.nio.file.Path if enabled
Reviewed-by: rriggs
(cherry picked from commit de7fd1c306)
2023-06-02 18:38:59 +07:00
Valerie Peng
bc28eab97d 8297885: misc sun/security/pkcs11 tests timed out
Reviewed-by: xuelei
(cherry picked from commit 7891de331a)
2023-06-02 18:38:59 +07:00
Roger Riggs
ce6acc93c2 8308960: Decouple internal Version and OperatingSystem classes
Reviewed-by: mchung
(cherry picked from commit 323d6ceda6)
2023-06-02 18:38:58 +07:00
Joe Darcy
e219466fe1 8308987: Update java.lang.Class to use javadoc snippets
Reviewed-by: alanb
(cherry picked from commit 1b8e6bf31c)
2023-06-02 18:38:58 +07:00
Daniel Fuchs
7fb6eff67d 8307648: java/net/httpclient/ExpectContinueTest.java timed out
Reviewed-by: djelinski
(cherry picked from commit 04b0e785f6)
2023-06-02 18:38:57 +07:00
Weijun Wang
f81bdb9fbf 8297878: KEM: Implementation
Reviewed-by: ascarpino, mullan
(cherry picked from commit 6b90b0519e)
2023-06-02 18:38:57 +07:00
Brian Burkhalter
a07e48d26e 8290499: new File(parent, "/") breaks normalization – creates File with slash at the end
Reviewed-by: rriggs
(cherry picked from commit 21af8bae38)
2023-06-02 18:38:56 +07:00
Jorn Vernee
82be64576d 8308992: New test TestHFA fails with zero
Reviewed-by: mcimadamore
(cherry picked from commit 804f198c73)
2023-06-02 18:38:56 +07:00
Jasmine Karthikeyan
53be7e77af 8051725: Improve expansion of Conv2B nodes in the middle-end
Reviewed-by: thartmann, qamai, sviswanathan
(cherry picked from commit fb0b1f0c23)
2023-06-02 18:38:55 +07:00
Paul Hohensee
cddee5368d 8304074: [JMX] Add an approximation of total bytes allocated on the Java heap by the JVM
Reviewed-by: dholmes, mchung
(cherry picked from commit 3eced01f9e)
2023-06-02 18:38:54 +07:00
Jie Fu
b608a35ff5 8309110: Build failure after JDK-8307795 due to warnings in micro-benchmark StoreMaskTrueCount.java
Reviewed-by: thartmann
(cherry picked from commit 15e028530a)
2023-06-02 18:38:54 +07:00
Antonios Printezis
6769e5140a 8308977: gtest:codestrings fails on riscv
Reviewed-by: fyang
(cherry picked from commit 4526282266)
2023-06-02 18:38:53 +07:00
changpeng1997
6aebb8deb0 8307795: AArch64: Optimize VectorMask.truecount() on Neon
Reviewed-by: aph, eliu
(cherry picked from commit f600d0369a)
2023-06-02 18:38:53 +07:00
Renjith
f077c476aa 8309095: Remove UTF-8 character from TaskbarPositionTest.java
Reviewed-by: aivanov
(cherry picked from commit 07f2070411)
2023-06-02 18:38:52 +07:00
Maurizio Cimadamore
e1a635436f 8309042: MemorySegment::reinterpret cleanup action is not called for all overloads
Reviewed-by: jvernee
(cherry picked from commit 2b186e246e)
2023-06-02 18:38:52 +07:00
Erik Österlund
227afcd6d9 8308881: Strong CLD oop handle roots are demoted to non-roots concurrently
Reviewed-by: stefank, coleenp
(cherry picked from commit 78aac241b8)
2023-06-02 18:38:51 +07:00
Emanuel Peter
0e6521ce9c 8302670: use-after-free related to PhaseIterGVN interaction with Unique_Node_List and Node_Stack
Co-authored-by: Justin King <jcking@openjdk.org>
Reviewed-by: thartmann, chagedorn, jcking
(cherry picked from commit 1f1f604071)
2023-06-02 18:38:51 +07:00
Tobias Hartmann
ffd88cefa8 8309077: Problemlist compiler/jvmci/TestUncaughtErrorInCompileMethod.java
Reviewed-by: chagedorn
(cherry picked from commit d35a550f6d)
2023-06-02 18:38:50 +07:00
Gui Cao
68d42b43d4 8308817: RISC-V: Support VectorTest node for Vector API
Co-authored-by: Dingli Zhang <dingli@iscas.ac.cn>
Reviewed-by: fjiang, fyang
(cherry picked from commit 457e1cb827)
2023-06-02 18:38:50 +07:00
Ioi Lam
96216a61b3 8308906: Make CIPrintCompilerName a diagnostic flag
Reviewed-by: kvn, stuefe
(cherry picked from commit 7508d9f9e0)
2023-06-02 18:38:49 +07:00
Prasanta Sadhukhan
1906a97381 8309060: Compilation Error in javax/swing/event/FocusEventCauseTest.java
Reviewed-by: abhiscxk, aivanov
(cherry picked from commit a4bae3a9e2)
2023-06-02 18:38:49 +07:00
Renjith
7496c13940 8289547: Update javax/swing/Popup/TaskbarPositionTest.java
Reviewed-by: aivanov, dmarkov, honkar
(cherry picked from commit d73fc70ea2)
2023-06-02 18:38:48 +07:00
Markus Grönlund
ff6d2f47da 8307488: Incorrect weight of the first ObjectAllocationSample JFR event
Reviewed-by: egahlin
(cherry picked from commit 7cf6eecdc8)
2023-06-02 18:38:47 +07:00
Doug Simon
df91c85273 8308930: [JVMCI] TestUncaughtErrorInCompileMethod times out
Reviewed-by: never
(cherry picked from commit a5d8d59469)
2023-06-02 18:38:47 +07:00
Prasanta Sadhukhan
f497bf3056 8306119: Many components respond to a mouse event by requesting focus without supplying the MOUSE_EVENT cause
Reviewed-by: jdv
(cherry picked from commit 70130d3b16)
2023-06-02 18:38:46 +07:00
Albert Mingkun Yang
a62ae67460 8308948: Remove unimplemented ThreadLocalAllocBuffer::reset
Reviewed-by: tschatzl
(cherry picked from commit 6360b49931)
2023-06-02 18:38:45 +07:00
Dingli Zhang
7c364e3436 8308915: RISC-V: Improve temporary vector register usage avoiding the use of v0
Reviewed-by: yzhu, fyang
(cherry picked from commit e21f865d84)
2023-06-02 18:38:45 +07:00
Christian Stein
43d4facc14 8306560: Add TOOLING.jsh load file
Reviewed-by: jlahoda
(cherry picked from commit 547a8b40b3)
2023-06-02 18:38:44 +07:00
Gerard Ziemski
4c0961db3e 8306428: RunThese30M.java crashed with assert(early->flag() == current->flag() || early->flag() == mtNone)
Reviewed-by: jsjolen, stuefe
(cherry picked from commit ca54f4e007)
2023-06-02 18:38:44 +07:00
Erik Gahlin
25d3c8e6c2 8308876: JFR: Deserialization of EventTypeInfo uses incorrect attribute names
Reviewed-by: mgronlun
(cherry picked from commit 5fdb22f911)
2023-06-02 18:38:43 +07:00
Serguei Spitsyn
dc514f00cd 8308814: extend SetLocalXXX minimal support for virtual threads
Reviewed-by: cjplummer
(cherry picked from commit bd113ee048)
2023-06-02 18:38:43 +07:00
Hannes Wallnöfer
a272dbdf55 8286470: Support searching for sections in class/package javadoc
Reviewed-by: jjg
(cherry picked from commit a92363461d)
2023-06-02 18:38:43 +07:00
Calvin Cheung
1d5e9ef6b5 8308594: Use atomic bitset function for PackageEntry::_defined_by_cds_in_class_path
Reviewed-by: coleenp, lfoltan
(cherry picked from commit 55d297fdda)
2023-06-02 18:38:42 +07:00
Xue-Lei Andrew Fan
694d482fa3 8308801: update for deprecated sprintf for libnet in java.base
Reviewed-by: djelinski, rriggs
(cherry picked from commit c72b547425)
2023-06-02 18:38:42 +07:00
Erik Gahlin
7372da0fe2 8308935: jdk.management.jfr.RecordingInfo.toString() lacks test coverage
Reviewed-by: mgronlun
(cherry picked from commit 77c5adb09e)
2023-06-02 18:38:41 +07:00
Ashutosh Mehra
dc4ef0f0e8 8308657: ReplayInline is not availabe in production build
Reviewed-by: kvn, roland, thartmann
(cherry picked from commit ce5251aff7)
2023-06-02 18:38:41 +07:00
Stefan Karlsson
0f27f4b246 8308589: gc/cslocker/TestCSLocker.java timed out
Reviewed-by: eosterlund
(cherry picked from commit cc0976bf7f)
2023-06-02 18:38:40 +07:00
Kevin Walls
66520b30af 8299665: /proc/self/stat parsing in libmanagement broken by execname with spaces
Reviewed-by: sspitsyn, amenkov
(cherry picked from commit 17ef8a44a9)
2023-06-02 18:38:40 +07:00
Tejesh R
7b58f3c48b 8306812: Open source several AWT Miscellaneous tests
Reviewed-by: psadhukhan
(cherry picked from commit c494770ca0)
2023-06-02 18:38:39 +07:00
Erik Österlund
375c694d9b 8308009: Generational ZGC: OOM before clearing all SoftReferences
Reviewed-by: stefank, aboldtch
(cherry picked from commit d3b9b364da)
2023-06-02 18:38:39 +07:00
Roland Westrelin
213b6712f7 8305189: C2 failed "assert(_outcnt==1) failed: not unique"
Reviewed-by: chagedorn, thartmann
(cherry picked from commit bac02b6e9d)
2023-06-02 18:38:38 +07:00
Johan Sjölen
6b9daf666e 8299974: Replace NULL with nullptr in share/adlc/
Reviewed-by: dlong, kvn
(cherry picked from commit 62537d200f)
2023-06-02 18:38:38 +07:00
Doug Simon
61c1759200 8308931: Problemlist compiler/jvmci/TestUncaughtErrorInCompileMethod.java
Reviewed-by: thartmann
(cherry picked from commit f09345b3a4)
2023-06-02 18:38:37 +07:00
Stefan Karlsson
1046189abe 8308844: ProblemList gc/z/TestHighUsage.java with Generational ZGC on windows x64
Reviewed-by: aboldtch, tschatzl
(cherry picked from commit 7c072dbd9d)
2023-06-02 18:38:37 +07:00
Tejesh R
bbc192bc8f 8306137: Open source several AWT ScrollPane related tests
Reviewed-by: aivanov
(cherry picked from commit 4becb7bcb6)
2023-06-02 18:38:36 +07:00
Roland Westrelin
042814e6e7 8308583: SIGSEGV in GraphKit::gen_checkcast
Reviewed-by: thartmann, kvn, never
(cherry picked from commit 199b1bf500)
2023-06-02 18:38:36 +07:00
Sergey Shelomentsev
bd49544ff5 JBR-5670 restore initial display mode after test execution 2023-06-02 14:29:28 +03:00
Sergey Shelomentsev
e0f6c712cb JBR-4880 Fix DeadKeySystemAssertionDialog to avoid receiving key event out of the window 2023-06-02 14:29:24 +03:00
Maxim Kartashev
2626653c5d JBR-5658 Wayland: incorrect scaling of window content
The buffer scale is changed atomically with the size.
WLGraphicsConfig made immutable and is re-created when scaling changes.
WLGraphicsDevice is also re-created when its position changes.
2023-06-01 13:24:53 +04:00
Alexey Ushakov
faead95d98 JBR-5649 Flickering in multi-monitor configuration
Provided corrected initial value for currentDisplayID

(cherry picked from commit 9ba9286595)
2023-05-31 14:34:33 +02:00
Nikita Provotorov
55c8a871ec JBR-5668: The implementation of a11y announcing for macOS crashes with -Xcheck:jni.
- Create a global reference of the passed to EDT accessible object (the local reference) to use it in the AppKit thread ;
- Enable -Xcheck:jni in the tests ;
- Make the tests handle the problematic case .

(cherry picked from commit cba981df4b)
2023-05-30 17:53:16 +03:00
Sergey Shelomentsev
23f2a642dc JBR-5579 Update mouse location checks, set window always on top for ActionListenerTest 2023-05-29 18:40:16 +03:00
Sergey Shelomentsev
6092ee64de JBR-5551 update hit tests on custom title bar
- set windows always on top
- verify mouse location before clicking
2023-05-29 18:40:12 +03:00
Sergey Shelomentsev
c5cdfd13aa remove jb/java/awt/CustomTitleBar/MouseEventsOnClientArea.java 2023-05-29 17:18:31 +03:00
Sergey Shelomentsev
69fcc807ed JBR-5577 fix MouseEventsOnClientArea test
- add Swing/AWT specific Task runners
- split MouseEventsOnClientArea to separate AWT/Swing tests
- use CountDownLatch for tracking mouse events
2023-05-29 17:17:22 +03:00
Sergey Shelomentsev
c2d200da0b remove jb/java/awt/Window/ZOrderOnModalDialogActivation.java 2023-05-29 15:29:35 +03:00
Sergey Shelomentsev
120f6a977c JBR-4494 pass ui scale options for child process 2023-05-29 15:29:30 +03:00
Justin Lu
71d23799bc 8159023: Engineering notation of DecimalFormat does not work as documented
Reviewed-by: naoto
(cherry picked from commit 46c4da7fdd)
2023-05-26 19:27:21 +03:00
Daniel D. Daugherty
3eeec554d3 8308907: ProblemList java/awt/Toolkit/GetScreenInsetsCustomGC/GetScreenInsetsCustomGC.java on linux-x64
8308908: ProblemList javax/sound/sampled/Clip/ClipIsRunningAfterStop.java on linux-x64
8308909: ProblemList sun/java2d/DirectX/OnScreenRenderingResizeTest/OnScreenRenderingResizeTest.java on linux-x64

Reviewed-by: mikael
(cherry picked from commit ee321c70e5)
2023-05-26 19:27:21 +03:00
Calvin Cheung
e42a8cf256 8308073: ClassLoaderExt::append_boot_classpath should handle dynamic archive
Reviewed-by: iklam, matsaave
(cherry picked from commit dc7683a051)
2023-05-26 19:27:20 +03:00
Erik Gahlin
817a6d5c5e 8304375: jdk/jfr/api/consumer/filestream/TestOrdered.java failed with "Expected at least some events to be out of order! Reuse = false"
Reviewed-by: mgronlun
(cherry picked from commit 4870234552)
2023-05-26 19:27:20 +03:00
Ashutosh Mehra
b75a6280ea 8308672: Add version number in the replay file generated by DumpInline
Reviewed-by: kvn
(cherry picked from commit 7d2a7ce240)
2023-05-26 19:27:19 +03:00
Naoto Sato
fded148865 8308108: Support Unicode extension for collation settings
Reviewed-by: iris, rriggs, jlu, alanb
(cherry picked from commit 27ba8bd4ed)
2023-05-26 19:27:19 +03:00
Doug Simon
887d28aca1 8307125: compiler/jvmci/compilerToVM/MaterializeVirtualObjectTest.java hits assert(!Continuation::is_frame_in_continuation(thread(), fr())) failed: No support for deferred values in continuations
Reviewed-by: never
(cherry picked from commit 89b3c375ac)
2023-05-26 19:27:18 +03:00
Erik Gahlin
3a552cc9a2 8306703: JFR: Summary views
Reviewed-by: mgronlun
(cherry picked from commit 98acce13d5)
2023-05-26 19:27:18 +03:00
Maurizio Cimadamore
07352f7a9c 8300491: SymbolLookup::libraryLookup accepts strings with terminators
Reviewed-by: psandoz
(cherry picked from commit 534de6d8ae)
2023-05-26 19:27:17 +03:00
Tyler Steele
7a01257890 8286597: Implement PollerProvider on AIX
Reviewed-by: mdoerr, alanb, vtewari
(cherry picked from commit 48d21bd089)
2023-05-26 19:27:17 +03:00
Michael McMahon
58fcc3e546 8300038: Make new version of JNU_GetStringPlatformChars which checks for null characters
Reviewed-by: dfuchs, naoto

(cherry picked from commit e7edf8d145)
2023-05-26 19:27:02 +03:00
Erik Gahlin
8016e48d24 8308335: JFR: Remove @Experimental from Virtual Threads events
Reviewed-by: alanb, mgronlun
(cherry picked from commit 90e57fd5a9)
2023-05-26 19:20:53 +03:00
Albert Mingkun Yang
8c09a8d7b5 8308098: G1: Remove redundant checks in G1ObjectCountIsAliveClosure
Reviewed-by: tschatzl, iwalulya
(cherry picked from commit 7e2e05d836)
2023-05-26 19:20:52 +03:00
Coleen Phillimore
d89bb15be6 8308655: Narrow types of ConstantPool and ConstMethod returns
Reviewed-by: fparain, matsaave
(cherry picked from commit 2599ada152)
2023-05-26 19:20:51 +03:00
Roberto Castañeda Lozano
4441fc361e 8308746: C2 IR test failures for TestFpMinMaxReductions.java with SSE2
Co-authored-by: Jatin Bhateja <jbhateja@openjdk.org>
Reviewed-by: chagedorn, thartmann
(cherry picked from commit 5a0a238f67)
2023-05-26 19:20:51 +03:00
Pavel Rappo
30d8a28973 8308735: Typos in parameter names
Reviewed-by: naoto, iris, bpb
(cherry picked from commit 38367d3c3a)
2023-05-26 19:20:49 +03:00
Christian Hagedorn
749ffd5c0e 8305635: Replace Parse Predicate IfNode with new ParsePredicateNode and route predicate queries through dedicated classes
Reviewed-by: thartmann, kvn
(cherry picked from commit 4f096eb7c9)
2023-05-26 19:20:48 +03:00
Sergey Bylokhov
eca25204b0 8307132: Cleanup the code of sun.java2d.cmm.lcms package
Reviewed-by: prr
(cherry picked from commit f27bc59f85)
2023-05-26 19:20:48 +03:00
Jaikiran Pai
16d485b39a 8308475: Make the thread dump files generated by jcmd Thread.dump_to_file jtreg failure handler action easily accessible
Reviewed-by: lmesnik
(cherry picked from commit 426ebf4fe9)
2023-05-26 19:20:47 +03:00
Axel Boldt-Christmas
796eb11233 8307958: Metaspace verification is slow causing extreme class unloading times
Reviewed-by: stuefe, coleenp
(cherry picked from commit 8d8153e98a)
2023-05-26 19:20:45 +03:00
Christian Stein
bcb1637ec5 8144891: ToolBox should use java.nio.file.Path internally, instead of java.io.File
Reviewed-by: jjg
(cherry picked from commit d87713440a)
2023-05-26 19:20:44 +03:00
Leo Korinth
05a8c43bd2 8308506: Reduce testing time by removing combinations tested
Reviewed-by: tschatzl, lmesnik
(cherry picked from commit aaa61899c9)
2023-05-26 19:20:43 +03:00
Aggelos Biboudis
54f4f334aa 8308727: Compiler should accept final unnamed variables in try-with-resources
Reviewed-by: jlahoda
(cherry picked from commit 4500bb7a67)
2023-05-26 19:20:41 +03:00
Hannes Wallnöfer
5a6f831906 8305710: Line breaks in search tags cause invalid JSON in index file
Reviewed-by: jjg
(cherry picked from commit 3272e2597a)
2023-05-26 19:20:40 +03:00
Hannes Wallnöfer
68b6723341 8305958: Use links instead of buttons for auto-generated header links
Reviewed-by: jjg
(cherry picked from commit 3f4abff59c)
2023-05-26 19:20:40 +03:00
Adam Sotona
aa90bcc0f8 8308549: Classfile API should fail to generate over-sized Code attribute
Reviewed-by: mchung
(cherry picked from commit bfcae68ed1)
2023-05-26 19:20:39 +03:00
Vladimir Kempik
87dc6004e7 8308656: RISC-V: vstring_compare doesnt manifest usage of all vector registers
Reviewed-by: yzhu, fyang
(cherry picked from commit 2a18e537d6)
2023-05-26 19:20:38 +03:00
Guoxiong Li
72fbf5db95 8288619: Unexpected parsing for @see
Reviewed-by: jjg
(cherry picked from commit a291f002cd)
2023-05-26 19:20:37 +03:00
Serguei Spitsyn
ac96444ba5 8308400: add ForceEarlyReturn support for virtual threads
Reviewed-by: alanb, lmesnik
(cherry picked from commit 89b99143ac)
2023-05-26 19:20:36 +03:00
Chen Liang
a6dd1f22e4 8307652: sealed class hierarchy graph doesn't distinguish non-sealed classes
Reviewed-by: pminborg, jjg
(cherry picked from commit 1451ac1770)
2023-05-26 19:20:35 +03:00
Alex Menkov
e3c8db0437 8299414: JVMTI FollowReferences should support references from VirtualThread stack
Reviewed-by: sspitsyn, kevinw
(cherry picked from commit 207fbcb083)
2023-05-26 19:20:35 +03:00
Jim Laskey
3ff2db0179 8308040: Evaluate new public types in non-public classes
Reviewed-by: rriggs, darcy
(cherry picked from commit b44fa365ca)
2023-05-26 19:20:34 +03:00
Tom Rodriguez
71a4a029d4 8308291: compiler/jvmci/meta/ProfilingInfoTest.java fails with -XX:TieredStopAtLevel=1
Reviewed-by: kvn, chagedorn
(cherry picked from commit ac89e3045b)
2023-05-26 19:20:34 +03:00
Coleen Phillimore
daef083984 8297887: Update Siphash
Reviewed-by: lfoltan
(cherry picked from commit bacf652311)
2023-05-26 19:20:33 +03:00
Chris Plummer
5b8d406a04 8308237: add JDWP and JDI virtual thread support for ThreadReference.PopFrames
8308481: JDI TestScaffold does not support passing app arguments to the debuggee
8305632: Test com/sun/jdi/PopAndInvokeTest.java fails with OpaqueFrameException

Reviewed-by: alanb, sspitsyn, lmesnik
(cherry picked from commit 89f2d458a2)
2023-05-26 19:20:32 +03:00
Erik Gahlin
9921c84601 8307738: JFR: EventStream.openRepository() drops events
Reviewed-by: mgronlun
(cherry picked from commit d10467e27b)
2023-05-26 19:20:32 +03:00
Daniel Fuchs
928c2a5eb1 8308310: HttpClient: Avoid logging or locking from within synchronized blocks
Reviewed-by: jpai
(cherry picked from commit 736b90d54b)
2023-05-26 19:20:31 +03:00
Martin Doerr
7a59c80189 8308761: New test TestHFA needs adaptation for JDK-8308276
Reviewed-by: mcimadamore, mbaesken
(cherry picked from commit 7764f46e9e)
2023-05-26 19:20:30 +03:00
Vitaly Provodin
d35559a45a fixup! IDEA-141456 Multimonitor HIDPI support for Linux 2023-05-26 19:19:55 +03:00
Maxim Kartashev
ef548335c4 8305578: X11GraphicsDevice.pGetBounds() is slow in remote X11 sessions
Reviewed-by: avu, serb

(cherry picked from commit d7245f70e7)
2023-05-26 19:19:05 +03:00
Maxim Kartashev
cd781631a8 Revert "JBR-3688 PyCharm incredibly slow with fakexrandr"
This reverts commit 0aef3419
2023-05-26 19:11:50 +03:00
Vitaly Provodin
85f65db694 Revert "JBR-3813 Regression after fix for JBR-3688"
This reverts commit bc957c83b7.
2023-05-26 19:10:01 +03:00
Vitaly Provodin
a3045012ed Revert "JBR-3916 Deadlock in pGetBounds() on Linux"
This reverts commit 603509c6c4.
2023-05-26 19:09:49 +03:00
Viktor Klang
5de91a382c 8298066: java/util/concurrent/locks/Lock/OOMEInAQS.java timed out
Reviewed-by: alanb
(cherry picked from commit 544978cb76)
2023-05-26 19:07:22 +03:00
Thomas Schatzl
d64497e9a6 8171221: Remove -XX:+CheckMemoryInitialization
Reviewed-by: ayang, shade
(cherry picked from commit 65c8dbe693)
2023-05-26 19:07:22 +03:00
Xiaolin Zheng
d97eb806e1 8308091: Remove unused iRegIHeapbase() matching operand
Reviewed-by: fyang, thartmann
(cherry picked from commit 2d4d850813)
2023-05-26 19:07:21 +03:00
Emanuel Peter
3e8bcf5bae 8308758: Problemlist compiler/c2/irTests/TestVectorConditionalMove.java
Reviewed-by: chagedorn
(cherry picked from commit b7a84b0fd7)
2023-05-26 19:07:20 +03:00
Martin Doerr
8ba055c53b 8303040: linux PPC64le: Implementation of Foreign Function & Memory API (Preview)
Reviewed-by: jvernee, rrich
(cherry picked from commit 20f15352a3)
2023-05-26 19:07:19 +03:00
Tobias Holenstein
cc25f90747 8302736: Major performance regression in Math.log on aarch64
Reviewed-by: thartmann, dlong, aph
(cherry picked from commit 466ec300fc)
2023-05-26 19:07:18 +03:00
Doug Simon
b0c8a2522f 8308151: [JVMCI] capture JVMCI exceptions in hs-err
Reviewed-by: never
(cherry picked from commit 05c095cf39)
2023-05-26 19:07:18 +03:00
Emanuel Peter
b6432122b3 8306302: C2 Superword fix: use VectorMaskCmp and VectorBlend instead of CMoveVF/D
Reviewed-by: fgao, jbhateja
(cherry picked from commit beb75e651f)
2023-05-26 19:07:17 +03:00
Jamil Nimeh
f15bdf80a1 8179502: Enhance OCSP, CRL and Certificate Fetch Timeouts
Reviewed-by: mullan
(cherry picked from commit 2836c34b64)
2023-05-26 19:07:16 +03:00
Chen Liang
0313218064 8306698: Add overloads to MethodTypeDesc::of
Reviewed-by: mchung
(cherry picked from commit 8ffa264cf0)
2023-05-26 19:07:15 +03:00
Valerie Peng
e1d80270e5 8301154: SunPKCS11 KeyStore deleteEntry results in dangling PrivateKey entries
Reviewed-by: weijun, hchao
(cherry picked from commit 6b27dad76e)
2023-05-26 19:07:15 +03:00
Daniel D. Daugherty
3dc13d4f76 8308716: ProblemList java/util/concurrent/ScheduledThreadPoolExecutor/BasicCancelTest.java with genzgc on windows-x64
8308718: ProblemList three mlvm/indy/func/jvmti tests on windows-x64 in Xcomp mode
8308720: ProblemList java/awt/event/SequencedEvent/MultipleContextsFunctionalTest.java on macosx-x64

Reviewed-by: azvegint, darcy
(cherry picked from commit ed0e956fc2)
2023-05-26 19:07:14 +03:00
Afshin Zafari
497683df17 8303942: os::write should write completely
Reviewed-by: coleenp, iklam, dholmes, mgronlun
(cherry picked from commit bddf48380e)
2023-05-26 19:07:13 +03:00
Quan Anh Mai
f7d1ab24b0 8306706: Support out-of-line code generation for MachNodes
Reviewed-by: thartmann, kvn
(cherry picked from commit ab241b3428)
2023-05-26 19:07:12 +03:00
Brian Burkhalter
d1301e4a06 8308016: Use snippets in java.io package
Reviewed-by: rriggs
(cherry picked from commit 710453c676)
2023-05-26 19:07:12 +03:00
Axel Boldt-Christmas
b40d6fe963 8308116: jdk.test.lib.compiler.InMemoryJavaCompiler.compile does not close files
Reviewed-by: lmesnik, stefank, jlahoda
(cherry picked from commit e9320f31dc)
2023-05-26 19:07:11 +03:00
changpeng1997
172745cbee 8307523: [vectorapi] Optimize MaskFromLongBenchmark.java
Reviewed-by: qamai, xgong, ngasson
(cherry picked from commit 97d3b2731e)
2023-05-26 19:07:10 +03:00
Jamil Nimeh
872a8f2c57 8305091: Change ChaCha20 cipher init behavior to match AES-GCM
Reviewed-by: djelinski, ascarpino
(cherry picked from commit bb0ff48aa9)
2023-05-26 19:07:09 +03:00
Jan Kratochvil
a19b282537 8308544: Fix compilation regression from JDK-8306983 on musl libc
Reviewed-by: bpb, stuefe
(cherry picked from commit c0c4d77192)
2023-05-26 19:07:07 +03:00
Daniel Fuchs
a80f5b32d3 8308565: HttpClient: Sanitize logging while stopping
Reviewed-by: jpai
(cherry picked from commit 9e196b3631)
2023-05-26 19:07:07 +03:00
Daniel Fuchs
6100f2ab46 8308545: java/net/httpclient/ShutdownNow.java fails with "stream 1 cancelled"
Reviewed-by: jpai
(cherry picked from commit 582ddeb2b2)
2023-05-26 19:07:06 +03:00
Jan Lahoda
a17ef3c75c 8307814: In the case of two methods with Record Patterns, the second one contains a line number from the first method
Reviewed-by: vromero, godin
(cherry picked from commit 1cfb265bef)
2023-05-26 19:07:06 +03:00
Per Minborg
f610888b50 8308281: Java snippets in the FFM API need to be updated
Reviewed-by: mcimadamore
(cherry picked from commit eb11508eff)
2023-05-26 19:07:06 +03:00
Emanuel Peter
bf1604fedf 8305073: Fix VerifyLoopOptimizations - step 2 - verify idom
Reviewed-by: chagedorn, thartmann, kvn
(cherry picked from commit 26227a6ff8)
2023-05-26 19:07:05 +03:00
Aggelos Biboudis
056d810845 8305582: Compiler crash when compiling record patterns with var
Reviewed-by: vromero, jlahoda
(cherry picked from commit 80d7de7074)
2023-05-26 19:07:05 +03:00
Axel Boldt-Christmas
0808e432e9 8308500: ZStatSubPhase::register_start should not call register_gc_phase_start if ZAbort::should_abort()
Reviewed-by: stefank, eosterlund
(cherry picked from commit e55961331e)
2023-05-26 19:07:04 +03:00
Emanuel Peter
eb8d934a73 8260943: C2 SuperWord: Remove dead vectorization optimization added by 8076284
Reviewed-by: kvn, thartmann
(cherry picked from commit bdd240283e)
2023-05-26 19:07:04 +03:00
Amit Kumar
6352e7439a 8308403: [s390x] separate remaining_cargs from z_abi_160
Reviewed-by: mdoerr, lucy
(cherry picked from commit 4f0f776187)
2023-05-26 19:07:03 +03:00
Emanuel Peter
c545837a06 8302652: [SuperWord] Reduction should happen after loop, when possible
Reviewed-by: kvn, pli, jbhateja, sviswanathan
(cherry picked from commit 06b0a5e038)
2023-05-26 19:07:03 +03:00
Matthias Baesken
64b7431be4 8308300: enhance exceptions in MappedMemoryUtils.c
Reviewed-by: alanb, clanger, bpb
(cherry picked from commit 69f508a2ac)
2023-05-26 19:07:01 +03:00
Adam Sotona
b5671ea52e 8308093: Disable language preview features use in JDK
Reviewed-by: liach, erikj, alanb, darcy
(cherry picked from commit c4408278d1)
2023-05-26 19:07:00 +03:00
Doug Simon
29ea3ef3eb 8306992: [JVMCI] mitigate more against JVMCI related OOME causing VM to exit
Reviewed-by: never
(cherry picked from commit 422128b70a)
2023-05-26 19:07:00 +03:00
Alan Bateman
bfa616e392 8308038: java/util/concurrent/ThreadPerTaskExecutor/ThreadPerTaskExecutorTest.java timed out
Reviewed-by: dfuchs, jpai
(cherry picked from commit fe8c689eee)
2023-05-26 19:06:59 +03:00
Alan Bateman
0cb7356888 8308235: ThreadContainer registry accumulates weak refs
Reviewed-by: jpai
(cherry picked from commit ada416e66c)
2023-05-26 19:06:59 +03:00
Ichiroh Takiguchi
c8344e2ee1 8308046: Move Solaris related charsets from java.base to jdk.charsets module
Reviewed-by: naoto
(cherry picked from commit 5d8ba938be)
2023-05-26 19:06:58 +03:00
Thomas Stuefe
82bf297c7d 8306507: [linux] Print number of memory mappings in error reports
Reviewed-by: adinn, sgehwolf
(cherry picked from commit 878162b362)
2023-05-26 19:06:58 +03:00
Johan Sjölen
cf0039ee07 8300086: Replace NULL with nullptr in share/c1/
Reviewed-by: thartmann, chagedorn
(cherry picked from commit 90d5041b6a)
2023-05-26 19:06:57 +03:00
Yi-Fan Tsai
cde240a2e1 8308465: Reduce memory accesses in AArch64 MD5 intrinsic
Reviewed-by: aph, phh
(cherry picked from commit 8474e693b4)
2023-05-26 19:06:57 +03:00
quadhier
7ef704d8d1 8302218: CHeapBitMap::free frees with incorrect size
Reviewed-by: aboldtch, iklam, tschatzl
(cherry picked from commit f99ad11dd1)
2023-05-26 19:06:57 +03:00
Joe Darcy
3dbf6f50c3 8308388: Update description of SourceVersion.RELEASE_21
Reviewed-by: iris
(cherry picked from commit d77a41033a)
2023-05-26 19:06:56 +03:00
Matias Saavedra Silva
512e4ae94b 8307190: Refactor ref_at methods in Constant Pool
Reviewed-by: coleenp, iklam
(cherry picked from commit 3f4cfbdd36)
2023-05-26 19:06:56 +03:00
Jiangli Zhou
19331d45c1 8308458: Windows build failure with disassembler.cpp(792): warning C4267: '=': conversion from 'size_t' to 'int'
Reviewed-by: jiefu
(cherry picked from commit 491bdeaa90)
2023-05-26 19:06:55 +03:00
Calvin Cheung
b97a6c9b4a 8308034: Some CDS tests need to use @requires vm.flagless
Reviewed-by: iklam
(cherry picked from commit b58980b73d)
2023-05-26 19:06:54 +03:00
George Adams
41c0897ad5 8307573: Implementation of JEP 449: Deprecate the Windows 32-bit x86 Port for Removal
Reviewed-by: erikj
(cherry picked from commit 29b8d3d9e7)
2023-05-26 19:06:53 +03:00
Maurizio Cimadamore
e86614a3a2 8308276: Change layout API to work with bytes, not bits
Reviewed-by: psandoz, pminborg
(cherry picked from commit 5fc9b5787d)
2023-05-26 19:06:52 +03:00
Maurizio Cimadamore
fec208a6b1 8287834: Add SymbolLookup::or method
Reviewed-by: psandoz
(cherry picked from commit 91aeb5de58)
2023-05-26 19:06:51 +03:00
Thomas Obermeier
d1228ae376 8307908: [ppc] Add failing RTM tests to ProblemList until 8307907 is fixed.
Reviewed-by: clanger, goetz
(cherry picked from commit 4f88437b7f)
2023-05-26 19:06:51 +03:00
Andrew Leonard
8694368a2a 8308407: libjvm library not reproducibly comparable between vendors
Co-authored-by: Simon Tooke <stooke@openjdk.org>
Reviewed-by: andrew, dholmes

(cherry picked from commit dc30e68651)
2023-05-26 19:06:11 +03:00
Matthew Donovan
069dc80037 8301381: Verify DTLS 1.0 cannot be negotiated
Reviewed-by: xuelei
(cherry picked from commit 18e2446420)
2023-05-26 19:05:16 +03:00
Prasanta Sadhukhan
a9e7af0243 8307311: Timeouts on one macOS 12.6.1 host of two Swing JTableHeader tests
Reviewed-by: dnguyen, azvegint
(cherry picked from commit b3cb82b859)
2023-05-26 19:05:16 +03:00
Alexander Zvegintsev
2d8a54a61e 8280993: [XWayland] Popup is not closed on click outside of area controlled by XWayland
Reviewed-by: prr
(cherry picked from commit 3d550f7485)
2023-05-26 19:05:16 +03:00
Darragh Clarke
5f957dec3e 7065228: To interpret case-insensitive string locale independently
Reviewed-by: dfuchs, naoto, djelinski, jpai, michaelm
(cherry picked from commit 05e99db466)
2023-05-26 19:05:15 +03:00
Jan Lahoda
ae64dbb4f2 8306983: Do not invoke external programs when switch terminal to raw mode on selected platforms
Co-authored-by: Adam Sotona <asotona@openjdk.org>
Reviewed-by: erikj, vromero, bpb
(cherry picked from commit a9705196ce)
2023-05-26 19:05:14 +03:00
Andrey Turbanov
92f5d6be02 8305785: Avoid redundant HashMap.containsKey call in java.util.regex
Reviewed-by: stsypanov, jpai
(cherry picked from commit 6b65e5754c)
2023-05-26 19:05:14 +03:00
Erik Österlund
0f3393da8e 8308181: Generational ZGC: Remove CLDG_lock from old gen root scanning
Reviewed-by: ayang, aboldtch
(cherry picked from commit 8011ba74a2)
2023-05-26 19:05:13 +03:00
Aggelos Biboudis
653e101c31 8302344: Compiler Implementation for Unnamed patterns and variables (Preview)
8307444: java.lang.AssertionError when using unnamed patterns
8307482: Compiler should accept var _ in nested patterns in switch case
8307007: Implementation for javax.lang.model for unnamed variables (Preview)
8308312: Compiler should fail when a local variable declaration does not include an Identifier and does not have an initializer
8308309: Compiler should accept mixed masked and unmasked variables in lambda parameters

Co-authored-by: Jan Lahoda <jlahoda@openjdk.org>
Co-authored-by: Aggelos Biboudis <abimpoudis@openjdk.org>
Reviewed-by: vromero, darcy
(cherry picked from commit 8aa50288a1)
2023-05-26 19:05:12 +03:00
Leo Korinth
a9bdb0b7ce 8307804: Reorganize ArrayJuggle test cases
Reviewed-by: dholmes, lmesnik
(cherry picked from commit b588797900)
2023-05-26 19:05:11 +03:00
Serguei Spitsyn
eaacef32ac 8308000: add PopFrame support for virtual threads
Reviewed-by: lmesnik, alanb
(cherry picked from commit 928fcf9751)
2023-05-26 19:05:11 +03:00
Emanuel Peter
25e58cbfcf 8308084: C2 fix idom bug in PhaseIdealLoop::create_new_if_for_predicate
Reviewed-by: chagedorn, thartmann, kvn
(cherry picked from commit 41beb448d2)
2023-05-26 19:05:10 +03:00
Emanuel Peter
70dfc4f612 8307619: C2 failed: Not monotonic (AndI CastII LShiftI) in TestShiftCastAndNotification.java
Reviewed-by: chagedorn, thartmann
(cherry picked from commit b6a9f5c304)
2023-05-26 19:05:09 +03:00
Jan Lahoda
81d068fba0 8300543: Compiler Implementation for Pattern Matching for switch
8300545: Compiler Implementation for Record Patterns

Co-authored-by: Aggelos Biboudis <abimpoudis@openjdk.org>
Reviewed-by: vromero, mcimadamore
(cherry picked from commit eaa80ad08c)
2023-05-26 19:05:08 +03:00
Ioi Lam
603dd11d81 8308342: Remove MetaspaceClosure::Ref::keep_after_pushing()
Reviewed-by: ccheung
(cherry picked from commit 5ccc962942)
2023-05-26 19:05:07 +03:00
Daniel D. Daugherty
e2adef86a0 8307783: runtime/reflect/ReflectOutOfMemoryError.java timed out
8308468: ProblemList containers/docker/TestMemoryAwareness.java on linux-x64
8308470: ProblemList javax/management/remote/mandatory/connection/BrokenConnectionTest.java on linux-all
8308471: ProblemList javax/management/remote/mandatory/loading/MissingClassTest.java on windows-x64 w/ loom
8308472: ProblemList javax/management/remote/mandatory/loading/RMIDownloadTest.java on windows-x64 w/ loom
8308473: ProblemList java/lang/instrument/NativeMethodPrefixAgent.java with loom

Reviewed-by: lmesnik
(cherry picked from commit a0f4a948bb)
2023-05-26 19:05:06 +03:00
Kevin Walls
0b6eca5c69 8304685: Fix whitespace parsing in libjdwp
Reviewed-by: cjplummer, amenkov, sspitsyn
(cherry picked from commit 939344b843)
2023-05-26 19:05:05 +03:00
Leonid Mesnik
1717ea49f0 8307962: Exclude gc/g1/TestSkipRebuildRemsetPhase.java fails with virtual test thread factory
Reviewed-by: sspitsyn
(cherry picked from commit 241455fcd1)
2023-05-26 19:05:05 +03:00
Justin Lu
144255ab1f 8308021: Update IANA Language Subtag Registry to Version 2023-05-11
Reviewed-by: lancea, naoto
(cherry picked from commit 34468e1c91)
2023-05-26 19:05:04 +03:00
Weijun Wang
aa4a00e69c 8305972: Update XML Security for Java to 3.0.2
Reviewed-by: mullan
(cherry picked from commit f0aebc8141)
2023-05-26 19:05:03 +03:00
Coleen Phillimore
a5213b8796 8308396: Fix offset_of conversion warnings in runtime code
Reviewed-by: amitkumar, jsjolen, fparain
(cherry picked from commit 265f40b4f7)
2023-05-26 19:05:02 +03:00
Brian Burkhalter
5a386f99da 8281149: (fs) java/nio/file/FileStore/Basic.java fails with java.lang.RuntimeException: values differ by more than 1GB
Reviewed-by: jpai, rriggs
(cherry picked from commit a5343fa605)
2023-05-26 19:05:01 +03:00
Maurizio Cimadamore
7e606a8d34 8308248: Revisit alignment of layout constants on 32-bit platforms
Reviewed-by: psandoz, pminborg
(cherry picked from commit 44218b1c9e)
2023-05-26 19:05:01 +03:00
Adam Sotona
395438c8c8 8308410: broken compilation of test\jdk\tools\launcher\exeJliLaunchTest.c
Reviewed-by: alanb
(cherry picked from commit 80ef5c228b)
2023-05-26 19:05:00 +03:00
Kick-it11
64fcdd888a 8306057: False arguments calling dispatch_base for aarch64
Reviewed-by: aph, fyang
(cherry picked from commit 326d778ccf)
2023-05-26 19:04:59 +03:00
Jie Fu
9afd832971 8308408: Build failure with -Werror=maybe-uninitialized in libjli/java.c with GCC8
Reviewed-by: alanb
(cherry picked from commit 690d3969b8)
2023-05-26 19:04:58 +03:00
Adam Sotona
25c19f9b3d 8303669: SelectVersion indexes past the end of the argv array
Reviewed-by: vromero
(cherry picked from commit fa14314853)
2023-05-26 19:04:58 +03:00
Raffaello Giulietti
9644542832 8132995: Matcher$ImmutableMatchResult should be optimized to reduce space usage
Reviewed-by: redestad, smarks
(cherry picked from commit 25868b95ee)
2023-05-26 19:04:57 +03:00
Aleksey Shipilev
949c2b8700 8308118: Avoid multiarray allocations in AESCrypt.makeSessionKey
Reviewed-by: xuelei
(cherry picked from commit 6765761075)
2023-05-26 19:04:56 +03:00
Dingli Zhang
36edb447b4 8307609: RISC-V: Added support for Extract, Compress, Expand and other nodes for Vector API
Co-authored-by: zifeihan <caogui@iscas.ac.cn>
Reviewed-by: fyang, fjiang
(cherry picked from commit 97ade57fb2)
2023-05-26 19:04:56 +03:00
Feilong Jiang
b8c24f8e88 8308277: RISC-V: Improve vectorization of Match.sqrt() on floats
Reviewed-by: fyang
(cherry picked from commit e520cdc882)
2023-05-26 19:04:55 +03:00
Maxim Kartashev
9631478eac JBR-5656 Builds of JDK 21 are reproducible by default 2023-05-26 11:15:26 +04:00
bourgesl
ed0651cbfd JBR-5651: Improved MTLVertexCache to merge consecutive full-tiles ie use 1 larger quad instead of many quads per row, full-tile is only using 1x1 pixel (full), applied to color, gradient & texture paints + fixed clang warnings
(cherry picked from commit ff9ecea896)
2023-05-24 11:22:54 +02:00
bourgesl
1ec3aa5ead JBR-5638: improved renderer performance for simple rectangular area (see BBoxAATileGenerator), added new statistics in Renderer
(cherry picked from commit 071d81d294)
2023-05-24 11:22:54 +02:00
Maxim Kartashev
fc1bdbb506 JBR-5657 Wayland: sometimes there's a deadlock at the start
Don't exit from toolkit initialization until all the necessary
information has been received from the Wayland server.
2023-05-20 18:49:37 +04:00
Maxim Kartashev
4edf0ca518 JBR-5655 java/awt/Toolkit/Wayland/WaylandToolkit.java: WLToolkit not found
WLToolkit made operational in headless mode
2023-05-20 11:40:29 +04:00
Vitaly Provodin
6fd5df6487 update exclude list on results of 21_b126.4 test runs 2023-05-19 18:27:27 +07:00
Leonid Mesnik
98a2ea3f16 8307865: Invalid is_in_any_VTMS_transition() check in post_dynamic_code_generated_while_holding_locks
Reviewed-by: sspitsyn, cjplummer
(cherry picked from commit 42948c04b9)
2023-05-19 18:27:26 +07:00
Chris Plummer
3f056f3a19 8308187: jdi/EventSet/resume/resume008 failed with "EventHandler> Unexpected event: ThreadStartEvent in thread resume008-thread0"
Reviewed-by: dcubed
(cherry picked from commit 4a6d6d5a59)
2023-05-19 18:27:26 +07:00
Weijun Wang
a668c42a78 8308010: X509Key and PKCS8Key allows garbage bytes at the end
Reviewed-by: mullan
(cherry picked from commit 148df533af)
2023-05-19 18:27:26 +07:00
Ashutosh Mehra
dc16767f05 8308192: Error in parsing replay file when staticfield is an array of single dimension
Reviewed-by: thartmann, kvn
(cherry picked from commit d3feedf511)
2023-05-19 18:27:26 +07:00
Alexander Zvegintsev
0c055f4dc6 8308370: Fix build failures related to the java.awt.Robot documentation
Reviewed-by: dcubed
(cherry picked from commit 02dc95e6b9)
2023-05-19 18:27:26 +07:00
Alexander Zvegintsev
6b87ca01b5 8307779: Relax the java.awt.Robot specification
Reviewed-by: mkartashev, prr
(cherry picked from commit 21aa057faf)
2023-05-19 18:27:26 +07:00
Joe Darcy
37cd365248 8308245: Add -proc:full to describe current default annotation processing policy
Reviewed-by: vromero
(cherry picked from commit 42ecc8a37f)
2023-05-19 18:27:26 +07:00
Calvin Cheung
c20e192b25 8279993: Assert that a shared class is not loaded more than once
Reviewed-by: iklam, stuefe
(cherry picked from commit bb24c36759)
2023-05-19 18:27:25 +07:00
Alisen Chung
aacb764042 8307083: Open source some drag and drop tests 3
Reviewed-by: prr, serb
(cherry picked from commit 1b154e4fd3)
2023-05-19 18:27:25 +07:00
Jasmine Karthikeyan
2262680d26 8305787: Wrong debugging information printed with TraceOptoOutput
Reviewed-by: thartmann, kvn
(cherry picked from commit cc5c9b5da2)
2023-05-19 18:27:25 +07:00
Thomas Stuefe
8d8702a623 8308350: Increase buffer size for jspawnhelper arguments
Reviewed-by: rriggs
(cherry picked from commit 808dc1b047)
2023-05-19 18:27:25 +07:00
Amit Kumar
621bcfced0 8308347: [s390x] build broken after JDK-8304913
Reviewed-by: stuefe, rriggs
(cherry picked from commit a58e0ca9d2)
2023-05-19 18:27:25 +07:00
bobpengxie
86f11f343b 8308283: Build failure with GCC12 & GCC13
Reviewed-by: erikj, jiefu
(cherry picked from commit bfc3ccd90d)
2023-05-19 18:27:25 +07:00
Jan Kratochvil
4cf585eb70 8308290: Add fontconfig requirement to building.md
Reviewed-by: erikj
(cherry picked from commit 57b8ed1398)
2023-05-19 18:27:24 +07:00
Chen Liang
3628f36eb6 8306457: Classfile API components implementations should not be exposed
Reviewed-by: asotona
(cherry picked from commit 3c9ec26370)
2023-05-19 18:27:24 +07:00
Adam Sotona
452e1fd380 8306842: Classfile API performance improvements
Reviewed-by: redestad
(cherry picked from commit f4f5542f8d)
2023-05-19 18:27:24 +07:00
Thomas Stuefe
bfd86a3fed 8308285: Assert on -Xshare:dump when running with -Xlog:cds=trace
Reviewed-by: ccheung, iklam
(cherry picked from commit 95da499ef2)
2023-05-19 18:27:24 +07:00
Ioi Lam
61cce239a6 8308236: Remove SystemDictionaryShared::clone_dumptime_tables()
Reviewed-by: vlivanov, ccheung
(cherry picked from commit 6f75dd8741)
2023-05-19 18:27:24 +07:00
Boris Ulasevich
c30206e95a 8308270: ARM32 build broken after JDK-8304913
Reviewed-by: stuefe, rriggs
(cherry picked from commit 83c096d6e2)
2023-05-19 18:27:24 +07:00
Jiangli Zhou
b608584fb0 8308110: Resolve multiple definition of 'JNI_OnLoad_jsound' linking error
Reviewed-by: alanb, rasbold
(cherry picked from commit 902585bec1)
2023-05-19 18:27:23 +07:00
Eric Caspole
134856e157 8307483: New micros for j.u.c.LockSupport
Co-authored-by: Sergey Kuksenko <skuksenko@openjdk.org>
Reviewed-by: shade, redestad
(cherry picked from commit 6073edf3cd)
2023-05-19 18:27:23 +07:00
Patricio Chilano Mateo
dd92009413 8307365: JvmtiStressModule hit SIGSEGV in JvmtiEventControllerPrivate::recompute_thread_enabled
Reviewed-by: sspitsyn, dcubed, lmesnik
(cherry picked from commit 24094482f0)
2023-05-19 18:27:23 +07:00
Alisen Chung
e2941849e7 8307299: Move more DnD tests to open
Reviewed-by: prr, serb
(cherry picked from commit 950c5df859)
2023-05-19 18:27:23 +07:00
Leonid Mesnik
c822dc3ba1 8308292: Problemlist vmTestbase/nsk/jvmti/AttachOnDemand/attach020/TestDescription.java
Reviewed-by: sspitsyn
(cherry picked from commit 8bedf2efd7)
2023-05-19 18:27:23 +07:00
Brian Burkhalter
41521b99c7 8307976: (fs) Files.createDirectories(dir) returns dir::toAbsolutePath instead of dir
Reviewed-by: alanb
(cherry picked from commit 6d4782bc73)
2023-05-19 18:27:23 +07:00
Joe Darcy
e246e0c1c3 8308239: Tighten up accessibility of nested classes in java.lang.invoke
Reviewed-by: alanb
(cherry picked from commit f57c78337e)
2023-05-19 18:27:22 +07:00
Martin Doerr
343bfc2727 8308246: PPC64le build broken after JDK-8304913
Reviewed-by: shade, mbaesken
(cherry picked from commit 64f6681cc7)
2023-05-19 18:27:22 +07:00
Adam Sotona
90780f5a48 8307326: Package jdk.internal.classfile.java.lang.constant become obsolete
Reviewed-by: erikj, liach
(cherry picked from commit 5763be7267)
2023-05-19 18:27:22 +07:00
JoKern65
dec40473d0 8306304: Fix xlc17 clang warnings in ppc and aix code
Reviewed-by: erikj, tsteele, mbaesken
(cherry picked from commit c7951cf674)
2023-05-19 18:27:22 +07:00
Erik Österlund
71c8d83019 8308043: Deadlock in TestCSLocker.java due to blocking GC while allocating
Reviewed-by: stefank, ayang, tschatzl
(cherry picked from commit 285c833ffa)
2023-05-19 18:27:22 +07:00
Jaikiran Pai
e3d9bbfd8d 8308185: Update Http2TestServerConnection to use SSLSocket.startHandshake()
Reviewed-by: djelinski
(cherry picked from commit 1a6f9810cd)
2023-05-19 18:27:22 +07:00
Aleksey Shipilev
25991e6163 8308088: Improve class check in CollectedHeap::is_oop
Reviewed-by: zgu, tschatzl, ayang, stuefe
(cherry picked from commit b300e73a4a)
2023-05-19 18:27:21 +07:00
Axel Boldt-Christmas
fbb35a42aa 8296469: Instrument VMError::report with reentrant iteration step for register and stack printing
Reviewed-by: eosterlund, stuefe

(cherry picked from commit e34ecc97e6)
2023-05-19 18:27:21 +07:00
Matthias Baesken
5ae3e58ae1 8308156: VerifyCACerts.java misses blank in error output
Reviewed-by: mullan, rhalade
(cherry picked from commit 5a92aae1d9)
2023-05-19 18:27:21 +07:00
Guoxiong Li
7c0bcfe51f 8307955: Prefer to PTRACE_GETREGSET instead of PTRACE_GETREGS in method 'ps_proc.c::process_get_lwp_regs'
Reviewed-by: cjplummer, kevinw
(cherry picked from commit 2f1c65486b)
2023-05-19 18:27:21 +07:00
Ashutosh Mehra
3defc7aed7 8306460: Clear JVM_ACC_QUEUED flag on methods when dumping dynamic CDS archive
Reviewed-by: coleenp, iklam
(cherry picked from commit d3e5065284)
2023-05-19 18:27:21 +07:00
Leonid Mesnik
7909ddd8e1 8308223: failure handler missed jcmd.vm.info command
Reviewed-by: stefank
(cherry picked from commit 563152f32d)
2023-05-19 18:27:21 +07:00
Erik Helin
579ea03965 8307458: Add periodic heap usage JFR events
Reviewed-by: stefank, aboldtch
(cherry picked from commit cb8b8cdd68)
2023-05-19 18:27:20 +07:00
Naoto Sato
6bc1cbe2be 8307547: Support variant collations
Reviewed-by: srl, jlu, alanb
(cherry picked from commit f9a785e855)
2023-05-19 18:27:20 +07:00
Justin Lu
c6167ce338 8300794: Use @snippet in java.util:i18n
Reviewed-by: naoto, lancea
(cherry picked from commit 4e92991809)
2023-05-19 18:27:20 +07:00
Chris Plummer
69f68bebe1 8306467: Fix nsk/jdb/kill/kill001 to work with new JVMTI StopThread support for virtual threads.
Reviewed-by: sspitsyn, amenkov
(cherry picked from commit 64d5157116)
2023-05-19 18:27:20 +07:00
Coleen Phillimore
1fbb56d122 8307533: Use atomic bitset functions for metadata flags
Reviewed-by: ccheung, kbarrett
(cherry picked from commit 488330d53b)
2023-05-19 18:27:20 +07:00
Stefan Karlsson
2315d604eb 8308097: Generational ZGC: Update constructor syntax
Reviewed-by: eosterlund, aboldtch
(cherry picked from commit 60ab1358da)
2023-05-19 18:27:20 +07:00
Stefan Karlsson
8dc4ccabac 8308092: Replace NULL with nullptr in gc/x
Reviewed-by: eosterlund, aboldtch, tschatzl, dholmes
(cherry picked from commit 599fa774b8)
2023-05-19 18:27:19 +07:00
Stefan Karlsson
376f6e619f 8299075: TestStringDeduplicationInterned.java fails because extra deduplication
Reviewed-by: kbarrett, tschatzl
(cherry picked from commit 682359cb48)
2023-05-19 18:27:19 +07:00
Johan Sjölen
b0ec881d16 8300081: Replace NULL with nullptr in share/asm/
Reviewed-by: coleenp
(cherry picked from commit 9d5bab11f0)
2023-05-19 18:27:19 +07:00
Amit Kumar
26a11ed22b 8278411: Implement UseHeavyMonitors consistently, s390 port
Reviewed-by: mdoerr, stuefe, lucy
(cherry picked from commit 41ee125a0f)
2023-05-19 18:27:19 +07:00
Stefan Karlsson
ee6d267603 8308188: ProblemList java/util/concurrent/locks/Lock/OOMEInAQS.java with ZGC on all platforms
Reviewed-by: dcubed
(cherry picked from commit 316bc79e0e)
2023-05-19 18:27:19 +07:00
Calvin Cheung
f1b191ceb1 8307315: Missing ResourceMark in CDS and JVMTI code
Reviewed-by: coleenp, iklam
(cherry picked from commit 8686a36b40)
2023-05-19 18:27:19 +07:00
Christoph Dreis
45d10ac8aa 8306860: Avoid unnecessary allocation in List.map() when list is empty
Reviewed-by: vromero
(cherry picked from commit 23cbb2d170)
2023-05-19 18:27:19 +07:00
Leonid Mesnik
379c09d0ba 8307369: Add execution of all svc tests in CI
Reviewed-by: cjplummer, sspitsyn
(cherry picked from commit be54b54fb3)
2023-05-19 18:27:18 +07:00
Christian Hagedorn
84f8b1ccc5 8305634: Renaming predicates, simple cleanups, and adding summary about current predicates
Reviewed-by: epeter, thartmann, roland
(cherry picked from commit 19c8c30d1c)
2023-05-19 18:27:18 +07:00
Daniel Fuchs
e3c0e7b9bf 8308024: HttpClient (HTTP/1.1) sends an extraneous empty chunk if the BodyPublisher supplies an empty buffer
Reviewed-by: djelinski, michaelm
(cherry picked from commit 72294c5402)
2023-05-19 18:27:18 +07:00
Doug Simon
3fbc2c1dc0 8308041: [JVMCI] WB_IsGCSupportedByJVMCICompiler must enter correct JVMCI env
Reviewed-by: thartmann
(cherry picked from commit c9b6bb5bd7)
2023-05-19 18:27:18 +07:00
Kevin Walls
96d13c0647 8306806: JMX agent with JDP enabled won't start when PerfData is disabled
Reviewed-by: dholmes, cjplummer
(cherry picked from commit 0790f704fd)
2023-05-19 18:27:18 +07:00
Serguei Spitsyn
3110867ca4 8307968: serviceability/jvmti/vthread/StopThreadTest/StopThreadTest.java timed out
Reviewed-by: cjplummer, lmesnik
(cherry picked from commit c2ef302468)
2023-05-19 18:27:18 +07:00
Jaikiran Pai
82988fbe46 8307403: java/util/zip/DeInflate.java timed out
Reviewed-by: simonis, lancea
(cherry picked from commit d22bcc813e)
2023-05-19 18:27:17 +07:00
Jayathirth D V
a608326e99 8306638: Open source some AWT tests related to datatransfer and Toolkit
Reviewed-by: prr, serb, dnguyen
(cherry picked from commit 2210e06788)
2023-05-19 18:27:17 +07:00
Ioi Lam
122882d78e 8307567: Avoid relocating global roots to metaspaceObjs in CDS dump
Reviewed-by: matsaave, ccheung
(cherry picked from commit 05b51c75b9)
2023-05-19 18:27:17 +07:00
Justin Lu
ebbdcbb37e 8306597: Improve string formatting in EquivMapsGenerator.java
Reviewed-by: naoto
(cherry picked from commit 316837226e)
2023-05-19 18:27:17 +07:00
Joe Darcy
de6ada7596 8308049: Refactor nested class declarations in FdLibm.java
Reviewed-by: smarks
(cherry picked from commit 7b0b9b570b)
2023-05-19 18:27:17 +07:00
Chris Plummer
2eb5f2d683 8306593: Fix nsk/jdi/stop/stop001 for virtual threads and remove from problem list
Reviewed-by: lmesnik, sspitsyn
(cherry picked from commit cc80ada739)
2023-05-19 18:27:17 +07:00
Yi-Fan Tsai
e4edaddf8b 8307555: Reduce memory reads in x86 MD5 intrinsic
Reviewed-by: simonis, phh
(cherry picked from commit 43c8c650af)
2023-05-19 18:27:16 +07:00
Roger Riggs
6dbcd811be 8304913: Use OperatingSystem, Architecture, and Version in jlink
Reviewed-by: jpai, alanb, mchung
(cherry picked from commit 01892f9c6e)
2023-05-19 18:27:16 +07:00
Roger Riggs
1176cade28 8299340: CreateProcessW lpCommandLine must be mutable
Reviewed-by: naoto
(cherry picked from commit 0f7b1c549f)
2023-05-19 18:27:16 +07:00
Ioi Lam
e6bb5af04a 8307959: Remove explicit type casts from SerializeClosure::do_xxx() calls
Reviewed-by: matsaave, ccheung
(cherry picked from commit 57e7a3fbea)
2023-05-19 18:27:16 +07:00
Stefan Karlsson
013e4fba33 8307997: gtest:ZIndexDistributorTest fails on PPC64
Reviewed-by: mdoerr
(cherry picked from commit 97b2ca3de7)
2023-05-19 18:27:16 +07:00
Aleksey Shipilev
691290ae33 8308086: GHA: x86_32 host configuration failing with unmet dependencies
Reviewed-by: stuefe
(cherry picked from commit ffab1ea9e7)
2023-05-19 18:27:16 +07:00
Tobias Hartmann
59616f27a1 8303512: Race condition when computing is_loaded property of TypePtr::InterfaceSet
Reviewed-by: roland, qamai, kvn
(cherry picked from commit ad348a8cec)
2023-05-19 18:27:16 +07:00
gaogao-mem
d0b4f64a08 8305819: LogConfigurationTest intermittently fails on AArch64
Reviewed-by: aph, dholmes, xliu
(cherry picked from commit 911cc7cb07)
2023-05-19 18:27:15 +07:00
Tobias Hartmann
fb6c77d2b8 8308072: [BACKOUT] update for deprecated sprintf for src/utils
Reviewed-by: iris
(cherry picked from commit 8d49ba9e8d)
2023-05-19 18:27:15 +07:00
Julian Waters
edd439a447 8307163: JLONG_FORMAT_SPECIFIER should be updated on Windows
Reviewed-by: stuefe
(cherry picked from commit 0ee196bef1)
2023-05-19 18:27:15 +07:00
Vladimir Kempik
265cec2ade 8291550: RISC-V: jdk uses misaligned memory access when AvoidUnalignedAccess enabled
Co-authored-by: Xiaolin Zheng <xlinzheng@openjdk.org>
Co-authored-by: Feilong Jiang <fjiang@openjdk.org>
Reviewed-by: fjiang, fyang
(cherry picked from commit 3709344166)
2023-05-19 18:27:15 +07:00
Kim Barrett
a8ea4958bf 8307926: Support byte-sized atomic bitset operations
Reviewed-by: aboldtch, coleenp
(cherry picked from commit 646747fd7c)
2023-05-19 18:27:15 +07:00
Daniel D. Daugherty
7a864c4d7f 8305670: Performance regression in LockSupport.unpark with lots of idle threads
Co-authored-by: Robbin Ehn <rehn@openjdk.org>
Reviewed-by: rehn, dholmes
(cherry picked from commit f030937a51)
2023-05-19 18:27:15 +07:00
Daniel D. Daugherty
5933fcc5c3 8307068: store a JavaThread* in the java.lang.Thread object after the JavaThread* is added to the main ThreadsList
Reviewed-by: dholmes, rehn, apangin
(cherry picked from commit ceca198ef2)
2023-05-19 18:27:14 +07:00
Daniel D. Daugherty
54576b581c 8307067: remove broken EnableThreadSMRExtraValidityChecks option
Reviewed-by: coleenp, dholmes, sspitsyn, rehn
(cherry picked from commit 5e26e64cbf)
2023-05-19 18:27:14 +07:00
Thomas Stuefe
db6227531f 8307935: Class space argument processing can be simplified
Reviewed-by: stefank, coleenp
(cherry picked from commit e54051ae9e)
2023-05-19 18:27:14 +07:00
Valerie Peng
dcc4dceba0 8155191: Specify that SecureRandom.nextBytes(byte[]) throws NullPointerException when byte array is null
Reviewed-by: mullan
(cherry picked from commit 46e3d24a6f)
2023-05-19 18:27:14 +07:00
Alisen Chung
16198adeee 8307297: Move some DnD tests to open
Reviewed-by: prr, serb
(cherry picked from commit 3bf3876185)
2023-05-19 18:27:14 +07:00
Chen Liang
a75ec1f616 8300204: Sealed-class hierarchy graph missing nodes
Reviewed-by: jjg
(cherry picked from commit d8afc7beeb)
2023-05-19 18:27:14 +07:00
Chris Plummer
092bd789b3 8307480: Improve SA "transported core" documentation for windows
Reviewed-by: sspitsyn, kevinw, poonam
(cherry picked from commit 38838b344a)
2023-05-19 18:27:14 +07:00
Jonathan Gibbons
2430a4e07b 8306607: Apply 80-column output to javac supported version output
Reviewed-by: darcy
(cherry picked from commit 9842ff4129)
2023-05-19 18:27:13 +07:00
Chris Plummer
64a41c0da8 8306471: Add virtual threads support to JDWP ThreadReference.Stop and JDI ThreadReference.stop()
Reviewed-by: sspitsyn, alanb
(cherry picked from commit d809823fe4)
2023-05-19 18:27:13 +07:00
Justin Lu
90d87aeb0f 6714245: [Col] Collator - Faster Comparison for identical strings.
Reviewed-by: rriggs, naoto
(cherry picked from commit 4441a2306f)
2023-05-19 18:27:13 +07:00
Sergey Chernyshev
c05328d452 8168469: Memory leak in JceSecurity
Reviewed-by: valeriep
(cherry picked from commit a284920b34)
2023-05-19 18:27:13 +07:00
Jonathan Gibbons
cf05e3bf3f 8308015: Syntax of "import static" is incorrect in com.sun.source.tree.ImportTree.java
Reviewed-by: jlaskey, darcy
(cherry picked from commit 7455bb23c1)
2023-05-19 18:27:13 +07:00
Maurizio Cimadamore
7a9bb8aac7 8307911: javadoc for MemorySegment::reinterpret has duplicate restricted method paragraph
Reviewed-by: jvernee
(cherry picked from commit 6ebea8973f)
2023-05-19 18:27:13 +07:00
Daniel Fuchs
36eb775c20 8307535: java.util.logging.Handlers should be more VirtualThread friendly
Reviewed-by: jpai
(cherry picked from commit 3c68c352fc)
2023-05-19 18:27:12 +07:00
Brian Burkhalter
147967a5d1 8307409: Refactor usage examples to use @snippet in the java.nio packages
Reviewed-by: alanb, rriggs
(cherry picked from commit 9fa8b9a4a6)
2023-05-19 18:27:12 +07:00
Thomas Schatzl
662662d1ef 8306541: Refactor collection set candidate handling to prepare for JDK-8140326
Reviewed-by: iwalulya, ayang
(cherry picked from commit e512a20679)
2023-05-19 18:27:12 +07:00
Xue-Lei Andrew Fan
34a31ac23a 8307855: update for deprecated sprintf for src/utils
Reviewed-by: thartmann
(cherry picked from commit 4b0f4213a5)
2023-05-19 18:27:12 +07:00
Afshin Zafari
24f5219624 8305081: Remove finalize() from test/hotspot/jtreg/compiler/runtime/Test8168712
Reviewed-by: coleenp, thartmann
(cherry picked from commit 39dc40fed4)
2023-05-19 18:27:12 +07:00
Albert Mingkun Yang
76bdc0719d 8307808: G1: Remove partial object-count report after gc
Reviewed-by: tschatzl, iwalulya
(cherry picked from commit f7bbbc6590)
2023-05-19 18:27:12 +07:00
Maurizio Cimadamore
709ed06a24 8307961: java/foreign/enablenativeaccess/TestEnableNativeAccess.java fails with ShouldNotReachHere
Reviewed-by: jvernee
(cherry picked from commit 13a3fce29e)
2023-05-19 18:27:12 +07:00
Kim Barrett
7adf53a730 8307806: Rename Atomic::fetch_and_add and friends
Reviewed-by: stefank, dholmes
(cherry picked from commit f09a0f5ca7)
2023-05-19 18:27:11 +07:00
Yasumasa Suenaga
069db40b53 8305770: os::Linux::available_memory() should refer MemAvailable in /proc/meminfo
Reviewed-by: stuefe, sgehwolf, rcastanedalo, dholmes
(cherry picked from commit b6bcbc0cbc)
2023-05-19 18:27:11 +07:00
Afshin Zafari
8c5bc4b49a 8305083: Remove finalize() from test/hotspot/jtreg/vmTestbase/nsk/share/ and /jpda that are used in serviceability/dcmd/framework tests
Reviewed-by: coleenp, dholmes
(cherry picked from commit e1e758a7b4)
2023-05-19 18:27:11 +07:00
Thomas Schatzl
85f40189c9 8307518: Remove G1 workaround in jstat about zero sized generation sizes
Reviewed-by: kbarrett, ayang
(cherry picked from commit 1ce1611ead)
2023-05-19 18:27:11 +07:00
Xiaolin Zheng
fb84ad2a5e 8306667: RISC-V: Fix storeImmN0 matching rule by using zr register
Reviewed-by: shade, gli, fyang
(cherry picked from commit e32de7efd6)
2023-05-19 18:27:11 +07:00
Matthias Baesken
1736f0e326 8307891: ProblemList gtest/NMTGtest.java subtests on aix
Reviewed-by: mdoerr, lucy
(cherry picked from commit f3bd031ccd)
2023-05-19 18:27:11 +07:00
JoKern65
4585113c85 8307520: set minimum supported CPU architecture to Power8 on AIX
Reviewed-by: mbaesken, erikj
(cherry picked from commit 5f1f9460d7)
2023-05-19 18:27:10 +07:00
Jie Fu
a5d77d92b2 8307969: [zgc] Missing includes in gc/z/zTracer.cpp
Reviewed-by: stefank
(cherry picked from commit ccb4dd6144)
2023-05-19 18:27:10 +07:00
Abhishek Kumar
f6f56793e4 8306996: Open source Swing MenuItem related tests
Reviewed-by: dnguyen, honkar, psadhukhan
(cherry picked from commit 73491fa452)
2023-05-19 18:27:10 +07:00
Ningsheng Jian
7b6f536d5b 8307572: AArch64: Vector registers are clobbered by some macroassemblers
Reviewed-by: aph, adinn
(cherry picked from commit 33d9a85730)
2023-05-19 18:27:10 +07:00
Daniel D. Daugherty
f8a6030118 8307966: ProblemList java/util/concurrent/locks/Lock/OOMEInAQS.java on linux-x64
Reviewed-by: naoto, lmesnik
(cherry picked from commit 9a7b4431ec)
2023-05-19 18:27:10 +07:00
Chris Plummer
e935ea772d 8307559: Add better checking in com/sun/jdi tests for debuggee exiting unexpectedly with an exception
Reviewed-by: kevinw, lmesnik
(cherry picked from commit 54c06d2d91)
2023-05-19 18:27:10 +07:00
Jie Fu
21ed164c32 8307945: Build of Client VM is broken after JDK-8307058
Reviewed-by: kvn
(cherry picked from commit ce5907727e)
2023-05-19 18:27:09 +07:00
Matias Saavedra Silva
d72f6cf369 8281715: Move "base CDS archive not loaded" tests to SharedArchiveFileOption.java
Reviewed-by: ccheung, iklam
(cherry picked from commit a667213ec5)
2023-05-19 18:27:09 +07:00
Joe Darcy
9c85f94c0c 8307954: Update string template regression tests to be robust on release updates
Reviewed-by: jlaskey
(cherry picked from commit 29b8242e07)
2023-05-19 18:27:09 +07:00
Guoxiong Li
bad88f29f8 8307653: Adjust delay time and gc log argument in TestAbortOnVMOperationTimeout
Reviewed-by: dholmes, dcubed
(cherry picked from commit 4f355c3525)
2023-05-19 18:27:09 +07:00
Xue-Lei Andrew Fan
47cde5c203 8307848: update for deprecated sprintf for jdk.attach
Reviewed-by: sspitsyn, cjplummer
(cherry picked from commit 15358636cf)
2023-05-19 18:27:09 +07:00
Xue-Lei Andrew Fan
04d35043f0 8307850: update for deprecated sprintf for jdk.jdi
Reviewed-by: cjplummer
(cherry picked from commit cbecf422df)
2023-05-19 18:27:09 +07:00
Dean Long
b7d2359913 8307139: Fix signed integer overflow in compiler code, part 1
Reviewed-by: thartmann, rcastanedalo, kvn
(cherry picked from commit 7fcb0fdcd4)
2023-05-19 18:27:08 +07:00
Robert Toyonaga
6e1bb82a57 8307298: JFR: Ensure jdk.jfr.internal.TypeLibrary is initialized only once
Reviewed-by: sgehwolf, egahlin
(cherry picked from commit 5d6cce0f85)
2023-05-19 18:27:08 +07:00
Serguei Spitsyn
75f4298063 8306034: add support of virtual threads to JVMTI StopThread
Reviewed-by: cjplummer
(cherry picked from commit 51b8f3cfb9)
2023-05-19 18:27:08 +07:00
Chris Plummer
ecbf0af211 8307885: com/sun/jdi/ConnectedVMs.java fails with "Invalid debuggee exitValue: 0"
Reviewed-by: kevinw, sspitsyn
(cherry picked from commit 489658dbd2)
2023-05-19 18:27:08 +07:00
Daniel Fuchs
3da61968f5 8307626: java/net/httpclient/FlowAdapter* tests should close the HttpClient instances
Reviewed-by: aefimov, jpai
(cherry picked from commit 9ad38cbeaf)
2023-05-19 18:27:08 +07:00
Fredrik Bredberg
29e20aed33 8297657: name demangling intermittently fails
Reviewed-by: stefank, coleenp
(cherry picked from commit 2bf7ac58b7)
2023-05-19 18:27:07 +07:00
Stefan Karlsson
2d468db9cf 8307058: Implementation of Generational ZGC
Co-authored-by: Stefan Karlsson <stefank@openjdk.org>
Co-authored-by: Erik Österlund <eosterlund@openjdk.org>
Co-authored-by: Axel Boldt-Christmas <aboldtch@openjdk.org>
Co-authored-by: Per Liden <pliden@openjdk.org>
Co-authored-by: Stefan Johansson <sjohanss@openjdk.org>
Co-authored-by: Albert Mingkun Yang <ayang@openjdk.org>
Co-authored-by: Erik Helin <ehelin@openjdk.org>
Co-authored-by: Roberto Castañeda Lozano <rcastanedalo@openjdk.org>
Co-authored-by: Nils Eliasson <neliasso@openjdk.org>
Co-authored-by: Martin Doerr <mdoerr@openjdk.org>
Co-authored-by: Leslie Zhai <lzhai@openjdk.org>
Co-authored-by: Fei Yang <fyang@openjdk.org>
Co-authored-by: Yadong Wang <yadongwang@openjdk.org>
Reviewed-by: eosterlund, aboldtch, rcastanedalo
(cherry picked from commit d20034b09c)
2023-05-19 18:27:07 +07:00
Yudi Zheng
c386ee37c9 8307813: [JVMCI] Export markWord::lock_mask_in_place to JVMCI compilers.
Reviewed-by: dnsimon, kvn, never
(cherry picked from commit 0cbfbc400a)
2023-05-19 18:27:07 +07:00
Maurizio Cimadamore
1f6ed7400a 8307610: Linker::nativeLinker should not be restricted (mainline)
Reviewed-by: jvernee
(cherry picked from commit ba9714d44c)
2023-05-19 18:27:07 +07:00
Thomas Stuefe
f4db47b017 8307869: Remove unnecessary log statements from arm32 fastlocking code
Reviewed-by: shade
(cherry picked from commit ecc1d85dbe)
2023-05-19 18:27:07 +07:00
JoKern65
8ff640e3ed 8307349: Support xlc17 clang toolchain on AIX
Reviewed-by: erikj, mbaesken
(cherry picked from commit 08fa269886)
2023-05-19 18:27:06 +07:00
Thomas Stuefe
64dc32ea41 8305416: runtime/Thread/TestAlwaysPreTouchStacks.java failed with "Did not find expected NMT output"
Reviewed-by: dholmes, gziemski
(cherry picked from commit 8ac7186331)
2023-05-19 18:27:06 +07:00
Thomas Stuefe
3e254f1c9e 8307810: Consistently use LockingMode instead of UseHeavyMonitors
Reviewed-by: dcubed, mdoerr, dholmes, amitkumar
(cherry picked from commit 984fbbbcab)
2023-05-19 18:27:06 +07:00
Feilong Jiang
abd60979ef 8307758: RISC-V: Improve bit test code introduced by JDK-8291555
Co-authored-by: Fei Yang <fyang@openjdk.org>
Reviewed-by: fyang
(cherry picked from commit 39f4e4d3c3)
2023-05-19 18:27:06 +07:00
David Holmes
cddf753428 8306965: osThread allocation failures should not abort the VM
Reviewed-by: lfoltan
(cherry picked from commit 3cb606ef5b)
2023-05-19 18:27:06 +07:00
Justin Lu
e5108cb4c0 8281103: Give example for Locale that is English and follows the ISO standards
Reviewed-by: rriggs, lancea, naoto
(cherry picked from commit 4795c395e9)
2023-05-19 18:27:06 +07:00
Jonathan Gibbons
4ac510fe46 8307563: make most fields final in JavacTrees
Reviewed-by: vromero
(cherry picked from commit 958d4a7505)
2023-05-19 18:27:05 +07:00
Jonathan Gibbons
3d54f031f2 8307377: Remove use of tagName from TagletWriterImpl.linkSeeReferenceOutput
Reviewed-by: hannesw
(cherry picked from commit f250ab2c2a)
2023-05-19 18:27:05 +07:00
Ashutosh Mehra
bcf29793c4 8307765: DynamicArchiveHeader contents are missing in CDS mapfile
Reviewed-by: iklam, ccheung
(cherry picked from commit cc9f7ad9ce)
2023-05-19 18:27:05 +07:00
Daniel D. Daugherty
8bc911f28c 8307860: [BACKOUT] JDK-8307194 Add make target for optionally building a complete set of all JDK and hotspot libjvm static libraries
Reviewed-by: erikj
(cherry picked from commit edc4adb77e)
2023-05-19 18:27:05 +07:00
Daniel D. Daugherty
2dfeb7b894 8307857: validate-source fails after JDK-8306758
Reviewed-by: rriggs, cjplummer
(cherry picked from commit df90df298e)
2023-05-19 18:27:05 +07:00
Chris Plummer
c6c8a86fb7 8306758: com/sun/jdi/ConnectedVMs.java fails with "Non-zero debuggee exitValue: 143"
Reviewed-by: amenkov, sspitsyn
(cherry picked from commit 268836482d)
2023-05-19 18:27:05 +07:00
Jiangli Zhou
f01f03421a 8307194: Add make target for optionally building a complete set of all JDK and hotspot libjvm static libraries
Reviewed-by: erikj, sgehwolf
(cherry picked from commit 1964954da9)
2023-05-19 18:27:04 +07:00
Kevin Walls
39a828fcf0 8307244: Remove redundant class RMIIIOPServerImpl
Reviewed-by: sspitsyn, dfuchs, alanb
(cherry picked from commit 9af1787ebe)
2023-05-19 18:27:04 +07:00
Viktor Klang
781496d2ec 8151531: Add notes to BaseStream.spliterator/iterator docs regarding them being escape hatches
Reviewed-by: psandoz
(cherry picked from commit 8a95020ab6)
2023-05-19 18:27:04 +07:00
Archie Cobbs
06d8d90ebb 8305748: Clarify reentrant behavior of close() in FileInputStream, FileOutputStream, and RandomAccessFile
Reviewed-by: alanb, bpb
(cherry picked from commit 0198afca3a)
2023-05-19 18:27:04 +07:00
Daniel D. Daugherty
2ce4be5c24 8307799: Newly added java/awt/dnd/MozillaDnDTest.java has invalid jtreg @requires clause
Reviewed-by: rriggs, azvegint
(cherry picked from commit 1bca05eace)
2023-05-19 18:27:04 +07:00
Johan Sjölen
13c9196187 8300245: Replace NULL with nullptr in share/jfr/
Reviewed-by: mgronlun, coleenp
(cherry picked from commit cc396895e5)
2023-05-19 18:27:04 +07:00
Coleen Phillimore
20fa1ff156 8306843: JVMTI tag map extremely slow after JDK-8292741
Reviewed-by: sspitsyn, iklam
(cherry picked from commit 4251b56214)
2023-05-19 18:27:03 +07:00
Afshin Zafari
d45b1dca8e 8305082: Remove finalize() from test/hotspot/jtreg/runtime/linkResolver/InterfaceObjectTest.java
Reviewed-by: coleenp, dholmes
(cherry picked from commit ab34cb98c8)
2023-05-19 18:27:03 +07:00
Johannes Bechberger
9c591e37b2 8307732: build-test-lib is broken
Reviewed-by: erikj, djelinski
(cherry picked from commit 0da48f19cb)
2023-05-19 18:27:03 +07:00
Jim Laskey
6496dc2db6 8285932: Implementation of JEP 430 String Templates (Preview)
Reviewed-by: mcimadamore, rriggs, darcy
(cherry picked from commit 4aa65cbeef)
2023-05-19 18:27:03 +07:00
Aleksei Efimov
e58fdb1ed9 8302845: Replace finalizer usage in JNDI DNS provider with Cleaner
Reviewed-by: alanb, dfuchs, djelinski
(cherry picked from commit da2c930262)
2023-05-19 18:27:03 +07:00
Oli Gillespie
ee0cf64ec2 8307348: Parallelize heap walk for ObjectCount(AfterGC) JFR event collection
Reviewed-by: shade, ayang, tschatzl
(cherry picked from commit 540c706bbc)
2023-05-19 18:27:03 +07:00
Fredrik Bredberg
b2047c390a 8306930: Incorrect assert in BitMap::count_one_bits
Reviewed-by: stefank, tschatzl, kbarrett
(cherry picked from commit d993432d44)
2023-05-19 18:27:02 +07:00
Tobias Hotz
bd4cb3ec6b 8307351: (CmpI/L(AndI/L reg1 reg2)) on x86 can be optimized
Reviewed-by: sviswanathan, qamai, thartmann
(cherry picked from commit 4b4c80bb31)
2023-05-19 18:27:02 +07:00
Feilong Jiang
4d61b26940 8307651: RISC-V: stringL_indexof_char instruction has wrong format string
Reviewed-by: fyang
(cherry picked from commit d3e6d04e3e)
2023-05-19 18:27:02 +07:00
Serguei Spitsyn
80b574815a 8307399: get rid of compatibility ThreadStart/ThreadEnd events for virtual threads
Reviewed-by: alanb, pchilanomate, cjplummer
(cherry picked from commit 2be1f10fec)
2023-05-19 18:27:02 +07:00
Alex Menkov
31c5283018 8306027: Clarify JVMTI heap functions spec about virtual thread stack.
Reviewed-by: alanb, sspitsyn
(cherry picked from commit f5a6b7f7c0)
2023-05-19 18:27:02 +07:00
Leonid Mesnik
65357d44da 8307370: Add tier1 testing with thread factory in CI
Reviewed-by: sspitsyn
(cherry picked from commit a1c3adb88d)
2023-05-19 18:27:02 +07:00
Roger Riggs
7acffbe68e 8307466: java.time.Instant calculation bug in until and between methods
Co-authored-by: Raffaello Giulietti <rgiulietti@openjdk.org>
Reviewed-by: scolebourne, naoto
(cherry picked from commit 356667f155)
2023-05-19 18:27:01 +07:00
Alisen Chung
c66d3c27f7 8306881: Update FreeType to 2.13.0
Reviewed-by: prr, dnguyen
(cherry picked from commit 723582c524)
2023-05-19 18:27:01 +07:00
Alisen Chung
43e5822132 8307128: Open source some drag and drop tests 4
Reviewed-by: prr
(cherry picked from commit 98294242a9)
2023-05-19 18:27:01 +07:00
Leonid Mesnik
82447d7e12 8307307: Improve ProcessTools.java to don't try to run Virtual wrapper for incompatible processes
Reviewed-by: alanb
(cherry picked from commit 7f05f6f7c7)
2023-05-19 18:27:01 +07:00
Thiago Henrique Hüpner
3dcdccbd44 8304148: Remapping a class with Invokedynamic constant loses static bootstrap arguments
Reviewed-by: asotona
(cherry picked from commit dde557e312)
2023-05-19 18:27:01 +07:00
Justin Lu
8647dd2a36 8159337: Introduce a method in Locale class to return the language tags as per RFC 5646 convention
Reviewed-by: naoto, rriggs
(cherry picked from commit 82bcee76ea)
2023-05-19 18:27:00 +07:00
Leonid Mesnik
fefb1ff415 8307486: ProcessTools.java should wait until vthread is completed before checking exceptions
Reviewed-by: dholmes, alanb
(cherry picked from commit 3aff5eacbd)
2023-05-19 18:27:00 +07:00
Xue-Lei Andrew Fan
0999c40aa6 8303830: update for deprecated sprintf for jdk.accessibility
Reviewed-by: kizune
(cherry picked from commit 44fa12e751)
2023-05-19 18:27:00 +07:00
Viktor Klang
8b896995de 8133773: clarify specification of Spliterator.tryAdvance
Reviewed-by: psandoz, tvaleev, rriggs
(cherry picked from commit fdbfc8a73b)
2023-05-19 18:27:00 +07:00
Matthew Donovan
ce0803e9ba 8306015: Update sun.security.ssl TLS tests to use SSLContextTemplate or SSLEngineTemplate
Reviewed-by: xuelei
(cherry picked from commit 5842fd5beb)
2023-05-19 18:27:00 +07:00
Axel Boldt-Christmas
f35cee62a3 8306738: Select num workers for safepoint ParallelCleanupTask
Reviewed-by: shade, coleenp, tschatzl
(cherry picked from commit 672bade522)
2023-05-19 18:27:00 +07:00
Adam Sotona
e889481596 8305990: Stripping debug info of ASM 9.5 fails
Reviewed-by: mcimadamore
(cherry picked from commit a05560d993)
2023-05-19 18:27:00 +07:00
Josef Eisl
2b8b6f87ba 8307588: [JVMCI] HotSpotConstantPool#lookupBootstrapMethodInvocation broken by JDK-8301995
Reviewed-by: dnsimon, never, kvn
(cherry picked from commit 040cb7b5a9)
2023-05-19 18:26:59 +07:00
Maurizio Cimadamore
5141c38d45 8307411: Test java/foreign/channels/TestAsyncSocketChannels.java failed: IllegalStateException: Already closed
Reviewed-by: jvernee
(cherry picked from commit f92d095e16)
2023-05-19 18:26:59 +07:00
Maurizio Cimadamore
be2dc1e946 8307629: FunctionDescriptor::toMethodType should allow sequence layouts (mainline)
Reviewed-by: jvernee
(cherry picked from commit 7a3bea1f6a)
2023-05-19 18:26:59 +07:00
Roland Westrelin
832e0936a4 8307131: C2: assert(false) failed: malformed control flow
Reviewed-by: kvn, chagedorn, thartmann
(cherry picked from commit d2b3eef0f2)
2023-05-19 18:26:59 +07:00
Chen Liang
3350208342 8304031: Classfile API cannot encode Primitive Class as Condy
Reviewed-by: asotona
(cherry picked from commit cd5d0ff5b2)
2023-05-19 18:26:59 +07:00
Sean Coffey
26135a9b02 8305950: Have -XshowSettings option display tzdata version
Reviewed-by: rriggs
(cherry picked from commit 07f55c5ea2)
2023-05-19 18:26:59 +07:00
Damon Nguyen
7805a97c32 8307130: Open source few Swing JMenu tests
Reviewed-by: prr
(cherry picked from commit d9052b9466)
2023-05-19 18:26:58 +07:00
Tom Rodriguez
b742c86e71 8299229: [JVMCI] add support for UseZGC
Reviewed-by: eosterlund, kvn
(cherry picked from commit 5e1fe43080)
2023-05-19 18:26:58 +07:00
Damon Nguyen
ea41491f42 8307165: java/awt/dnd/NoFormatsDropTest/NoFormatsDropTest.java timed out
Reviewed-by: prr
(cherry picked from commit 14df5c130e)
2023-05-19 18:26:58 +07:00
Roman Kennke
615e7b8e92 8291555: Implement alternative fast-locking scheme
Co-authored-by: Fei Yang <fyang@openjdk.org>
Co-authored-by: Thomas Stuefe <stuefe@openjdk.org>
Reviewed-by: dcubed, stuefe, shade, dholmes, dlong

(cherry picked from commit 7f6358a8b5)
2023-05-19 18:26:58 +07:00
Volker Simonis
cf51f63cd8 8306461: ObjectInputStream::readObject() should handle negative array sizes without throwing NegativeArraySizeExceptions
Co-authored-by: Yakov Shafranovich <yakovsh@amazon.com>
Reviewed-by: shade, rriggs
(cherry picked from commit 4116b109f0)
2023-05-19 18:26:58 +07:00
Raffaello Giulietti
294548cce6 8305486: Add split() variants that keep the delimiters to String and j.u.r.Pattern
Reviewed-by: jpai, rriggs
(cherry picked from commit 93ee19f58a)
2023-05-19 18:26:58 +07:00
Conor Cleary
e3236a1c00 8293786: HttpClient will not send more than 64 kb of data from the 2nd request in http2
Reviewed-by: dfuchs, djelinski
(cherry picked from commit ad90fb6da3)
2023-05-19 18:26:57 +07:00
Fredrik Bredberg
a39de464c1 8303153: Native interpreter frame missing mirror
Reviewed-by: coleenp, fyang
(cherry picked from commit 5a259d875e)
2023-05-19 18:26:57 +07:00
Darragh Clarke
f0ed74f621 8054022: HttpURLConnection timeouts with Expect: 100-Continue and no chunking
Reviewed-by: djelinski, dfuchs
(cherry picked from commit 4b02956d42)
2023-05-19 18:26:57 +07:00
Tyler Steele
b7c1c12b8d 8304434: [AIX] Update minimum xlclang version
Reviewed-by: erikj, mbaesken
(cherry picked from commit 9f34e4f8d9)
2023-05-19 18:26:57 +07:00
Matthias Baesken
657148f37b 8307604: gcc12 based Alpine build broken build after JDK-8307301
Reviewed-by: lucy, mdoerr, erikj
(cherry picked from commit d2e0e534d7)
2023-05-19 18:26:57 +07:00
Zhengyu Gu
dc306be636 8307571: Remove unused SomeConstants in WatcherThread class
Reviewed-by: dholmes
(cherry picked from commit e91f0d3dba)
2023-05-19 18:26:57 +07:00
Dingli Zhang
e2263259d4 8306408: Fix the format of several tables in building.md
Reviewed-by: erikj
(cherry picked from commit 26755a9686)
2023-05-19 18:26:56 +07:00
Jie Fu
23a05bfac2 8307569: Build with gcc8 is broken after JDK-8307301
Reviewed-by: erikj
(cherry picked from commit 64c0962866)
2023-05-19 18:26:56 +07:00
Matthias Baesken
57fd03dabf 8307603: [AIX] Broken build after JDK-8307301
Reviewed-by: mdoerr
(cherry picked from commit bb3e44d8b6)
2023-05-19 18:26:56 +07:00
Arno Zeller
e29828d686 8307347: serviceability/sa/ClhsdbDumpclass.java could leave files owned by root on macOS
Reviewed-by: stuefe, cjplummer
(cherry picked from commit 5c7ede94ae)
2023-05-19 18:26:56 +07:00
Albert Mingkun Yang
b1614ffbb7 8307100: Remove ReferentBasedDiscovery reference discovery policy
Reviewed-by: kbarrett, dholmes, tschatzl
(cherry picked from commit 89b7d07597)
2023-05-19 18:26:56 +07:00
Hannes Wallnöfer
a5fbd144dd 8306285: Missing file in search test
Reviewed-by: jjg
(cherry picked from commit f6ea89795b)
2023-05-19 18:26:56 +07:00
Stefan Karlsson
c72505b97e 8307517: Add VMErrorCallback infrastructure to extend hs_err dumping
Reviewed-by: eosterlund, aboldtch, dholmes, stuefe

(cherry picked from commit 33245d6b38)
2023-05-19 18:26:56 +07:00
Stefan Karlsson
02c0d4bb6d 8293547: Add relaxed add_and_fetch for macos aarch64 atomics
Reviewed-by: dholmes, eosterlund
(cherry picked from commit 7a1cb64bc1)
2023-05-19 18:26:55 +07:00
Stefan Karlsson
e8f9e711ae 8307428: jstat tests doesn't tolerate dash in the O column
Reviewed-by: kevinw, cjplummer
(cherry picked from commit 68f385c1ca)
2023-05-19 18:26:55 +07:00
Amit Kumar
0ec1b84a52 8307423: [s390x] Represent Registers as values
Reviewed-by: mdoerr, lucy
(cherry picked from commit 8bbd264c6e)
2023-05-19 18:26:55 +07:00
Stefan Karlsson
e83b0f8775 8307521: Introduce check_oop infrastructure to check oops in the oop class
Reviewed-by: eosterlund, aboldtch, coleenp
(cherry picked from commit 959e62ca3e)
2023-05-19 18:26:55 +07:00
Emanuel Peter
d8b5086c60 8304720: SuperWord::schedule should rebuild C2-graph from SuperWord dependency-graph
Reviewed-by: kvn, fgao
(cherry picked from commit ad0e5a99ca)
2023-05-19 18:26:55 +07:00
Gui Cao
018b432012 8306966: RISC-V: Support vector cast node for Vector API
Co-authored-by: Dingli Zhang <dingli@iscas.ac.cn>
Reviewed-by: fyang, fjiang
(cherry picked from commit 495f2688d6)
2023-05-19 18:26:55 +07:00
changpeng1997
c98461d3c0 8301739: AArch64: Add optimized rules for vector compare with immediate for SVE
Reviewed-by: aph, eliu
(cherry picked from commit 0dca573ca5)
2023-05-19 18:26:54 +07:00
Alexander Zvegintsev
98f81dac77 8306941: Open source several datatransfer and dnd AWT tests
Reviewed-by: prr
(cherry picked from commit 3d3eaed913)
2023-05-19 18:26:54 +07:00
Feilong Jiang
84f6f7962c 8307446: RISC-V: Improve performance of floating point to integer conversion
Reviewed-by: fyang, vkempik, gli
(cherry picked from commit 1f57ce0a06)
2023-05-19 18:26:54 +07:00
Ioi Lam
56df1904c2 8307553: Remove dead code MetaspaceClosure::push_method_entry
Reviewed-by: coleenp, ccheung
(cherry picked from commit 4e4828eaff)
2023-05-19 18:26:54 +07:00
Alexander Zvegintsev
867d426cc6 8280031: Deprecate GTK2 for removal
Reviewed-by: prr
(cherry picked from commit 7d58978f62)
2023-05-19 18:26:54 +07:00
Weijun Wang
73261bc63f 8305846: Support compilation in Proc test utility
Reviewed-by: valeriep
(cherry picked from commit b5922c3b86)
2023-05-19 18:26:54 +07:00
Oli Gillespie
ed3e731e0b 8307425: Socket input stream read burns CPU cycles with back-to-back poll(0) calls
Reviewed-by: alanb
(cherry picked from commit 73ac710533)
2023-05-19 18:26:53 +07:00
Leonid Mesnik
7023baef82 8306326: [BACKOUT] 8277573: VmObjectAlloc is not generated by intrinsics methods which allocate objects
Reviewed-by: sspitsyn, thartmann, kvn
(cherry picked from commit e2b1013f11)
2023-05-19 18:26:53 +07:00
Harshitha Onkar
a14554e4e3 8307381: Open Source JFrame, JIF related Swing Tests
Reviewed-by: dnguyen, kizune
(cherry picked from commit 4386d42d31)
2023-05-19 18:26:53 +07:00
Matias Saavedra Silva
c0d30b3981 8306583: Add JVM crash check in CDSTestUtils.executeAndLog
Reviewed-by: iklam, ccheung
(cherry picked from commit 27764e6035)
2023-05-19 18:26:53 +07:00
Rajat Mahajan
05175760d7 6176679: Application freezes when copying an animated gif image to the system clipboard
Reviewed-by: aivanov, dmarkov
(cherry picked from commit 6c71859ac2)
2023-05-19 18:26:53 +07:00
Calvin Cheung
10616cf6a5 8306712: CDS DeterministicDump.java test fails with -XX:+UseStringDeduplication
Reviewed-by: iklam, matsaave
(cherry picked from commit 65a54883b3)
2023-05-19 18:26:53 +07:00
Harshitha Onkar
fd44499547 8307301: Update HarfBuzz to 7.2.0
Reviewed-by: prr
(cherry picked from commit d8b230c384)
2023-05-19 18:26:52 +07:00
Damon Nguyen
fe2df03908 8306871: Open source more AWT Drag & Drop tests
Reviewed-by: prr
(cherry picked from commit b5a48277ab)
2023-05-19 18:26:52 +07:00
Maurizio Cimadamore
53cc70028e 8307375: Alignment check on layouts used as sequence element is not correct
Reviewed-by: jvernee
(cherry picked from commit 47422be2d1)
2023-05-19 18:26:52 +07:00
Roman Kennke
27b101baeb 8307395: Add missing STS to Shenandoah
Reviewed-by: shade
(cherry picked from commit 3968ab5db5)
2023-05-19 18:26:52 +07:00
Roman Kennke
e158cbd329 8307236: Rendezvous GC threads under STS for monitor deflation
Reviewed-by: eosterlund, shade
(cherry picked from commit 12d6ec66a6)
2023-05-19 18:26:52 +07:00
Matias Saavedra Silva
3baf56f829 8307306: Change some ConstantPool::name_ref_at calls to uncached_name_ref_at
Co-authored-by: Ioi Lam <iklam@openjdk.org>
Reviewed-by: coleenp, fparain
(cherry picked from commit 6fe959c62d)
2023-05-19 18:26:52 +07:00
Matthew Donovan
10b51569a1 8305169: java/security/cert/CertPathValidator/OCSP/GetAndPostTests.java -- test server didn't start in timely manner
Reviewed-by: ssahoo, jnimeh
(cherry picked from commit 3f6a3545a2)
2023-05-19 18:26:51 +07:00
Afshin Zafari
0fbe5ae376 8305084: Remove the removal warnings for finalize() from test/hotspot/jtreg/serviceability/dcmd/gc/FinalizerInfoTest.java and RunFinalizationTest.java
Reviewed-by: dholmes, cjplummer
(cherry picked from commit f143bf7c45)
2023-05-19 18:26:51 +07:00
Weibing Xiao
3c6757251c 8305714: Add an extra test for JDK-8292755
Reviewed-by: coffeys
(cherry picked from commit 746f8d1333)
2023-05-19 18:26:51 +07:00
Afshin Zafari
e4fa8e26be 8305080: Suppress the 'removal' warning for finalize() from test/hotspot/jtreg/compiler/jvmci/common/testcases that used in compiler/jvmci/compilerToVM/ tests
Reviewed-by: dnsimon, coleenp
(cherry picked from commit 1a1ce66dc9)
2023-05-19 18:26:51 +07:00
Adam Sotona
39dd2ab756 8250596: Update remaining manpage references from "OS X" to "macOS"
Reviewed-by: mullan, cjplummer, dholmes, sspitsyn
(cherry picked from commit 3b430b9f73)
2023-05-19 18:26:51 +07:00
Johan Sjölen
cce7e49451 8301493: Replace NULL with nullptr in cpu/aarch64
Reviewed-by: tschatzl, gziemski, dholmes
(cherry picked from commit 948f3b3c24)
2023-05-19 18:26:51 +07:00
Andrew Dinn
3911f60ab6 8307331: Correctly update line maps when class redefine rewrites bytecodes
Reviewed-by: sspitsyn
(cherry picked from commit f94f957734)
2023-05-19 18:26:50 +07:00
Thomas Schatzl
85359356fd 8307421: Fix comment in g1CollectionSetChooser.hpp after JDK-8306836
Reviewed-by: shade
(cherry picked from commit 302bc2fd7f)
2023-05-19 18:26:50 +07:00
Kim Barrett
b4dc0e324e 8307196: Dangling pointer warning for MetadataAllocationRequest
Reviewed-by: dholmes, eosterlund
(cherry picked from commit e19cf26d65)
2023-05-19 18:26:50 +07:00
William Kemper
f59066b595 8307378: Allow collectors to provide specific values for GC notifications' actions
Reviewed-by: kdnilsen, stefank
(cherry picked from commit 1b143ba787)
2023-05-19 18:26:50 +07:00
Leonid Mesnik
ea0ff7ede6 8307308: Add serviceability_ttf_virtual group to exclude jvmti tests developed for virtual threads
Reviewed-by: sspitsyn
(cherry picked from commit a44e8908a1)
2023-05-19 18:26:49 +07:00
Eric Liu
bc024a40ff 8304948: [vectorapi] C2 crashes when expanding VectorBox
Reviewed-by: thartmann, qamai
(cherry picked from commit 46df171d53)
2023-05-19 18:26:49 +07:00
ngubarkov
d95f8e7a79 JBR-5605 ignore empty client area when syncing bounds in XDecoratedPeer. 2023-05-18 22:40:11 +03:00
Maxim Kartashev
0b0ad45a66 JBR-5637 Linux: implement window position change with WM help
Introduced JBR.isWindowMoveSupported() and
JBR.getWindowMove().startMovingTogetherWithMouse()
2023-05-18 19:15:27 +04:00
Vitaly Provodin
b2fd90ab79 JBR-5627 add regression test AsyncProfilerRunnerTest 2023-05-18 05:50:34 +07:00
Maxim Kartashev
de8ed02350 JBR-5631 Refactor Dockerfile for x64 builds 2023-05-16 07:21:47 +07:00
Artem Bochkarev
a79cc2c72e JBR-5426 write JCEF version info inside release file 2023-05-16 05:24:36 +07:00
Vitaly Provodin
442df3d1f5 JBR-5286 make windows-aarch64 building script identical to the same script in jbr17 2023-05-16 05:24:36 +07:00
Vitaly Provodin
debf7e9f98 fixup! JBR-3639 add jbrsdk tarballs for dcevm, jcef builds 2023-05-16 05:24:35 +07:00
Vitaly Provodin
5f314ef826 JBR-5603 build aarch64 Linux from arm64v8/centos:7 and check glibc to be not higher 2.17 2023-05-13 05:03:00 +07:00
Daniel D. Daugherty
7b30b303f1 8307489: ProblemList jdk/incubator/vector/LoadJsvmlTest.java on windows-x64
8307490: ProblemList sun/security/pkcs11/Cipher/TestKATForGCM.java on linux-x64 and macosx-x64
8307491: ProblemList sanity/client/SwingSet/src/EditorPaneDemoTest.java on linux-x64

Reviewed-by: darcy
(cherry picked from commit 111858f3ff)
2023-05-12 18:26:39 +07:00
Kevin Driver
8a896a2a4a 8294983: SSLEngine throws ClassCastException during handshake
Co-authored-by: Daniel Jeliński <djelinski@openjdk.org>
Reviewed-by: wetmore, xuelei
(cherry picked from commit 197d0cc603)
2023-05-12 18:26:36 +07:00
Coleen Phillimore
52c2ee83a2 8307295: Add warning to not create new ACC flags
Reviewed-by: dholmes, fparain
(cherry picked from commit a87262efb2)
2023-05-12 18:26:36 +07:00
Markus Grönlund
e2364ca15d 8307156: native_thread not protected by TLH
Reviewed-by: coleenp, dcubed
(cherry picked from commit 0c6529d2d3)
2023-05-12 18:26:34 +07:00
Phil Race
69be4ec1c7 8307133: Open source some JTable jtreg tests
Reviewed-by: serb
(cherry picked from commit 5ca0b08a75)
2023-05-12 18:26:34 +07:00
Alexander Zvegintsev
03a8558c31 8306943: Open source several dnd AWT tests
Reviewed-by: prr, serb
(cherry picked from commit 2adb3b409e)
2023-05-12 18:26:33 +07:00
Chen Liang
27aea0c548 8304937: BufferedFieldBuilder.Model missing writeTo(DirectClassBuilder)
Reviewed-by: asotona
(cherry picked from commit dc4096ce13)
2023-05-12 18:26:32 +07:00
Stefan Johansson
0c2f927a43 8307448: Test RedefineSharedClassJFR fail due to wrong assumption
Reviewed-by: eosterlund, coleenp
(cherry picked from commit 29233e0a00)
2023-05-12 18:26:31 +07:00
Stefan Johansson
57e773f2a2 8306929: Avoid CleanClassLoaderDataMetaspaces safepoints when previous versions are shared
Reviewed-by: coleenp, sspitsyn
(cherry picked from commit 408cec516b)
2023-05-12 18:26:28 +07:00
Maurizio Cimadamore
8e1bc1c458 8307181: MemoryLayout.structLayout uses undocumented strict alignment constraints
Reviewed-by: jvernee
(cherry picked from commit cecf817f5e)
2023-05-12 18:26:27 +07:00
Oli Gillespie
fd68860c86 8307346: Add missing gc+phases logging for ObjectCount(AfterGC) JFR event collection code
Reviewed-by: tschatzl, shade, ayang
(cherry picked from commit 3f1927a7f3)
2023-05-12 18:26:27 +07:00
Kevin Walls
f113bb4820 8307362: Remove test com/sun/jdi/JdbLastErrorTest.java
Reviewed-by: dcubed
(cherry picked from commit e206d57bfc)
2023-05-12 18:26:26 +07:00
Abhishek Kumar
f82f6111b7 8306489: Open source AWT List related tests
Reviewed-by: prr, serb
(cherry picked from commit 82a8e91ef7)
2023-05-12 18:26:25 +07:00
Tejesh R
c71fba3977 8307091: A few client tests intermittently throw ConcurrentModificationException
Reviewed-by: prr, dnguyen
(cherry picked from commit 465bdd9e41)
2023-05-12 18:26:24 +07:00
Leonid Mesnik
ef9401e84d 8307305: Update debugger tests to support JTREG_TEST_THREAD_FACTORY mode
Reviewed-by: cjplummer
(cherry picked from commit caee1beaaf)
2023-05-12 18:26:22 +07:00
Kim Barrett
70040e319e 8307147: [x86] Dangling pointer warning for Assembler::_attributes
Reviewed-by: dholmes, aph
(cherry picked from commit 3599448ad8)
2023-05-12 18:26:21 +07:00
Leonid Mesnik
f04ef8297c 8306946: jdk/test/lib/process/ProcessToolsStartProcessTest.java fails with "wrong number of lines in OutputAnalyzer output"
Reviewed-by: dholmes
(cherry picked from commit 64ac9a05e8)
2023-05-12 18:26:19 +07:00
Jiangli Zhou
cbaaf4f844 8307134: Add GTS root CAs
Co-authored-by: Andy Warner <awarner@google.com>
Co-authored-by: Rajan Halade <rhalade@openjdk.org>
Reviewed-by: mullan, rhalade
(cherry picked from commit 03030d47eb)
2023-05-12 18:26:17 +07:00
jeremy
ec24a7c4d1 4200096: OffScreenImageSource.removeConsumer NullPointerException
Reviewed-by: prr, serb
(cherry picked from commit 63cd0a36da)
2023-05-12 18:26:17 +07:00
Kevin Driver
7bc3b19e0f 8305963: Typo in java.security.Security.getProperty
Co-authored-by: Sean Coffey <coffeys@openjdk.org>
Reviewed-by: coffeys, wetmore
(cherry picked from commit db8b3cd084)
2023-05-12 18:26:16 +07:00
Martin Desruisseaux
7ca21d91a9 8306320: BufferedImage spec needs clarification w.r.t its implementation of the WritableRenderedImage interface
Reviewed-by: prr
(cherry picked from commit dcb2f3f502)
2023-05-12 18:26:15 +07:00
Harshitha Onkar
ee167db850 8305815: Update Libpng to 1.6.39
Reviewed-by: prr
(cherry picked from commit 14874779ee)
2023-05-12 18:26:15 +07:00
Matthew Donovan
92810163c7 8306014: Update javax.net.ssl TLS tests to use SSLContextTemplate or SSLEngineTemplate
Reviewed-by: xuelei
(cherry picked from commit 705ad7d829)
2023-05-12 18:26:14 +07:00
Jonathan Gibbons
a691d63dc0 8068925: Add @Override in javax.tools classes
Reviewed-by: darcy, iris
(cherry picked from commit 3930709af4)
2023-05-12 18:26:11 +07:00
Thomas Schatzl
67de9c6eeb 8306836: Remove pinned tag for G1 heap regions
Reviewed-by: ayang, cjplummer, sspitsyn
(cherry picked from commit fc76687c2f)
2023-05-12 18:26:11 +07:00
Roland Westrelin
1b87c6e4b3 8306933: C2: "assert(false) failed: infinite loop" failure
Reviewed-by: chagedorn, thartmann
(cherry picked from commit ccf91f881c)
2023-05-12 18:26:10 +07:00
Emanuel Peter
938c352c23 8306042: C2: failed: Missed optimization opportunity in PhaseCCP (adding LShift->Cast->Add notification)
Reviewed-by: thartmann, chagedorn, kvn
(cherry picked from commit e9807a4b0f)
2023-05-12 18:26:09 +07:00
Aleksey Shipilev
2403d3d428 8305092: Improve Thread.sleep(millis, nanos) for sub-millisecond granularity
Reviewed-by: dholmes, alanb
(cherry picked from commit fcb280a48b)
2023-05-12 18:26:08 +07:00
Albert Mingkun Yang
ae8ad4985e 8307005: Make CardTableBarrierSet::initialize non-virtual
Reviewed-by: dholmes
(cherry picked from commit 891530fbc9)
2023-05-12 18:26:07 +07:00
Roland Westrelin
1eb7bd7f1e 8306997: C2: "malformed control flow" assert due to missing safepoint on backedge with a switch
Reviewed-by: thartmann, kvn
(cherry picked from commit e0774bed2d)
2023-05-12 18:26:06 +07:00
Erik Österlund
694d972ec1 8307106: Allow concurrent GCs to walk CLDG without ClassLoaderDataGraph_lock
Reviewed-by: stefank, aboldtch, coleenp, dholmes
(cherry picked from commit 462b1df758)
2023-05-12 18:26:06 +07:00
Adam Sotona
26b9dd886f 8306729: Add nominal descriptors of modules and packages to Constants API
Reviewed-by: mchung
(cherry picked from commit c8f37564bf)
2023-05-12 18:26:03 +07:00
Feilong Jiang
93385e47cb 8307150: RISC-V: Remove remaining StoreLoad barrier with UseCondCardMark for Serial/Parallel GC
Reviewed-by: shade, fyang
(cherry picked from commit 0b5b6429a0)
2023-05-12 18:26:02 +07:00
Damon Nguyen
fbc6c448e5 8306466: Open source more AWT Drag & Drop related tests
Reviewed-by: prr
(cherry picked from commit 418a82551a)
2023-05-12 18:26:02 +07:00
Eamonn McManus
88f62f43ac 8303919: Instant.ofEpochMilli says it can throw an exception that it can't
Reviewed-by: rriggs
(cherry picked from commit 74667e3d56)
2023-05-12 18:26:01 +07:00
Harshitha Onkar
6086889326 8282232: [Win] GetMousePositionWithPopup test fails due to wrong mouse position
Reviewed-by: prr
(cherry picked from commit 76991c8129)
2023-05-12 18:26:00 +07:00
Stuart Marks
ebb83e1b4b 8302496: Runtime.exit incorrectly says it never throws an exception
Reviewed-by: alanb
(cherry picked from commit 05b9b5821d)
2023-05-12 18:25:59 +07:00
Kim Barrett
09d7c5ea9b 8293117: Add atomic bitset functions
Reviewed-by: shade, coleenp, dholmes
(cherry picked from commit 8a70664e52)
2023-05-12 18:25:59 +07:00
Liam Miller-Cushon
ed2bce3823 8303784: no-@Target annotations should be applicable to type parameter declarations
Reviewed-by: vromero
(cherry picked from commit 8c106b0c8e)
2023-05-12 18:25:58 +07:00
Jonathan Gibbons
45dccbb5b0 8307123: Fix deprecation warnings in DPrinter
Reviewed-by: vromero
(cherry picked from commit b76f320e76)
2023-05-12 18:25:57 +07:00
Jorn Vernee
0665ffd29a 8304888: Add dedicated VMProps for linker and fallback linker
Reviewed-by: alanb, mcimadamore

(cherry picked from commit a8bf2acb7d)
2023-05-12 18:25:55 +07:00
Johan Sjölen
9bde756cae 8301223: Replace NULL with nullptr in share/gc/g1/
Reviewed-by: tschatzl, kbarrett
(cherry picked from commit 75a4edca6b)
2023-05-12 18:24:34 +07:00
Yoshiki Sato
00552d7eb9 8305505: NPE in javazic compiler
Reviewed-by: naoto
(cherry picked from commit 544bd260b6)
2023-05-12 18:24:33 +07:00
Thomas Stuefe
115fe21fdd 8306510: Print number of threads and stack sizes in error reports
Reviewed-by: gziemski, dholmes
(cherry picked from commit ea9201f420)
2023-05-12 18:24:32 +07:00
Fredrik Bredberg
9037884829 8300197: Freeze/thaw an interpreter frame using a single copy_to_chunk() call
Reviewed-by: rrich, pchilanomate, fyang
(cherry picked from commit a8d16dea8e)
2023-05-12 18:24:31 +07:00
Jorn Vernee
34b83dd5ed 8307164: TestSegmentCopy times out (mainline)
Reviewed-by: mcimadamore
(cherry picked from commit 1532a1b0bd)
2023-05-12 18:24:31 +07:00
Martin Doerr
ae2d88ba27 8307104: [AIX] VM crashes with UseRTMLocking on Power10
Reviewed-by: clanger, lucy
(cherry picked from commit 860bf9b35f)
2023-05-12 18:24:30 +07:00
Alan Bateman
aa9337be85 8305919: java/lang/Thread/virtual/HoldsLock.java#id0 failed, ThreadInfo.getLockInfo() return null
Reviewed-by: jpai
(cherry picked from commit 86f97fe70c)
2023-05-12 18:24:29 +07:00
Joe Wang
d6e5e9317c 8298087: XML Schema Validation reports an required attribute twice via ErrorHandler
Reviewed-by: naoto
(cherry picked from commit 2179a8f2d6)
2023-05-12 18:24:29 +07:00
Serguei Spitsyn
3c499bbd39 8306028: separate ThreadStart/ThreadEnd events posting code in JVMTI VTMS transitions
8304444: Reappearance of NULL in jvmtiThreadState.cpp

Reviewed-by: pchilanomate, lmesnik
(cherry picked from commit 1227a275a1)
2023-05-12 18:24:27 +07:00
Vicente Romero
f1e9a05810 8301455: comments in TestTypeAnnotations still refer to resolved JDK-8068737
Reviewed-by: jjg
(cherry picked from commit 35e75c131d)
2023-05-12 18:24:26 +07:00
Sergey Tsypanov
8f1b429b4d 8300818: Reduce complexity of padding with DateTimeFormatter
Reviewed-by: redestad, rriggs
(cherry picked from commit 561ec9c5a0)
2023-05-12 18:24:25 +07:00
Chris Plummer
23754a9dd8 8282384: [LOOM] Need test for ThreadReference.interrupt() on a vthread
Reviewed-by: lmesnik, sspitsyn
(cherry picked from commit ae5f678fba)
2023-05-12 18:24:25 +07:00
Rajan Halade
018a52ff18 8304760: Add 2 Microsoft TLS roots
Reviewed-by: mullan
(cherry picked from commit c7e1df8328)
2023-05-12 18:24:24 +07:00
Roger Riggs
d9f0afa25c 8306678: Replace use of os.version with an internal Version record
Reviewed-by: mchung
(cherry picked from commit 6acf032db8)
2023-05-12 18:24:24 +07:00
Roger Riggs
74e905d658 8304915: Create jdk.internal.util.Architecture enum and apply
Reviewed-by: erikj, mdoerr, amitkumar
(cherry picked from commit f00a748bc5)
2023-05-12 18:24:23 +07:00
Jorn Vernee
8e29b77ced 8305201: Improve error message for GroupLayouts that are too large on SysV
Reviewed-by: mcimadamore
(cherry picked from commit 7d07d19523)
2023-05-12 18:24:22 +07:00
Jorn Vernee
46d33db4d9 8305093: Linker cache should not take layout names into account
Reviewed-by: mcimadamore
(cherry picked from commit 67dd841432)
2023-05-12 18:24:22 +07:00
Archie Cobbs
fb75a79956 8305672: Surprising definite assignment error after JDK-8043179
Reviewed-by: kcr, vromero
(cherry picked from commit d437c61f5b)
2023-05-12 18:24:21 +07:00
Jorn Vernee
0b02b1363e 8301703: java.base jdk.internal.foreign.abi.BindingSpecializer uses ASM to generate classes
Reviewed-by: mcimadamore, asotona
(cherry picked from commit b39a9bffda)
2023-05-12 18:24:21 +07:00
Jorn Vernee
60229388ad 8303002: Reject packed structs from linker
8300784: Specify exactly how padding should be presented to the linker
8304803: NPE thrown during downcall classification under Linux/x64
8303524: Check FunctionDescriptor byte order when linking

Reviewed-by: mcimadamore
(cherry picked from commit 1de1a38859)
2023-05-12 18:24:20 +07:00
Coleen Phillimore
52350f68fe 8306851: Move Method access flags
Reviewed-by: cjplummer, dholmes, dnsimon, matsaave, fparain

(cherry picked from commit 316d303c1d)
2023-05-12 18:24:19 +07:00
Aleksey Shipilev
12a2998190 8306825: Monitor deflation might be accidentally disabled by zero intervals
Reviewed-by: dcubed, eastigeevich, phh
(cherry picked from commit a6b4f25bd5)
2023-05-12 18:23:06 +07:00
Prasanta Sadhukhan
23b9405eb5 8305778: javax/swing/JTableHeader/6884066/bug6884066.java: Unexpected header's value; index = 4 value = E
Reviewed-by: serb, jdv
(cherry picked from commit 2d7c50791b)
2023-05-12 18:23:05 +07:00
Prasanta Sadhukhan
94171b5017 8305780: javax/swing/JTable/7068740/bug7068740.java fails on Ubunutu 20.04
Reviewed-by: serb, tr
(cherry picked from commit e1b06eac72)
2023-05-12 18:23:05 +07:00
Prasanta Sadhukhan
0fd3052361 8299713: Test javax/swing/JTableHeader/6889007/bug6889007.java failed: Wrong type of cursor
Reviewed-by: serb, tr
(cherry picked from commit b54c4a33c6)
2023-05-12 18:23:04 +07:00
Hannes Greule
68605c518b 8292275: javac does not emit SYNTHETIC and MANDATED flags for parameters by default
Co-authored-by: Chen Liang <liach@openjdk.org>
Reviewed-by: vromero, jwaters
(cherry picked from commit b3dbf28bc0)
2023-05-12 18:23:03 +07:00
Alexander Zuev
4bc2bb8cc2 8306954: Open source five Focus related tests
Reviewed-by: prr
(cherry picked from commit 6d6d00b69c)
2023-05-12 18:23:02 +07:00
Lance Andersen
2ad58c7046 8307088: Allow the jdbc.drivers system property to be searchable
Reviewed-by: naoto, joehw
(cherry picked from commit bb7608bacc)
2023-05-12 18:23:01 +07:00
SirYwell
c771e430b9 8304837: Classfile API throws IOOBE for MethodParameters attribute without parameter names
Reviewed-by: asotona, jwaters, vromero
(cherry picked from commit a2d3fc83b0)
2023-05-12 18:23:01 +07:00
Sergey Bylokhov
236e22ffe7 8307135: java/awt/dnd/NotReallySerializableTest/NotReallySerializableTest.java failed
Reviewed-by: jiefu, prr
(cherry picked from commit d43a5a289f)
2023-05-12 18:23:00 +07:00
Alexey Ushakov
4f31d7f169 JBR-5580 J2DBench: ~15% drop performance  because of non optimal synchronization in metal (MBP 16'' x64)
Replaced NSMutableArray with NSMutableSet, removed unnecessary __block modifier.
2023-05-10 20:50:17 +02:00
Alexey Ushakov
54832037c1 JBR-5580 J2DBench: ~15% drop performance because of non optimal synchronization in metal (MBP 16'' x64)
Removed NSLock and moved all operations to the AppKit thread
2023-05-04 16:08:06 +02:00
bourgesl
ac7bb70044 JBR-5170: improved color maskFill performance: using a new MaskColorBuffer and a specific shader (vert_txt_col)
fix crash in J2DDemo with advanced paints + artefacts with texture background
(cherry picked from commit 9c1f618e1a6239ad8c400d7b94ccd4a885ec02d7)
(cherry picked from commit c352cfb25d7f8188540b094bb484f7f438142be4)
2023-05-03 15:45:50 +02:00
Phil Race
0299eb6198 8306955: Open source several JComboBox jtreg tests
Reviewed-by: kizune
(cherry picked from commit 1f689241cf)
2023-04-29 14:24:56 +07:00
Phil Race
a082703a7c 8307080: Open source some more JComboBox jtreg tests
Reviewed-by: kizune
(cherry picked from commit b8de39431d)
2023-04-29 14:24:54 +07:00
Jorn Vernee
496ea4be4d 8307110: zero build broken after JDK-8304265
Reviewed-by: erikj
(cherry picked from commit 4818c798bc)
2023-04-29 14:24:52 +07:00
Stuart Marks
ffc610abbf 8296935: Arrays.asList() can return a List that throws undocumented ArrayStoreException
Reviewed-by: rriggs, lancea
(cherry picked from commit da9efee1c2)
2023-04-29 14:24:49 +07:00
Damon Nguyen
09657130d7 8306681: Open source more AWT DnD related tests
Reviewed-by: prr, serb
(cherry picked from commit 05af487a2d)
2023-04-29 14:24:48 +07:00
Damon Nguyen
895b92d941 8306133: Open source few AWT Drag & Drop related tests
Reviewed-by: prr, psadhukhan
(cherry picked from commit ec5c7926f3)
2023-04-29 14:24:47 +07:00
Alexander Zuev
d6b522fd2b 8307078: Opensource and clean up five more AWT Focus related tests
Reviewed-by: serb, prr
(cherry picked from commit 6d6f726b74)
2023-04-29 14:24:44 +07:00
Phil Race
bc9cd3eabd 8307079: Update test java/awt/Choice/DragOffNoSelect.java
Reviewed-by: azvegint, serb
(cherry picked from commit 89711f3767)
2023-04-29 14:24:43 +07:00
Weijun Wang
1b495836d2 8307077: Convert CRLF to LF in java.xml.crypto
Reviewed-by: mullan
(cherry picked from commit 9ff555083a)
2023-04-29 14:24:42 +07:00
Madjosz
9d7165e1a0 8302983: ZoneRulesProvider.registerProvider() twice will remove provider
Reviewed-by: naoto
(cherry picked from commit f83e7302c1)
2023-04-29 14:24:39 +07:00
Rajan Halade
80827b01c2 8305975: Add TWCA Global Root CA
Reviewed-by: mullan
(cherry picked from commit 82ccfe3a21)
2023-04-29 14:24:38 +07:00
Dean Long
ddeb702d63 8306331: assert((cnt > 0.0f) && (prob > 0.0f)) failed: Bad frequency assignment in if
Reviewed-by: thartmann, chagedorn
(cherry picked from commit a177152f22)
2023-04-29 14:24:35 +07:00
Calvin Cheung
cceb302fcf 8303475: potential null pointer dereference in filemap.cpp
Reviewed-by: dholmes
(cherry picked from commit e1196584d5)
2023-04-29 14:24:34 +07:00
Coleen Phillimore
2520f62e22 8306950: [REDO] JDK-8305252 make_method_handle_intrinsic may call java code under a lock
Reviewed-by: dholmes, matsaave, iklam
(cherry picked from commit cf799ba232)
2023-04-29 14:24:33 +07:00
Tejesh R
1eca5ed1ca 8306432: Open source several AWT Text Component related tests
Reviewed-by: prr
(cherry picked from commit 485a0691f4)
2023-04-29 14:24:29 +07:00
Tejesh R
78926901fb 8306640: Open source several AWT TextArea related tests
Reviewed-by: prr, serb
(cherry picked from commit 169a7c27a7)
2023-04-29 14:24:28 +07:00
JoKern65
6928895340 8306672: support offset in dll_address_to_library_name on AIX
Reviewed-by: stuefe, clanger, mbaesken
(cherry picked from commit 5d9baa2f93)
2023-04-29 14:24:28 +07:00
Antonios Printezis
a75fbe4118 8307063: When cross-compiling with hsdis/binutils, buildjdk creation fails
Reviewed-by: erikj
(cherry picked from commit 83a98c66f1)
2023-04-29 14:24:25 +07:00
Jie Fu
681edba877 8307103: Two TestMetaspaceAllocationMT tests fail after JDK-8306696
Reviewed-by: dholmes
(cherry picked from commit 452cb8432f)
2023-04-29 14:24:24 +07:00
Amit Kumar
21611c3429 8299748: java/util/zip/Deinflate.java failing on s390x
Reviewed-by: jpai, lancea, simonis, aturbanov
(cherry picked from commit fee02f0668)
2023-04-29 14:24:23 +07:00
Aleksei Voitylov
085c3e4c83 8305387: JDK-8301995 breaks arm 32-bit
Reviewed-by: shade, matsaave
(cherry picked from commit 60a29a668c)
2023-04-29 14:24:20 +07:00
Matthias Baesken
51412f4b72 8307006: ProblemList gtest/NMTGtest.java on aix
Reviewed-by: mdoerr
(cherry picked from commit 3d9d84b742)
2023-04-29 14:24:19 +07:00
Afshin Zafari
4ae1d617a2 8305079: Remove finalize() from compiler/c2/Test719030
Reviewed-by: thartmann, coleenp
(cherry picked from commit 84df74ca39)
2023-04-29 14:24:19 +07:00
Thomas Stuefe
8226fd0194 8306696: Remove MetaspaceReclaimPolicy=aggressive and obsolete MetaspaceReclaimPolicy
Reviewed-by: dholmes, rkennke, coleenp
(cherry picked from commit 0b5c504ad0)
2023-04-29 14:24:14 +07:00
Richard Reingruber
439ed2de82 8306901: Macro offset_of confuses Eclipse CDT
Reviewed-by: stuefe, kbarrett
(cherry picked from commit eb3af8abe9)
2023-04-29 14:24:13 +07:00
Kim Barrett
41727403d8 8305566: Change StringDedup thread to derive from JavaThread
Reviewed-by: stefank, cjplummer, tschatzl
(cherry picked from commit d3abfec8b7)
2023-04-29 14:24:12 +07:00
Justin Lu
2b24c31fc5 8306711: Improve diagnosis of IntlTest framework
Reviewed-by: naoto, lancea
(cherry picked from commit f3c90f0445)
2023-04-29 14:24:11 +07:00
Roger Riggs
1f63b1a2a3 8298993: (process) java/lang/ProcessBuilder/UnblockSignals.java fails
Reviewed-by: bchristi
(cherry picked from commit b827ce8334)
2023-04-29 14:24:09 +07:00
Jonathan Gibbons
e350983260 8306952: improve generic signature of internal DCInlineTag class
Reviewed-by: iris
(cherry picked from commit 7871390930)
2023-04-29 14:24:08 +07:00
Naoto Sato
6e0b2b8ccb 8306927: Collator treats "v" and "w" as the same letter for Swedish language locale.
Reviewed-by: jlu, iris, joehw
(cherry picked from commit 6983d05b73)
2023-04-29 14:24:07 +07:00
Brian Burkhalter
356c033869 8306959: (bf) CharBuffer.append(CharSequence,int,int) throws BufferOverflowException where IndexOutOfBoundsException expected
Reviewed-by: alanb
(cherry picked from commit 80fae514b1)
2023-04-29 14:24:04 +07:00
Raffaello Giulietti
a7115f4a62 8205592: BigDecimal.doubleValue() is depressingly slow
Reviewed-by: darcy
(cherry picked from commit eb358619df)
2023-04-29 14:24:00 +07:00
Abhishek Kumar
06fb3fc9cf 8306850: Open source AWT Model related tests
Reviewed-by: serb, azvegint
(cherry picked from commit 41ba05e450)
2023-04-29 14:23:59 +07:00
Jiangli Zhou
a8b7112003 8306949: Resolve miscellaneous multiple symbol definition issues when statically linking JDK/VM natives with standard launcher
Reviewed-by: alanb
(cherry picked from commit fed262a9cf)
2023-04-29 14:23:56 +07:00
Albert Mingkun Yang
91ea396cca 8306833: Change CardTable::_covered to static array
Reviewed-by: tschatzl, kbarrett
(cherry picked from commit 96cdf93b42)
2023-04-29 14:23:55 +07:00
Roberto Castañeda Lozano
e2b88f2e0f 8287087: C2: perform SLP reduction analysis on-demand
Reviewed-by: epeter, jbhateja, thartmann
(cherry picked from commit 1be80a4445)
2023-04-29 14:23:54 +07:00
bobpengxie
d7ee82fd53 8306976: UTIL_REQUIRE_SPECIAL warning on grep
Reviewed-by: clanger, mbaesken
(cherry picked from commit ba43649530)
2023-04-29 14:23:49 +07:00
Per Minborg
9029ca4ea0 8304265: Implementation of Foreign Function and Memory API (Third Preview)
Co-authored-by: Maurizio Cimadamore <mcimadamore@openjdk.org>
Co-authored-by: Jorn Vernee <jvernee@openjdk.org>
Co-authored-by: Paul Sandoz <psandoz@openjdk.org>
Co-authored-by: Feilong Jiang <fjiang@openjdk.org>
Co-authored-by: Per Minborg <pminborg@openjdk.org>
Reviewed-by: erikj, jvernee, vlivanov, psandoz
(cherry picked from commit cbccc4c817)
2023-04-29 14:23:45 +07:00
Daniel Fuchs
87bb2225d3 8306940: test/jdk/java/net/httpclient/XxxxInURI.java should call HttpClient::close
Reviewed-by: jpai, djelinski
(cherry picked from commit 41d58533ac)
2023-04-29 14:23:44 +07:00
Thomas Schatzl
b331b14983 8306858: Remove some remnants of CMS from SA agent
Reviewed-by: shade, cjplummer, kbarrett, ysr
(cherry picked from commit d94ce6566d)
2023-04-29 14:23:42 +07:00
Thomas Stuefe
a0029cc63a 8306654: Disable NMT location_printing_cheap_dead_xx tests again
Reviewed-by: dholmes
(cherry picked from commit a83c02fe2c)
2023-04-29 14:23:41 +07:00
Dmitry Cherepanov
ce95e8b1e9 6995195: Static initialization deadlock in sun.java2d.loops.Blit and GraphicsPrimitiveMgr
Reviewed-by: serb, aivanov
(cherry picked from commit de0c05da07)
2023-04-29 14:23:40 +07:00
Axel Boldt-Christmas
26739b569f 8306732: TruncatedSeq::predict_next() attempts linear regression with only one data point
Reviewed-by: tschatzl, kbarrett
(cherry picked from commit 748476fd80)
2023-04-29 14:23:37 +07:00
Thomas Stuefe
0c6fe2d946 8306883: Thread stacksize is reported with wrong units in os::create_thread logging
Reviewed-by: shade
(cherry picked from commit 27c5c1070a)
2023-04-29 14:23:35 +07:00
David Holmes
211c7756aa 8229147: Linux os::create_thread() overcounts guardpage size with newer glibc (>=2.27)
Reviewed-by: shade, stuefe
(cherry picked from commit 9ebcda2165)
2023-04-29 14:23:32 +07:00
Archie Cobbs
771048df16 8071693: Introspector ignores default interface methods
Reviewed-by: prr, aivanov, serb
(cherry picked from commit 1e4eafb4fe)
2023-04-29 14:23:32 +07:00
Ioi Lam
8503855273 8305771: SA ClassWriter.java fails to skip overpass methods
Reviewed-by: kevinw, cjplummer
(cherry picked from commit 750bece0c2)
2023-04-29 14:23:30 +07:00
Coleen Phillimore
a4ec03d488 8306951: [BACKOUT] JDK-8305252 make_method_handle_intrinsic may call java code under a lock
Reviewed-by: dcubed
(cherry picked from commit b81c9c8442)
2023-04-29 14:23:28 +07:00
Abhishek Kumar
945644d9d4 8306409: Open source AWT KeyBoardFocusManger, LightWeightComponent related tests
Reviewed-by: psadhukhan, tr, serb
(cherry picked from commit 732179ca84)
2023-04-29 14:23:27 +07:00
Chris Plummer
8da9a6e292 8306705: com/sun/jdi/PopAndInvokeTest.java fails with NativeMethodException
Reviewed-by: lmesnik, amenkov, sspitsyn
(cherry picked from commit 38cc0391f3)
2023-04-29 14:23:26 +07:00
Weijun Wang
6e622448b3 8302182: Update Public Suffix List to 88467c9
Reviewed-by: mullan
(cherry picked from commit 01b8512911)
2023-04-29 14:23:26 +07:00
Justin Lu
0fee1160bd 8305853: java/text/Format/DateFormat/DateFormatRegression.java fails with "Uncaught exception thrown in test method Test4089106"
Reviewed-by: naoto, lancea
(cherry picked from commit 8e36c05d6c)
2023-04-29 14:23:25 +07:00
Brian Burkhalter
db69936d56 8306374: (bf) Improve performance of DirectCharBuffer::append(CharSequence[,int,int])
Reviewed-by: liach, alanb
(cherry picked from commit d0e8aec041)
2023-04-29 14:23:22 +07:00
Amit Kumar
ccffba29c3 8302328: [s390x] Simplify asm_assert definition
Reviewed-by: lucy, mdoerr
(cherry picked from commit a18191fee8)
2023-04-29 14:23:21 +07:00
Jiangli Zhou
f42a68e381 8306033: Resolve multiple definition of 'throwIOException' and friends when statically linking with JDK native libraries
Reviewed-by: alanb
(cherry picked from commit 9bc6a212f7)
2023-04-29 14:23:21 +07:00
Xin Liu
cedccdd483 8306872: Rename Node_Array::Size()
Reviewed-by: kvn, thartmann, shade
(cherry picked from commit 35e802374c)
2023-04-29 14:23:20 +07:00
Leonid Mesnik
eb5318c53e 8233725: ProcessTools.startProcess() has output issues when using an OutputAnalyzer at the same time
Reviewed-by: cjplummer, sspitsyn
(cherry picked from commit 2e340e855b)
2023-04-29 14:23:19 +07:00
Amit Kumar
e62d3fcc78 8306855: [s390x] fix difference in abi sizes
Reviewed-by: mdoerr, lucy
(cherry picked from commit 35e7bc21d3)
2023-04-29 14:23:16 +07:00
Aleksey Shipilev
839432f30d 8306774: Make runtime/Monitor/GuaranteedAsyncDeflationIntervalTest.java more reliable
Reviewed-by: stuefe, dcubed
(cherry picked from commit 9ad6dc881d)
2023-04-29 14:23:16 +07:00
Albert Mingkun Yang
ff93d2599c 8306749: Make CardTable::invalidate non-virtual
Reviewed-by: tschatzl
(cherry picked from commit c5910fa065)
2023-04-29 14:23:15 +07:00
Ivan Walulya
794ee27721 8306735: G1: G1FullGCScope remove unnecessary member _explicit_gc
Reviewed-by: ayang, tschatzl
(cherry picked from commit 86f41a4c42)
2023-04-29 14:23:14 +07:00
Martin Doerr
e4bc4a3aaa 8306823: Native memory leak in SharedRuntime::notify_jvmti_unmount/mount.
Reviewed-by: pchilanomate, sspitsyn
(cherry picked from commit d74769826d)
2023-04-29 14:23:12 +07:00
Roberto Castañeda Lozano
e7ae08c686 8298189: Regression in SPECjvm2008-MonteCarlo for pre-Cascade Lake Intel processors
Co-authored-by: Quan Anh Mai <qamai@openjdk.org>
Reviewed-by: shade, thartmann, kvn
(cherry picked from commit 8d899925dc)
2023-04-29 14:23:10 +07:00
Tejesh R
3c8a08682e 8306072: Open source several AWT MouseInfo related tests
Reviewed-by: serb, psadhukhan
(cherry picked from commit 44d9f55d0b)
2023-04-29 14:23:09 +07:00
Emanuel Peter
8aae30ded3 8303466: C2: failed: malformed control flow. Limit type made precise with MaxL/MinL
Reviewed-by: roland, kvn, chagedorn, thartmann
(cherry picked from commit cc894d849a)
2023-04-29 14:23:06 +07:00
Abhishek Kumar
831c59228a 8306652: Open source AWT MenuItem related tests
Reviewed-by: prr, psadhukhan
(cherry picked from commit ed1ebd242a)
2023-04-29 14:23:05 +07:00
Prasanta Sadhukhan
90ec1e4c25 8306755: Open source few Swing JComponent and AbstractButton tests
Reviewed-by: prr
(cherry picked from commit f3e8bd1d11)
2023-04-29 14:23:04 +07:00
Dingli Zhang
4ada9066ce 8302908: RISC-V: Support masked vector arithmetic instructions for Vector API
Co-authored-by: zifeihan <caogui@iscas.ac.cn>
Reviewed-by: fyang, fjiang, yzhu
(cherry picked from commit 1c1a73f715)
2023-04-29 14:23:02 +07:00
Chen Liang
f18b21243f 8304918: Remove unused decl field from AnnotatedType implementations
Reviewed-by: stsypanov, darcy
(cherry picked from commit adf62febe6)
2023-04-29 14:23:01 +07:00
Justin Lu
41e112c07f 8306031: Update IANA Language Subtag Registry to Version 2023-04-13
Reviewed-by: naoto
(cherry picked from commit 00b1eacad6)
2023-04-29 14:22:59 +07:00
Alexander Zvegintsev
de5ba29f28 8306752: Open source several container and component AWT tests
Reviewed-by: prr
(cherry picked from commit 88d9ebf8e8)
2023-04-29 14:22:58 +07:00
Alexander Zvegintsev
a03c275b26 8306683: Open source several clipboard and color AWT tests
Reviewed-by: prr
(cherry picked from commit 1c2dadc31e)
2023-04-29 14:22:56 +07:00
Alexander Zvegintsev
528fe55cea 8306753: Open source several container AWT tests
Reviewed-by: prr
(cherry picked from commit b372f28ad4)
2023-04-29 14:22:55 +07:00
Brian Burkhalter
e17c0a7a1c 8306623: (bf) CharBuffer::allocate throws unexpected exception type with some CharSequences
Reviewed-by: alanb, lancea
(cherry picked from commit e3ccaa6541)
2023-04-29 14:22:55 +07:00
Joe Darcy
02ad95dc86 8304423: Refactor FdLibm.java
Reviewed-by: bpb
(cherry picked from commit d819debaa5)
2023-04-29 14:22:54 +07:00
Aleksey Shipilev
36dcdff5ce 8306734: Shenandoah: Missing barriers on deoptimization path
Reviewed-by: eosterlund, rkennke
(cherry picked from commit 28829f308f)
2023-04-29 14:22:50 +07:00
Alexander Zuev
0550060989 8306718: Optimize and opensource some old AWT tests
Reviewed-by: prr
(cherry picked from commit 9beae21864)
2023-04-29 14:22:50 +07:00
Phil Race
d8d11deac3 8306765: Some client related jtreg problem list entries are malformed
Reviewed-by: iris
(cherry picked from commit 36d61c3106)
2023-04-29 14:22:49 +07:00
Zhengyu Gu
27359448ef 8306687: Relax memory ordering constraints on metaspace atomic counters
Reviewed-by: shade, minqi
(cherry picked from commit 5f4965d422)
2023-04-29 14:22:48 +07:00
Valerie Peng
1f6143838d 8304845: Update PCSC-Lite for Suse Linux to 1.9.9 and fix incomplete license wording
Reviewed-by: manc, mullan
(cherry picked from commit 33d6614150)
2023-04-29 14:22:48 +07:00
Eirik Bjorsnos
0642552102 8306772: Remove sun.security.x509.CertException, sun.security.x509.CertParseError
Reviewed-by: mullan
(cherry picked from commit c92883a3d5)
2023-04-29 14:22:47 +07:00
Quan Anh Mai
0d48835901 8306008: Several Vector API tests fail for client VM after JDK-8304450
Reviewed-by: psandoz
(cherry picked from commit 0ff3a2784e)
2023-04-29 14:22:45 +07:00
Quan Anh Mai
8e3c7994f4 8304676: [vectorapi] x86_32: Crash in Assembler::kmovql(Address, KRegister)
Reviewed-by: shade, thartmann, jbhateja
(cherry picked from commit e8f62de1cf)
2023-04-29 14:22:44 +07:00
Daniel Fuchs
9bf3b952ee 8301169: java/net/httpclient/ThrowingSubscribersAsInputStream.java,ThrowingSubscribersAsInputStreamAsync.java, and other httpclient tests failing on windows: Unable to establish loopback connection
Reviewed-by: aefimov, djelinski
(cherry picked from commit 98e8616a0c)
2023-04-29 14:22:43 +07:00
Prasanta Sadhukhan
81af8f0ae8 8306838: GetGraphicsTest needs to be headful
Reviewed-by: jiefu, dcubed
(cherry picked from commit 07ea445b43)
2023-04-29 14:22:42 +07:00
Stuart Marks
71defcc304 8266571: Sequenced Collections
Reviewed-by: alanb
(cherry picked from commit 17ce0976e4)
2023-04-29 14:22:39 +07:00
Christoph Langer
2c785f79ec 8289735: UTIL_LOOKUP_PROGS fails on pathes with space
Reviewed-by: erikj, mbaesken
(cherry picked from commit bad6aa68e4)
2023-04-29 14:22:38 +07:00
Roger Riggs
3045ec37d1 8306770: (fs) Remove obsolete os.version check from sun.nio.fs.BsdFileStore.supportsFileAttributeView
Reviewed-by: bpb, iris, lancea, alanb
(cherry picked from commit 5f50e991ca)
2023-04-29 14:22:37 +07:00
Albert Mingkun Yang
8522dcc92d 8306740: G1: Change G1CardSetHashTableScan to lambda
Reviewed-by: kbarrett, tschatzl
(cherry picked from commit 9d1fe6565c)
2023-04-29 14:22:34 +07:00
Thomas Schatzl
a88fc6f121 8306733: Remove template parameter of G1DetermineCompactionQueueClosure::free_pinned_region
Reviewed-by: ayang, iwalulya
(cherry picked from commit a4a5385831)
2023-04-29 14:22:33 +07:00
Ivan Walulya
d1d2638baa 8306766: Reduce heap size for TestJNICriticalStressTest
Reviewed-by: ayang, tschatzl
(cherry picked from commit a98f58756d)
2023-04-29 14:22:32 +07:00
Prasanta Sadhukhan
d93e701a1b 8306067: Open source AWT Graphics,GridBagLayout related tests
Reviewed-by: serb
(cherry picked from commit d53a5eed0f)
2023-04-29 14:22:32 +07:00
Dmitry Cherepanov
7ea52c4be6 8305352: updateIconImages may lead to deadlock after JDK-8276849
Reviewed-by: aivanov, serb
(cherry picked from commit f968da97a5)
2023-04-29 14:22:31 +07:00
Aleksey Shipilev
2758579b5a 8306773: Problemlist jdk/incubator/vector/ShortMaxVectorTests.java on x86_32
Reviewed-by: kvn
(cherry picked from commit 2985738f15)
2023-04-29 14:22:30 +07:00
Prasanta Sadhukhan
01d7ada03b 8306714: Open source few Swing event and AbstractAction tests
Reviewed-by: serb, prr
(cherry picked from commit 31a73b0d70)
2023-04-29 14:22:30 +07:00
Kim Barrett
3a7e713d81 8306695: Divide by zero in G1Policy::logged_cards_processing_time
Reviewed-by: iwalulya, tschatzl
(cherry picked from commit 8063aa2e4a)
2023-04-29 14:22:29 +07:00
Christian Stein
f6f8961aaf 8304036: Use CommandLine class from shared module
Reviewed-by: jjg, mchung
(cherry picked from commit 2471919020)
2023-04-29 14:22:25 +07:00
Phil Race
5482041339 8306682: Open source a few more AWT Choice tests
Reviewed-by: serb
(cherry picked from commit f39641ccbd)
2023-04-29 14:22:25 +07:00
Phil Race
c46c526faa 8306484: Open source several AWT Choice jtreg tests
Reviewed-by: serb
(cherry picked from commit b5362dadc5)
2023-04-29 14:22:24 +07:00
Coleen Phillimore
11cb6c20f6 8303276: Secondary assertion failure in AdapterHandlerLibrary::contains during crash reporting
Reviewed-by: iklam, stuefe
(cherry picked from commit 2ea62c1369)
2023-04-29 14:22:23 +07:00
Tyler Steele
76c0a0ab3a 8305922: [aix,linux] Avoid comparing 'this' to nullptr
Reviewed-by: mdoerr, dholmes
(cherry picked from commit 0dc03c9d54)
2023-04-29 14:22:22 +07:00
Daniel D. Daugherty
54fb3833e6 8306780: ProblemList java/lang/Thread/virtual/HoldsLock.java#id0 in Xcomp
Reviewed-by: darcy
(cherry picked from commit 328e512d12)
2023-04-29 14:22:22 +07:00
Aleksey Shipilev
7a23ed1c1b 8306775: Problemlist runtime/Monitor/GuaranteedAsyncDeflationIntervalTest.java
Reviewed-by: dcubed
(cherry picked from commit 937dd3456c)
2023-04-29 14:22:21 +07:00
Michael McMahon
f90dc575c4 8304818: Prune HttpURLConnection cache when corresponding Authenticator is garbage collected
Reviewed-by: dfuchs, djelinski
(cherry picked from commit 314db55f6d)
2023-04-29 14:22:17 +07:00
Aleksey Shipilev
26a549cb6f 8305994: Guarantee eventual async monitor deflation
Reviewed-by: simonis, stuefe, dcubed
(cherry picked from commit 6b81342c22)
2023-04-29 14:22:16 +07:00
Kevin Walls
c3374521cd 8301065: Handle control characters in java_lang_String::print
Reviewed-by: iklam, dholmes
(cherry picked from commit 41d6be4d80)
2023-04-29 14:22:16 +07:00
Daniel D. Daugherty
984ab21e2d 8301377: adjust timeout for JLI GetObjectSizeIntrinsicsTest.java subtest again
8302607: increase timeout for ContinuousCallSiteTargetChange.java
8305502: adjust timeouts in three more M&M tests

Reviewed-by: naoto, lmesnik, thartmann
(cherry picked from commit 4b23bef51d)
2023-04-29 14:22:13 +07:00
Naoto Sato
f0c746bc21 8304836: Make MALLOC_MIN4 macro more robust
Reviewed-by: bchristi
(cherry picked from commit f32adaf89f)
2023-04-29 14:22:12 +07:00
Christian Stein
5dd8ca744c 8304896: Update to use jtreg 7.2
Reviewed-by: erikj, lmesnik, iris
(cherry picked from commit 2763cf14e6)
2023-04-29 14:22:12 +07:00
Johan Sjölen
efcb8c9b7d 8306444: Don't leak memory in PhaseChaitin::PhaseChaitin
Reviewed-by: kvn, roland
(cherry picked from commit b2ccc9731e)
2023-04-29 14:22:11 +07:00
Christoph Langer
5af5b403e8 8306658: GHA: MSVC installation could be optional since it might already be pre-installed
Reviewed-by: shade, goetz
(cherry picked from commit d980cb4879)
2023-04-29 14:22:11 +07:00
Matias Saavedra Silva
170d21d238 8306476: CDS ArchiveHeapTestClass.java test asserts when vm_exit is called on VM thread
Reviewed-by: ccheung
(cherry picked from commit 62acc882bf)
2023-04-29 14:22:10 +07:00
Coleen Phillimore
09718f988e 8305252: make_method_handle_intrinsic may call java code under a lock
Reviewed-by: dholmes, matsaave, iklam
(cherry picked from commit 7400aff3b8)
2023-04-29 14:22:08 +07:00
Vladimir Kempik
6ea4a1509a 8305056: Avoid unaligned access in emit_intX methods if it's unsupported
Reviewed-by: aph
(cherry picked from commit f239695b56)
2023-04-29 14:22:07 +07:00
Alexander Zvegintsev
eb50066601 8306566: Open source several clipboard AWT tests
Reviewed-by: serb
(cherry picked from commit 136dad7197)
2023-04-29 14:22:04 +07:00
Albert Mingkun Yang
7d97abe701 8305062: Refactor CardTable::resize_covered_region
Reviewed-by: tschatzl, iwalulya
(cherry picked from commit 30fa50d158)
2023-04-29 14:22:02 +07:00
Ivan Walulya
90b1c7cbd5 8057586: Explicit GC ignored if GCLocker is active
Reviewed-by: tschatzl, ayang
(cherry picked from commit 4a9f8efa86)
2023-04-29 14:22:00 +07:00
Leo Korinth
8c0137a378 8306435: Juggle04/TestDescription.java should be a booleanArr test and not a byteArr one
Reviewed-by: tschatzl, lmesnik, shade
(cherry picked from commit ce493dda90)
2023-04-29 14:21:58 +07:00
Prasanta Sadhukhan
0987207460 8306076: Open source AWT misc tests
Reviewed-by: serb
(cherry picked from commit f7d45b85a5)
2023-04-29 14:21:57 +07:00
Ramkumar Sunderbabu
f328f3e82b 8306636: Disable compiler/c2/Test6905845.java with -XX:TieredStopAtLevel=3
Reviewed-by: kvn
(cherry picked from commit 4900517479)
2023-04-29 14:21:56 +07:00
Afshin Zafari
1e8abbb628 8305590: Remove nothrow exception specifications from operator new
Reviewed-by: coleenp, kbarrett
(cherry picked from commit 0f51e63263)
2023-04-29 14:21:54 +07:00
Alexander Zuev
0a46626324 8306575: Clean up and open source four Dialog related tests
Reviewed-by: prr
(cherry picked from commit 8d696aea9e)
2023-04-29 14:21:52 +07:00
Harshitha Onkar
ec060f8935 8306634: Open source AWT Event related tests
Reviewed-by: prr, serb
(cherry picked from commit 9ed456fac8)
2023-04-29 14:21:49 +07:00
Calvin Cheung
9a57c3f9f4 8304696: Duplicate class names in dynamicArchive tests can lead to test failure
Reviewed-by: iklam
(cherry picked from commit b2240bf870)
2023-04-29 14:21:48 +07:00
Mikael Vidstedt
da66521d12 8296153: Bump minimum boot jdk to JDK 20
Reviewed-by: erikj, darcy, iris
(cherry picked from commit cb158ffb8a)
2023-04-29 14:21:47 +07:00
Sergey Bylokhov
abf7ec1840 8279216: Investigate implementation of premultiplied alpha in the Little-CMS 2.13
Reviewed-by: prr
(cherry picked from commit 117c5b116b)
2023-04-29 14:21:46 +07:00
Ioi Lam
b49748ba13 8298048: Combine CDS archive heap into a single block
Co-authored-by: Thomas Schatzl <tschatzl@openjdk.org>
Reviewed-by: matsaave, tschatzl
(cherry picked from commit 723037a79d)
2023-04-29 14:21:44 +07:00
Thomas Schatzl
807a4bdfa1 8306440: Rename PSS:_num_optional_regions to _max_num_optional_regions
Reviewed-by: ayang, iwalulya
(cherry picked from commit d518dbf726)
2023-04-29 14:21:43 +07:00
Thomas Schatzl
442ff1a4b1 8306436: Rename PSS*:_n_workers to PSS*:_num_workers
Reviewed-by: ayang, iwalulya
(cherry picked from commit 9cd5741c14)
2023-04-29 14:21:42 +07:00
Johan Sjölen
d2baadc727 8306456: Don't leak _worklist's memory in PhaseLive::compute
Reviewed-by: kvn, dlong
(cherry picked from commit 6e77e14fdb)
2023-04-29 14:21:39 +07:00
Leonid Mesnik
6ad7f6426d 8303703: Add support of execution tests using virtual thread factory jtreg plugin
Reviewed-by: erikj, jpai
(cherry picked from commit be6031b87d)
2023-04-29 14:21:39 +07:00
Christoph Langer
33f18e80aa 8306543: GHA: MSVC installation is failing
Reviewed-by: shade, mdoerr
(cherry picked from commit 5a00617b1b)
2023-04-29 14:21:37 +07:00
Oli Gillespie
5aaea7d8af 8306075: Micro-optimize Enum.hashCode
Co-authored-by: Aleksey Shipilev <shade@openjdk.org>
Reviewed-by: redestad, shade, rriggs, liach, apangin, jvernee
(cherry picked from commit 3da987adac)
2023-04-29 14:21:37 +07:00
Doug Simon
43c8da250a 8306581: JVMCI tests failed when run with -XX:TypeProfileLevel=222 after JDK-8303431
Reviewed-by: never, kvn
(cherry picked from commit fdaabd6eec)
2023-04-29 14:21:36 +07:00
Jayathirth D V
5a0279bcd6 8306430: Open source some AWT tests related to TextComponent and Toolkit
Reviewed-by: serb
(cherry picked from commit 36ec05d52a)
2023-04-29 14:21:35 +07:00
Prasanta Sadhukhan
c4293be7f0 8305942: Open source several AWT Focus related tests
Reviewed-by: prr
(cherry picked from commit 8346ae2bc1)
2023-04-29 14:21:33 +07:00
Prasanta Sadhukhan
ae80b24805 8306060: Open source few AWT Insets related tests
Reviewed-by: serb, prr
(cherry picked from commit 9a68d1d952)
2023-04-29 14:21:32 +07:00
sunguoyun
23edcceeee 8305236: Some LoadLoad barriers in the interpreter are unnecessary after JDK-8220051
Reviewed-by: dholmes, fyang, aph
(cherry picked from commit 2c70828e7d)
2023-04-29 14:21:32 +07:00
Vitaly Provodin
8dfe3d7031 update exclude list on results of 93.3 test runs 2023-04-29 14:20:29 +07:00
Alexey Ushakov
2dc675a13e JBR-5559 SwingMark performance drop after removing additional command queue
Added command queue and provided synchronization between the command queues
2023-04-24 21:23:46 +02:00
Justin Lu
1b1fc1b62d 8305207: Calendar.aggregateStamp(int, int) return value can be simplified
Reviewed-by: naoto, rriggs, iris
(cherry picked from commit ffb2494de4)
2023-04-21 15:54:15 +07:00
Justin Lu
0ca4ef68a5 4737887: (cal) API: Calendar methods taking field should document exceptions
Reviewed-by: naoto
(cherry picked from commit 174c1a6d53)
2023-04-21 15:54:13 +07:00
Coleen Phillimore
92f530cc81 8306474: Move InstanceKlass read-only flags
Reviewed-by: jrose, dholmes
(cherry picked from commit f63362310e)
2023-04-21 15:54:12 +07:00
Coleen Phillimore
89a9b6c5af 8306482: Remove unused Method AccessFlags
Reviewed-by: dholmes, matsaave
(cherry picked from commit afd2501fcc)
2023-04-21 15:54:10 +07:00
Harshitha Onkar
db06d8446a 8305874: Open source AWT Key, Text Event related tests
Reviewed-by: azvegint
(cherry picked from commit d6cf4aa155)
2023-04-21 15:54:09 +07:00
Xin Liu
aecc055e21 8297302: gtest/AsyncLogGtest.java fails AsyncLogTest.stdoutOutput_vm
Reviewed-by: dholmes, shade
(cherry picked from commit 9412c0a2ca)
2023-04-21 15:54:08 +07:00
Peter Hofer
b95c307019 8305746: InitializeEncoding should cache Charset object instead of charset name
Reviewed-by: naoto

(cherry picked from commit 20b1d19d26)
2023-04-21 15:54:08 +07:00
Brian Burkhalter
f1adbbaf15 8306483: (ch) Channels.newReader(ReadableByteChannel,Charset) refers to csName
Reviewed-by: alanb
(cherry picked from commit 955abcae55)
2023-04-21 15:52:55 +07:00
Lance Andersen
35b0a5c57c 8305945: (zipfs) Opening a directory to get input stream produces incorrect exception message
Reviewed-by: naoto, cstein
(cherry picked from commit c6a288dcd6)
2023-04-21 15:52:54 +07:00
Albert Mingkun Yang
c66a66103c 8306284: G1: Remove assertion in G1ScanHRForRegionClosure::do_claimed_block
Reviewed-by: kbarrett, tschatzl
(cherry picked from commit 73018b39cd)
2023-04-21 15:52:53 +07:00
Zixian Cai
f90ea696b8 8306538: Zero variant build failure after JDK-8257967
Reviewed-by: shade, dholmes
(cherry picked from commit 33a7978e85)
2023-04-21 15:52:52 +07:00
Amit Kumar
9088ddc325 8306459: s390x: Replace NULL to nullptr
Reviewed-by: mdoerr
(cherry picked from commit 9c2e5b3871)
2023-04-21 15:52:51 +07:00
Stefan Karlsson
059d223144 8305880: Loom: Avoid putting stale object pointers in oops
Reviewed-by: eosterlund, aboldtch
(cherry picked from commit 6a7dff30ed)
2023-04-21 15:52:49 +07:00
Matthias Baesken
4dd49b5017 8304291: [AIX] Broken build after JDK-8301998
Reviewed-by: mdoerr, tsteele, prr
(cherry picked from commit 310aa93478)
2023-04-21 15:52:42 +07:00
Prasanta Sadhukhan
47e90b514b 8305943: Open source few AWT Focus related tests
Reviewed-by: prr, serb
(cherry picked from commit 64ed816ad9)
2023-04-21 15:52:39 +07:00
Jaikiran Pai
02a5753746 8041676: remove the java.compiler system property
Reviewed-by: dholmes, alanb, rriggs, iris
(cherry picked from commit b8f0a668dd)
2023-04-21 15:52:37 +07:00
Phil Race
8e5bd2d995 8306372: Open source AWT CardLayout and Checkbox tests
Reviewed-by: serb, honkar
(cherry picked from commit 781d6d793a)
2023-04-21 15:52:36 +07:00
Alexander Zvegintsev
0db73d4b72 8306280: Open source several choice AWT tests
Reviewed-by: jdv, prr, serb
(cherry picked from commit d03128d0e5)
2023-04-21 15:52:34 +07:00
Aleksey Shipilev
7c25901a8f 8306452: Fix Amazon copyright in JDK-8305425 test
Reviewed-by: simonis
(cherry picked from commit e764e9b740)
2023-04-21 15:52:32 +07:00
William Kemper
4407bd050b 8306321: Add an accessor for the top of a PLAB
Reviewed-by: shade, ysr
(cherry picked from commit ed34e7f5ae)
2023-04-21 15:52:31 +07:00
Phil Race
e6b6795832 8306134: Open source some AWT tests relating to Button and a few other classes
Reviewed-by: azvegint
(cherry picked from commit fdb4bafa31)
2023-04-21 15:52:30 +07:00
Alexander Zuev
1537f60136 8306135: Clean up and open source some AWT tests
Reviewed-by: azvegint
(cherry picked from commit 4ad3ac6317)
2023-04-21 15:52:28 +07:00
Naoto Sato
db76ae6b4e 8306323: Update license files in CLDR v43
Reviewed-by: lancea, srl, iris
(cherry picked from commit 85de01e676)
2023-04-21 15:52:23 +07:00
Doug Simon
611e0d408a 8303431: [JVMCI] libgraal annotation API
Reviewed-by: kvn, never, darcy
(cherry picked from commit 48fd4f2bd3)
2023-04-21 15:52:20 +07:00
Oliver Kopp
d40a19c48a 8306038: SystemModulesPlugin generates code that doesn't pop when return value not used
Reviewed-by: alanb, mchung
(cherry picked from commit c57af319f6)
2023-04-21 15:52:18 +07:00
Fredrik Bredberg
ecfa9a1a31 8306006: strace001.java fails due to unknown methods on stack
Reviewed-by: rehn, alanb, dholmes
(cherry picked from commit a31a11f44a)
2023-04-21 15:52:17 +07:00
Coleen Phillimore
bb0cc82e04 8306123: Move InstanceKlass writeable flags
Reviewed-by: iklam, fparain
(cherry picked from commit ddb86469e0)
2023-04-21 15:52:14 +07:00
Coleen Phillimore
c3e23e65d5 8306310: Move is_shared Klass flag
Reviewed-by: iklam, fparain
(cherry picked from commit 1a41e12c22)
2023-04-21 15:52:12 +07:00
Markus Grönlund
2ce74d7866 8306278: jvmtiAgentList.cpp:253 assert(offset >= 0) failed: invariant occurs on AIX after JDK-8257967
Reviewed-by: sspitsyn, dholmes, mbaesken
(cherry picked from commit c738c8ea3e)
2023-04-21 15:52:10 +07:00
William Kemper
a97a73899d 8305716: Enhancements for printing age tables
Reviewed-by: kdnilsen, ysr, tschatzl
(cherry picked from commit 9fb53adfe0)
2023-04-21 15:52:09 +07:00
Matthias Baesken
b5878e02f8 8305993: Add handleSocketErrorWithMessage to extend nio Net.c exception message
Reviewed-by: alanb
(cherry picked from commit ebba42ac52)
2023-04-21 15:52:07 +07:00
Richard Reingruber
9cc5ecd88c 8306111: PPC64: RT call after thaw with exception requires larger ABI section
Reviewed-by: mdoerr
(cherry picked from commit 42b7260e8b)
2023-04-21 15:52:06 +07:00
Ioi Lam
5f0f0df184 8305757: Call Method::compute_has_loops_flag() when creating CDS archive
Reviewed-by: coleenp, ccheung
(cherry picked from commit c7faf60201)
2023-04-21 15:52:06 +07:00
Aleksei Efimov
ee0d9478d8 8299129: Enhance NameService lookups
Reviewed-by: ahgross, michaelm, rhalade, dfuchs
(cherry picked from commit eb8d8cdddd)
2023-04-21 15:52:04 +07:00
Kevin Walls
b4d202c16b 8296692: Improve String platform support
Reviewed-by: rhalade, amenkov, michaelm
(cherry picked from commit 77df3152c8)
2023-04-21 15:52:03 +07:00
Sean Mullan
2cff57af94 8298310: Enhance TLS session negotiation
Reviewed-by: rhalade, mschoene, weijun, ascarpino
(cherry picked from commit f098b490f1)
2023-04-21 15:52:03 +07:00
Prasanta Sadhukhan
bd652d4731 8296832: Improve Swing platform support
Reviewed-by: skoivu, kizune, rhalade, prr

(cherry picked from commit 9e56d100df)
2023-04-21 15:52:02 +07:00
Joe Wang
9e232ab1c9 8288436: Improve Xalan supports
Reviewed-by: smarks, ahgross, rhalade, lancea, naoto
(cherry picked from commit 2e5700a92c)
2023-04-21 15:51:15 +07:00
Kevin Walls
6fd980af6d 8296684: Improve String platform support
Reviewed-by: amenkov, michaelm, rhalade
(cherry picked from commit b1c34c03d7)
2023-04-21 15:51:12 +07:00
Jamil Nimeh
7fe114705b 8294474: Better AES support
Reviewed-by: ahgross, ascarpino
(cherry picked from commit 14aad787a8)
2023-04-21 15:51:11 +07:00
Brian Burkhalter
ab75b8ffba 8298667: Improved path handling
Reviewed-by: rhalade, alanb
(cherry picked from commit a0f7ae1a95)
2023-04-21 15:51:07 +07:00
Michael McMahon
e5769b7548 8296676: Improve String platform support
Reviewed-by: aefimov, dfuchs
(cherry picked from commit ec119716e5)
2023-04-21 15:51:06 +07:00
Naoto Sato
673d28bbbb 8297371: Improve UTF8 representation redux
Reviewed-by: rhalade, bchristi
(cherry picked from commit 5ec0120152)
2023-04-21 15:51:05 +07:00
Ian Graves
cb4ee7b55b 8295304: Runtime support improvements
Reviewed-by: rhalade, rriggs, bchristi
(cherry picked from commit 3656939a6a)
2023-04-21 15:51:04 +07:00
Daniel Jeliński
95037ac55d 8287404: Improve ping times
Reviewed-by: alanb, dfuchs, rhalade
(cherry picked from commit c06135b5a6)
2023-04-21 15:51:03 +07:00
Calvin Cheung
af01f7a440 8306059: improve the reliability of TestSerialGCWithCDS.java and ArchiveRelocationTest.java tests
Reviewed-by: iklam
(cherry picked from commit 1b5d35ad2c)
2023-04-21 15:51:03 +07:00
Markus Grönlund
f0152ba580 8306282: Build failure linux-arm32-open-cmp-baseline after JDK-8257967
Reviewed-by: egahlin, iklam
(cherry picked from commit 0f3828dddd)
2023-04-21 15:51:02 +07:00
Aleksey Shipilev
98162a00ca 8306289: 32-bit build failures after JDK-8303422
Reviewed-by: jiefu, zgu
(cherry picked from commit 803680f17a)
2023-04-21 15:51:01 +07:00
Daniel Jeliński
1931158d63 8306279: Build failure after JDK-8299592
Reviewed-by: thartmann
(cherry picked from commit e97fe081ad)
2023-04-21 15:51:01 +07:00
Matthias Baesken
e77e7203b5 8304054: Linux: NullPointerException from FontConfiguration.getVersion in case no fonts are installed
Reviewed-by: lucy, aivanov
(cherry picked from commit 3c7ab80501)
2023-04-21 15:51:00 +07:00
Daniel Jeliński
1c1d9cffea 8299592: Fix and reenable warnings in java.desktop native code compilation
Reviewed-by: ihse, aivanov
(cherry picked from commit 3bba899574)
2023-04-21 15:50:58 +07:00
Johan Sjölen
351f8ce855 8306077: Replace NEW_ARENA_ARRAY with NEW_RESOURCE_ARRAY when applicable in opto
Reviewed-by: thartmann
(cherry picked from commit 896207de14)
2023-04-21 15:50:57 +07:00
Johan Sjölen
f654af382d 8301497: Replace NULL with nullptr in cpu/s390
Reviewed-by: amitkumar, coleenp
(cherry picked from commit 54f7b6ca34)
2023-04-21 15:50:56 +07:00
Roland Westrelin
1f23b8b84a 8305781: compiler/c2/irTests/TestVectorizationMultiInvar.java failed with "IRViolationException: There were one or multiple IR rule failures."
Reviewed-by: thartmann, kvn
(cherry picked from commit 8ecb5dfa34)
2023-04-21 15:50:55 +07:00
Guoxiong Li
dd51b5f5b8 8305690: [X86] Do not emit two REX prefixes in Assembler::prefix
Reviewed-by: kvn, thartmann
(cherry picked from commit 49726ee3a9)
2023-04-21 15:50:53 +07:00
Richard Reingruber
a8858ccf5d 8305668: PPC: Non-Top Interpreted frames should be independent of ABI_ELFv2
Reviewed-by: mdoerr
(cherry picked from commit 445ebef437)
2023-04-21 15:50:52 +07:00
Matias Saavedra Silva
ace497ad53 8303422: Use common functions to exit the VM for -Xshare:dump and CDS errors
Reviewed-by: iklam, coleenp, fparain
(cherry picked from commit e3ece365ce)
2023-04-21 15:50:46 +07:00
Brent Christian
70696029f1 8305762: FileInputStream and FileOutputStream implSpec should be corrected or removed
Reviewed-by: kbarrett, alanb, bpb
(cherry picked from commit bb1a7bb3e1)
2023-04-21 15:50:45 +07:00
Brian Burkhalter
c4fc9325c1 8305811: (bf) Improve performance of CharBuffer::append(CharSequence[,int,int])
Reviewed-by: alanb
(cherry picked from commit 8858d54342)
2023-04-21 15:50:42 +07:00
Jonathan Gibbons
7b1174d082 8305673: Convert DocCommentParser to use enhanced switch
Reviewed-by: hannesw
(cherry picked from commit 525a91e3fa)
2023-04-21 15:50:41 +07:00
Phil Race
16f8d6ee00 8278583: Open source SwingMark - Swing performance benchmark
Reviewed-by: serb, aghaisas, avu
(cherry picked from commit 6831f9db8b)
2023-04-21 15:50:39 +07:00
Tom Rodriguez
cec2e055a7 8305755: [JVMCI] missing barriers in CompilerToVM.readFieldValue for Reference.referent
Reviewed-by: eosterlund, dnsimon
(cherry picked from commit 497f9e760d)
2023-04-21 15:50:37 +07:00
Naoto Sato
9ba715db97 8296248: Update CLDR to Version 43.0
Reviewed-by: joehw
(cherry picked from commit 4ed933cf77)
2023-04-21 15:50:34 +07:00
Patricio Chilano Mateo
b3bef0ce6e 8305625: Stress test crashes with SEGV in Deoptimization::deoptimize_frame_internal(JavaThread*, long*, Deoptimization::DeoptReason)
Reviewed-by: rrich, rehn
(cherry picked from commit 7360960454)
2023-04-21 15:50:32 +07:00
Albert Mingkun Yang
bd833fd288 8305060: G1: Refactor G1ScanHRForRegionClosure::scan_heap_roots
Reviewed-by: tschatzl, iwalulya
(cherry picked from commit cc60f2ff3f)
2023-04-21 15:50:31 +07:00
Albert Mingkun Yang
3f4727acd3 8305192: serial GC fails "assert(Universe::on_page_boundary(bottom) && Universe::on_page_boundary(end)) failed: invalid space boundaries"
Reviewed-by: iwalulya, tschatzl
(cherry picked from commit fb58d77e92)
2023-04-21 15:50:30 +07:00
Kirill A. Korinsky
a9c712a776 8305995: Footprint regression from JDK-8224957
Reviewed-by: kvn, thartmann
(cherry picked from commit 7551529854)
2023-04-21 15:50:30 +07:00
Erik Österlund
f3c3939d6d 8305351: C2 setScopedValueCache intrinsic doesn't use access API
Reviewed-by: kvn, rcastanedalo, aph, mdoerr
(cherry picked from commit 02347d0cec)
2023-04-21 15:50:29 +07:00
Erik Österlund
1c3bcb0f5b 8305543: Ensure GC barriers for arraycopy on AArch64 use caller saved neon temp registers
Reviewed-by: rcastanedalo, aph
(cherry picked from commit 2240c7ec2f)
2023-04-21 15:50:29 +07:00
Albert Mingkun Yang
32006580cb 8305233: G1: Refactor G1ClearCardTableTask
Reviewed-by: tschatzl, iwalulya
(cherry picked from commit 1958f0e8bd)
2023-04-21 15:50:28 +07:00
Albert Mingkun Yang
ba36732bc9 8305892: G1: Fix G1MMUTracker::when_sec documentation
Reviewed-by: iwalulya, tschatzl
(cherry picked from commit dbd2b5f89f)
2023-04-21 15:50:27 +07:00
Emanuel Peter
f3da8a95ed 8305740: C2: add print statements to assert: Can't determine return type.
Reviewed-by: kvn, thartmann
(cherry picked from commit c0b4957fcc)
2023-04-21 15:50:27 +07:00
Markus Grönlund
37abc47d7b 8257967: JFR: Events for loaded agents
Reviewed-by: dholmes, sspitsyn

(cherry picked from commit 5c95bb1c51)
2023-04-21 15:50:09 +07:00
Varada M
e59b78d73d 8305089: Implement missing socket options on AIX
Reviewed-by: erikj, jpai, vtewari, djelinski, dfuchs
(cherry picked from commit 2a062f1654)
2023-04-21 13:38:02 +07:00
Eirik Bjorsnos
72a23b05ca 8306036: Use @apiNote in String.toLowerCase, String.toUpperCase
Reviewed-by: alanb, jpai
(cherry picked from commit 7f56de8f78)
2023-04-21 13:38:02 +07:00
Valerie Peng
420b739ccb 8305336: java.security.debug=sunpkcs11 breaks PKCS#11 configuration with slotListIndex
Reviewed-by: mpowers, weijun
(cherry picked from commit e575924131)
2023-04-21 13:38:01 +07:00
Kim Barrett
216e83e455 8306029: ProblemList runtime/ErrorHandling/TestDwarf.java on linux
Reviewed-by: stuefe
(cherry picked from commit caa841d9a5)
2023-04-21 13:38:01 +07:00
Jiangli Zhou
da22aefbca 8305935: Resolve multiple definition of 'jmm_<interface|version>' when statically linking with JDK native libraries
Reviewed-by: dholmes
(cherry picked from commit 314bad3613)
2023-04-21 13:38:01 +07:00
William Kemper
1733e8a03b 8305403: Shenandoah evacuation workers may deadlock
Reviewed-by: rkennke, ysr
(cherry picked from commit 793da60ee8)
2023-04-21 13:38:01 +07:00
Afshin Zafari
7be54e286e 8305085: Suppress removal warning for finalize() from test/hotspot/jtreg/serviceability/jvmti/RedefineClasses/RedefineFinalizer.java
Reviewed-by: cjplummer, dholmes
(cherry picked from commit 2cc4bf1a9d)
2023-04-21 13:38:01 +07:00
Julian Waters
b4bd7dc71b 8304930: Enable Link Time Optimization as an option for Visual C++
Reviewed-by: erikj
(cherry picked from commit 5a7886575e)
2023-04-21 13:38:01 +07:00
Roger Riggs
7d960103af 8304912: Use OperatingSystem enum in java.desktop module
Reviewed-by: bpb, prr, aturbanov

(cherry picked from commit 30a140b5a2)
2023-04-21 13:38:00 +07:00
Coleen Phillimore
829a354e57 8305405: Compile_lock not needed in Universe::genesis()
Reviewed-by: dholmes, fparain
(cherry picked from commit 1fd400608e)
2023-04-21 13:38:00 +07:00
Coleen Phillimore
d5c8957b6a 8305404: Compile_lock not needed for InstanceKlass::implementor()
Reviewed-by: eosterlund, fparain
(cherry picked from commit ebeee6dce8)
2023-04-21 13:38:00 +07:00
Johan Sjölen
0258116b86 8301496: Replace NULL with nullptr in cpu/riscv
Reviewed-by: dholmes, fyang
(cherry picked from commit d2ce04bb10)
2023-04-21 13:38:00 +07:00
Viktor Klang
5d9a27d37d 8170945: Collectors$Partition should override more Map methods
Reviewed-by: smarks
(cherry picked from commit 54bf370079)
2023-04-21 13:38:00 +07:00
Johan Sjölen
c362744f90 8301495: Replace NULL with nullptr in cpu/ppc
Reviewed-by: rrich, mdoerr, tsteele
(cherry picked from commit 0826ceee65)
2023-04-21 13:38:00 +07:00
Leo Korinth
a3e83e4ff0 8305618: Move gcold out of tier1
Reviewed-by: lmesnik, shade
(cherry picked from commit c0c31224db)
2023-04-21 13:37:59 +07:00
sunguoyun
936e51a044 8305944: assert(is_aligned(ref, HeapWordSize)) failed: invariant
Reviewed-by: stefank, tschatzl
(cherry picked from commit 3651b92229)
2023-04-21 13:37:59 +07:00
Richard Reingruber
78eaa28982 8305934: PPC64: Disable VMContinuations on Big Endian
Reviewed-by: mdoerr, tsteele
(cherry picked from commit 12358e6c94)
2023-04-21 13:37:59 +07:00
Sergey Tsypanov
9f0410d62a 8305902: (cs) Resolve default Charset only once in StreamEncoder and StreamDecoder
Reviewed-by: alanb, bpb
(cherry picked from commit 287bb06def)
2023-04-21 13:37:59 +07:00
David Holmes
bed0893359 8305936: JavaThread::create_system_thread_object has unused is_visible argument
Reviewed-by: alanb, kbarrett
(cherry picked from commit 8a1639d49b)
2023-04-21 13:37:59 +07:00
Matthew Donovan
a00586c4a6 8255548: Missing coverage for javax.xml.crypto.dom.DOMCryptoContext
Reviewed-by: rhalade, mullan
(cherry picked from commit 76cda9f44a)
2023-04-21 13:37:58 +07:00
Kevin Driver
3522db32f2 8305794: Unused interface sun.security.util.PermissionFactory can be removed
Co-authored-by: Andrey Turbanov <aturbanov@openjdk.org>
Reviewed-by: mullan, aturbanov
(cherry picked from commit b60604e8eb)
2023-04-21 13:37:58 +07:00
Leonid Mesnik
1cc1e609bc 8305875: Test TraceVirtualThreadLocals should be run with continuations only
Reviewed-by: alanb
(cherry picked from commit 92521b100f)
2023-04-21 13:37:58 +07:00
Leonid Mesnik
5a03246d00 8305937: com/sun/jdi/SetLocalWhileThreadInNative.java fails with -XX:+TieredCompilation
Reviewed-by: dcubed
(cherry picked from commit 00eb348a52)
2023-04-21 13:37:58 +07:00
Daniel D. Daugherty
4f51d6df9f 8305966: ProblemList com/sun/jdi/JdbLastErrorTest.java on windows-x64
Reviewed-by: alanb
(cherry picked from commit 1385c3d2f1)
2023-04-21 13:37:57 +07:00
Daniel Fuchs
bfe5724d39 8305847: Improve diagnosability and resilience of HttpClient::close tests
Reviewed-by: jpai, djelinski
(cherry picked from commit 90b4006bce)
2023-04-21 13:37:57 +07:00
Harshitha Onkar
f4c9b7e3c1 8305712: [MacOS] Deprecated Cocoa-NSEvent names
Reviewed-by: dmarkov, prr

(cherry picked from commit d7dc474a5a)
2023-04-21 13:37:57 +07:00
Archie L. Cobbs
8429c79e46 8296420: javac has long lines in its command-line help
Reviewed-by: jjg
(cherry picked from commit e0620b8e05)
2023-04-21 13:37:57 +07:00
Jonathan Dowland
4a3334fc5c 8304350: Font.getStringBounds calculates wrong width for TextAttribute.TRACKING other than 0.0
Reviewed-by: stuefe

(cherry picked from commit 6b9b7d1d92)
2023-04-21 13:37:57 +07:00
Jim Laskey
016bd4a82b 8305688: jdk build --with-memory-size=1024 broken by JDK-8305100
Reviewed-by: martin
(cherry picked from commit 2060c8ea14)
2023-04-21 13:37:56 +07:00
Jaikiran Pai
8b35d1b299 8305900: Use loopback IP addresses in security policy files of httpclient tests
Reviewed-by: dfuchs
(cherry picked from commit 646b666a26)
2023-04-21 13:37:56 +07:00
Thomas Stuefe
135d612cfe 8305414: gtest/NMTGtests.java is failing various sub-tests
Reviewed-by: rkennke, adinn
(cherry picked from commit fb9a29d732)
2023-04-21 13:37:56 +07:00
Quan Anh Mai
74268ae241 8304450: [vectorapi] Refactor VectorShuffle implementation
Reviewed-by: psandoz, xgong, jbhateja, vlivanov
(cherry picked from commit e846a1d700)
2023-04-21 13:37:56 +07:00
Jaikiran Pai
80613aa68d 8305529: DefaultProxySelector.select(URI) in certain cases returns a List with null element
Reviewed-by: dfuchs, djelinski, michaelm
(cherry picked from commit 3f36dd811e)
2023-04-21 13:37:55 +07:00
Eirik Bjorsnos
fcb6b65f7b 8303923: ZipOutStream::putEntry should include an apiNote to indicate that the STORED compression method should be used when writing directory entries
Reviewed-by: lancea, alanb
(cherry picked from commit 425ef0685c)
2023-04-21 13:37:55 +07:00
Jiangli Zhou
e869c0babe 8305858: Resolve multiple definition of 'handleSocketError' when statically linking with JDK native libraries
Reviewed-by: alanb
(cherry picked from commit 2bbbff209d)
2023-04-21 13:37:55 +07:00
Leonid Mesnik
788b75c950 8304834: Fix wrapper insertion in TestScaffold.parseArgs(String args[])
Reviewed-by: cjplummer, dholmes
(cherry picked from commit bc15163386)
2023-04-21 13:37:55 +07:00
quadhier
1a2ec3f853 8305324: C2: Wrong execution of vectorizing Interger.reverseBytes
Reviewed-by: kvn, pli
(cherry picked from commit 19380d74e4)
2023-04-21 13:37:54 +07:00
Bill Huang
15bb85e97f 8295859: Update Manual Test Groups
Reviewed-by: msheppar
(cherry picked from commit 87017b5199)
2023-04-21 13:37:54 +07:00
Quan Anh Mai
9dd246e989 8305783: x86_64: Optimize AbsI and AbsL
Reviewed-by: jkarthikeyan, thartmann
(cherry picked from commit 99a9dbc8f1)
2023-04-21 13:37:54 +07:00
Johannes Bechberger
1b96ad7949 8304725: AsyncGetCallTrace can cause SIGBUS on M1
Reviewed-by: dholmes, stuefe, mbaesken
(cherry picked from commit d8af7a6014)
2023-04-21 13:37:54 +07:00
Pengfei Li
bc2c2465a8 8305524: AArch64: Fix arraycopy issue on SVE caused by matching rule vmask_gen_sub
Reviewed-by: aph, xgong
(cherry picked from commit b9bdbe9ab3)
2023-04-21 13:37:54 +07:00
Xin Liu
568b827b3a 8305203: Simplify trimming operation in Region::Ideal
Reviewed-by: thartmann, kvn
(cherry picked from commit 82e8b0332b)
2023-04-21 13:37:53 +07:00
Maxim Kartashev
893f7b5d46 Wayland: fix AWT initialization on macOS 2023-04-21 10:35:02 +04:00
Nikita Provotorov
0bc4cab153 JBR-5536: Crash on macOS bad JNI lookup in Java_sun_swing_AccessibleAnnouncer_nativeAnnounce
Stop using the JNIEnv instance bound to EDT in the AppKit thread.

(cherry picked from commit 0f49341f4d)
2023-04-20 21:55:54 +03:00
Maxim Kartashev
cf8cfad297 JBR-5480 Fixed Windows debug build 2023-04-19 08:28:56 +04:00
Maxim Kartashev
fe683e690c Wayland: fixed build errors on macOS 2023-04-18 23:39:18 +04:00
Maxim Kartashev
ea36848090 JBR-5480 Fixed build failue with LLVM compilers 2023-04-18 20:05:33 +04:00
Maxim Kartashev
ed9811850b JBR-5480 Include more information in OOME crash reports 2023-04-18 14:13:43 +04:00
Maxim Kartashev
b2e9bc1700 Wayland: fixed build errors with older versions of Wayland 2023-04-18 12:52:57 +04:00
Sergey Shelomentsev
6494427822 JBR-5313 fix broken custom decoration tests on Windows 2023-04-18 10:33:37 +03:00
6325 changed files with 518454 additions and 126425 deletions

View File

@@ -1,5 +1,5 @@
#
# Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@@ -57,7 +57,7 @@ runs:
- name: 'Build JTReg'
run: |
# Build JTReg and move files to the proper locations
bash make/build.sh --jdk "$JAVA_HOME_11_X64"
bash make/build.sh --jdk "$JAVA_HOME_17_X64"
mkdir ../installed
mv build/images/jtreg/* ../installed
working-directory: jtreg/src

View File

@@ -30,7 +30,8 @@ runs:
using: composite
steps:
- name: 'Install MSYS2'
uses: msys2/setup-msys2@v2
# use a specific release of msys2/setup-msys2 to prevent jtreg build failures on newer release
uses: msys2/setup-msys2@7efe20baefed56359985e327d329042cde2434ff
with:
install: 'autoconf tar unzip zip make'
path-type: minimal

View File

@@ -98,12 +98,26 @@ jobs:
id: gtest
uses: ./.github/actions/get-gtest
- name: 'Check toolchain installed'
id: toolchain-check
run: |
set +e
'/c/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/vc/auxiliary/build/vcvars64.bat' -vcvars_ver=${{ inputs.msvc-toolset-version }}
if [ $? -eq 0 ]; then
echo "Toolchain is already installed"
echo "toolchain-installed=true" >> $GITHUB_OUTPUT
else
echo "Toolchain is not yet installed"
echo "toolchain-installed=false" >> $GITHUB_OUTPUT
fi
- name: 'Install toolchain and dependencies'
run: |
# Run Visual Studio Installer
'/c/Program Files (x86)/Microsoft Visual Studio/Installer/vs_installer.exe' \
modify --quiet --installPath 'C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise' \
modify --quiet --installPath 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise' \
--add Microsoft.VisualStudio.Component.VC.${{ inputs.msvc-toolset-version }}.${{ inputs.msvc-toolset-architecture }}
if: steps.toolchain-check.outputs.toolchain-installed != 'true'
- name: 'Configure'
run: >

View File

@@ -145,7 +145,7 @@ jobs:
apt-architecture: 'i386'
# Some multilib libraries do not have proper inter-dependencies, so we have to
# install their dependencies manually.
apt-extra-packages: 'libfreetype6-dev:i386 libtiff-dev:i386 libcupsimage2-dev:i386 libc6-i386'
apt-extra-packages: 'libfreetype6-dev:i386 libtiff-dev:i386 libcupsimage2-dev:i386 libc6-i386 libgcc-s1:i386 libstdc++6:i386'
extra-conf-options: '--with-target-bits=32'
configure-arguments: ${{ github.event.inputs.configure-arguments }}
make-arguments: ${{ github.event.inputs.make-arguments }}

View File

@@ -80,6 +80,7 @@ id="toc-getting-jdk-binaries">Getting JDK binaries</a></li>
id="toc-external-library-requirements">External Library Requirements</a>
<ul>
<li><a href="#freetype" id="toc-freetype">FreeType</a></li>
<li><a href="#fontconfig" id="toc-fontconfig">Fontconfig</a></li>
<li><a href="#cups" id="toc-cups">CUPS</a></li>
<li><a href="#x11" id="toc-x11">X11</a></li>
<li><a href="#alsa" id="toc-alsa">ALSA</a></li>
@@ -323,6 +324,7 @@ GB of free disk space is required.</p>
<p>Even for 32-bit builds, it is recommended to use a 64-bit build
machine, and instead create a 32-bit target using
<code>--with-target-bits=32</code>.</p>
<p>Note: The Windows 32-bit x86 port is deprecated and may be removed in a future release.</p>
<h3 id="building-on-aarch64">Building on aarch64</h3>
<p>At a minimum, a machine with 8 cores is advisable, as well as 8 GB of
RAM. (The more cores to use, the more memory you need.) At least 6 GB of
@@ -353,22 +355,22 @@ to date at the time of writing.</p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Operating system</th>
<th style="text-align: left;">Vendor/version used</th>
<th>Operating system</th>
<th>Vendor/version used</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Linux</td>
<td style="text-align: left;">Oracle Enterprise Linux 6.4 / 7.6</td>
<td>Linux</td>
<td>Oracle Enterprise Linux 6.4 / 7.6</td>
</tr>
<tr class="even">
<td style="text-align: left;">macOS</td>
<td style="text-align: left;">Mac OS X 10.13 (High Sierra)</td>
<td>macOS</td>
<td>Mac OS X 10.13 (High Sierra)</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Windows</td>
<td style="text-align: left;">Windows Server 2012 R2</td>
<td>Windows</td>
<td>Windows Server 2012 R2</td>
</tr>
</tbody>
</table>
@@ -399,6 +401,7 @@ to the build system, e.g. in arguments to <code>configure</code>. So,
use <code>--with-msvcr-dll=/cygdrive/c/msvcr100.dll</code> rather than
<code>--with-msvcr-dll=c:\msvcr100.dll</code>. For details on this
conversion, see the section on <a href="#fixpath">Fixpath</a>.</p>
<p>Note: The Windows 32-bit x86 port is deprecated and may be removed in a future release.</p>
<h4 id="cygwin">Cygwin</h4>
<p>A functioning <a href="http://www.cygwin.com/">Cygwin</a> environment
is required for building the JDK on Windows. If you have a 64-bit OS, we
@@ -677,6 +680,19 @@ copy.</p>
<p>Use <code>--with-freetype-include=&lt;path&gt;</code> and
<code>--with-freetype-lib=&lt;path&gt;</code> if <code>configure</code>
does not automatically locate the platform FreeType files.</p>
<h3 id="fontconfig">Fontconfig</h3>
<p>Fontconfig from <a href="http://fontconfig.org">freedesktop.org
Fontconfig</a> is required on all platforms except Windows and
macOS.</p>
<ul>
<li>To install on an apt-based Linux, try running
<code>sudo apt-get install libfontconfig-dev</code>.</li>
<li>To install on an rpm-based Linux, try running
<code>sudo yum install fontconfig-devel</code>.</li>
</ul>
<p>Use <code>--with-fontconfig-include=&lt;path&gt;</code> and
<code>--with-fontconfig=&lt;path&gt;</code> if <code>configure</code>
does not automatically locate the platform Fontconfig files.</p>
<h3 id="cups">CUPS</h3>
<p>CUPS, <a href="http://www.cups.org">Common UNIX Printing System</a>
header files are required on all platforms, except Windows. Often these
@@ -1195,27 +1211,27 @@ following targets are known to work:</p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Supported devkit targets</th>
<th>Supported devkit targets</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">x86_64-linux-gnu</td>
<td>x86_64-linux-gnu</td>
</tr>
<tr class="even">
<td style="text-align: left;">aarch64-linux-gnu</td>
<td>aarch64-linux-gnu</td>
</tr>
<tr class="odd">
<td style="text-align: left;">arm-linux-gnueabihf</td>
<td>arm-linux-gnueabihf</td>
</tr>
<tr class="even">
<td style="text-align: left;">ppc64-linux-gnu</td>
<td>ppc64-linux-gnu</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ppc64le-linux-gnu</td>
<td>ppc64le-linux-gnu</td>
</tr>
<tr class="even">
<td style="text-align: left;">s390x-linux-gnu</td>
<td>s390x-linux-gnu</td>
</tr>
</tbody>
</table>
@@ -1417,112 +1433,119 @@ example <code>${sysroot}/usr/lib/${target}/</code></p></li>
<p>Architectures that are known to successfully cross-compile like this
are:</p>
<table>
<colgroup>
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 15%" />
<col style="width: 27%" />
<col style="width: 29%" />
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Target</th>
<th style="text-align: left;">Debian tree</th>
<th style="text-align: left;">Debian arch</th>
<th style="text-align: left;"><code>--openjdk-target=...</code></th>
<th>Target</th>
<th>Debian tree</th>
<th>Debian arch</th>
<th><code>--openjdk-target=...</code></th>
<th><code>--with-jvm-variants=...</code></th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">x86</td>
<td style="text-align: left;">buster</td>
<td style="text-align: left;">i386</td>
<td style="text-align: left;">i386-linux-gnu</td>
<td>x86</td>
<td>buster</td>
<td>i386</td>
<td>i386-linux-gnu</td>
<td>(all)</td>
</tr>
<tr class="even">
<td style="text-align: left;">arm</td>
<td style="text-align: left;">buster</td>
<td style="text-align: left;">armhf</td>
<td style="text-align: left;">arm-linux-gnueabihf</td>
<td>arm</td>
<td>buster</td>
<td>armhf</td>
<td>arm-linux-gnueabihf</td>
<td>(all)</td>
</tr>
<tr class="odd">
<td style="text-align: left;">aarch64</td>
<td style="text-align: left;">buster</td>
<td style="text-align: left;">arm64</td>
<td style="text-align: left;">aarch64-linux-gnu</td>
<td>aarch64</td>
<td>buster</td>
<td>arm64</td>
<td>aarch64-linux-gnu</td>
<td>(all)</td>
</tr>
<tr class="even">
<td style="text-align: left;">ppc64le</td>
<td style="text-align: left;">buster</td>
<td style="text-align: left;">ppc64el</td>
<td style="text-align: left;">powerpc64le-linux-gnu</td>
<td>ppc64le</td>
<td>buster</td>
<td>ppc64el</td>
<td>powerpc64le-linux-gnu</td>
<td>(all)</td>
</tr>
<tr class="odd">
<td style="text-align: left;">s390x</td>
<td style="text-align: left;">buster</td>
<td style="text-align: left;">s390x</td>
<td style="text-align: left;">s390x-linux-gnu</td>
<td>s390x</td>
<td>buster</td>
<td>s390x</td>
<td>s390x-linux-gnu</td>
<td>(all)</td>
</tr>
<tr class="even">
<td style="text-align: left;">mipsle</td>
<td style="text-align: left;">buster</td>
<td style="text-align: left;">mipsel</td>
<td style="text-align: left;">mipsel-linux-gnu</td>
<td>mipsle</td>
<td>buster</td>
<td>mipsel</td>
<td>mipsel-linux-gnu</td>
<td>zero</td>
</tr>
<tr class="odd">
<td style="text-align: left;">mips64le</td>
<td style="text-align: left;">buster</td>
<td style="text-align: left;">mips64el</td>
<td style="text-align: left;">mips64el-linux-gnueabi64</td>
<td>mips64le</td>
<td>buster</td>
<td>mips64el</td>
<td>mips64el-linux-gnueabi64</td>
<td>zero</td>
</tr>
<tr class="even">
<td style="text-align: left;">armel</td>
<td style="text-align: left;">buster</td>
<td style="text-align: left;">arm</td>
<td style="text-align: left;">arm-linux-gnueabi</td>
<td>armel</td>
<td>buster</td>
<td>arm</td>
<td>arm-linux-gnueabi</td>
<td>zero</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ppc</td>
<td style="text-align: left;">sid</td>
<td style="text-align: left;">powerpc</td>
<td style="text-align: left;">powerpc-linux-gnu</td>
<td>ppc</td>
<td>sid</td>
<td>powerpc</td>
<td>powerpc-linux-gnu</td>
<td>zero</td>
</tr>
<tr class="even">
<td style="text-align: left;">ppc64be</td>
<td style="text-align: left;">sid</td>
<td style="text-align: left;">ppc64</td>
<td style="text-align: left;">powerpc64-linux-gnu</td>
<td>ppc64be</td>
<td>sid</td>
<td>ppc64</td>
<td>powerpc64-linux-gnu</td>
<td>(all)</td>
</tr>
<tr class="odd">
<td style="text-align: left;">m68k</td>
<td style="text-align: left;">sid</td>
<td style="text-align: left;">m68k</td>
<td style="text-align: left;">m68k-linux-gnu</td>
<td>m68k</td>
<td>sid</td>
<td>m68k</td>
<td>m68k-linux-gnu</td>
<td>zero</td>
</tr>
<tr class="even">
<td style="text-align: left;">alpha</td>
<td style="text-align: left;">sid</td>
<td style="text-align: left;">alpha</td>
<td style="text-align: left;">alpha-linux-gnu</td>
<td>alpha</td>
<td>sid</td>
<td>alpha</td>
<td>alpha-linux-gnu</td>
<td>zero</td>
</tr>
<tr class="odd">
<td style="text-align: left;">sh4</td>
<td style="text-align: left;">sid</td>
<td style="text-align: left;">sh4</td>
<td style="text-align: left;">sh4-linux-gnu</td>
<td>sh4</td>
<td>sid</td>
<td>sh4</td>
<td>sh4-linux-gnu</td>
<td>zero</td>
</tr>
<tr class="even">
<td style="text-align: left;">riscv64</td>
<td style="text-align: left;">sid</td>
<td style="text-align: left;">riscv64</td>
<td style="text-align: left;">riscv64-linux-gnu</td>
<td>riscv64</td>
<td>sid</td>
<td>riscv64</td>
<td>riscv64-linux-gnu</td>
<td>(all)</td>
</tr>
</tbody>

View File

@@ -126,6 +126,8 @@ space is required.
Even for 32-bit builds, it is recommended to use a 64-bit build machine, and
instead create a 32-bit target using `--with-target-bits=32`.
Note: The Windows 32-bit x86 port is deprecated and may be removed in a future release.
### Building on aarch64
At a minimum, a machine with 8 cores is advisable, as well as 8 GB of RAM.
@@ -162,11 +164,11 @@ This table lists the OS versions used by Oracle when building the JDK. Such
information is always subject to change, but this table is up to date at the
time of writing.
Operating system Vendor/version used
----------------- -------------------------------------------------------
Linux Oracle Enterprise Linux 6.4 / 7.6
macOS Mac OS X 10.13 (High Sierra)
Windows Windows Server 2012 R2
| Operating system | Vendor/version used |
| ----------------- | ---------------------------------- |
| Linux | Oracle Enterprise Linux 6.4 / 7.6 |
| macOS | Mac OS X 10.13 (High Sierra) |
| Windows | Windows Server 2012 R2 |
The double version numbers for Linux are due to the hybrid model
used at Oracle, where header files and external libraries from an older version
@@ -199,6 +201,8 @@ rule also applies to input to the build system, e.g. in arguments to
`--with-msvcr-dll=c:\msvcr100.dll`. For details on this conversion, see the section
on [Fixpath](#fixpath).
Note: The Windows 32-bit x86 port is deprecated and may be removed in a future release.
#### Cygwin
A functioning [Cygwin](http://www.cygwin.com/) environment is required for
@@ -471,6 +475,19 @@ rather than bundling the JDK's own copy.
Use `--with-freetype-include=<path>` and `--with-freetype-lib=<path>`
if `configure` does not automatically locate the platform FreeType files.
### Fontconfig
Fontconfig from [freedesktop.org Fontconfig](http://fontconfig.org) is required
on all platforms except Windows and macOS.
* To install on an apt-based Linux, try running `sudo apt-get install
libfontconfig-dev`.
* To install on an rpm-based Linux, try running `sudo yum install
fontconfig-devel`.
Use `--with-fontconfig-include=<path>` and `--with-fontconfig=<path>`
if `configure` does not automatically locate the platform Fontconfig files.
### CUPS
CUPS, [Common UNIX Printing System](http://www.cups.org) header files are
@@ -970,14 +987,14 @@ https://sourceware.org/autobook/autobook/autobook_17.html). If no
targets are given, a native toolchain for the current platform will be
created. Currently, at least the following targets are known to work:
Supported devkit targets
-------------------------
x86_64-linux-gnu
aarch64-linux-gnu
arm-linux-gnueabihf
ppc64-linux-gnu
ppc64le-linux-gnu
s390x-linux-gnu
| Supported devkit targets |
| ------------------------ |
| x86_64-linux-gnu |
| aarch64-linux-gnu |
| arm-linux-gnueabihf |
| ppc64-linux-gnu |
| ppc64le-linux-gnu |
| s390x-linux-gnu |
`BASE_OS` must be one of "OEL6" for Oracle Enterprise Linux 6 or
"Fedora" (if not specified "OEL6" will be the default). If the base OS
@@ -1204,22 +1221,22 @@ it might require a little nudge with:
Architectures that are known to successfully cross-compile like this are:
Target Debian tree Debian arch `--openjdk-target=...` `--with-jvm-variants=...`
------------ ------------ ------------- ------------------------ --------------
x86 buster i386 i386-linux-gnu (all)
arm buster armhf arm-linux-gnueabihf (all)
aarch64 buster arm64 aarch64-linux-gnu (all)
ppc64le buster ppc64el powerpc64le-linux-gnu (all)
s390x buster s390x s390x-linux-gnu (all)
mipsle buster mipsel mipsel-linux-gnu zero
mips64le buster mips64el mips64el-linux-gnueabi64 zero
armel buster arm arm-linux-gnueabi zero
ppc sid powerpc powerpc-linux-gnu zero
ppc64be sid ppc64 powerpc64-linux-gnu (all)
m68k sid m68k m68k-linux-gnu zero
alpha sid alpha alpha-linux-gnu zero
sh4 sid sh4 sh4-linux-gnu zero
riscv64 sid riscv64 riscv64-linux-gnu (all)
| Target | Debian tree | Debian arch | `--openjdk-target=...` | `--with-jvm-variants=...` |
| ------------ | ------------ | ------------- | ------------------------ | ------------------------- |
| x86 | buster | i386 | i386-linux-gnu | (all) |
| arm | buster | armhf | arm-linux-gnueabihf | (all) |
| aarch64 | buster | arm64 | aarch64-linux-gnu | (all) |
| ppc64le | buster | ppc64el | powerpc64le-linux-gnu | (all) |
| s390x | buster | s390x | s390x-linux-gnu | (all) |
| mipsle | buster | mipsel | mipsel-linux-gnu | zero |
| mips64le | buster | mips64el | mips64el-linux-gnueabi64 | zero |
| armel | buster | arm | arm-linux-gnueabi | zero |
| ppc | sid | powerpc | powerpc-linux-gnu | zero |
| ppc64be | sid | ppc64 | powerpc64-linux-gnu | (all) |
| m68k | sid | m68k | m68k-linux-gnu | zero |
| alpha | sid | alpha | alpha-linux-gnu | zero |
| sh4 | sid | sh4 | sh4-linux-gnu | zero |
| riscv64 | sid | riscv64 | riscv64-linux-gnu | (all) |
### Building for ARM/aarch64

View File

@@ -426,6 +426,14 @@ GB/2</em>.</p>
<p>Sets the argument <code>-timeoutHandlerTimeout</code> for JTReg. The
default value is 0. This is only valid if the failure handler is
built.</p>
<h4 id="jtreg_test_thread_factory">JTREG_TEST_THREAD_FACTORY</h4>
<p>Sets the <code>-testThreadFactory</code> for JTReg. It should be the
fully qualified classname of a class which implements
<code>java.util.concurrent.ThreadFactory</code>. One such implementation
class, named Virtual, is currently part of the JDK build in the
<code>test/jtreg_test_thread_factory/</code> directory. This class gets
compiled during the test image build. The implementation of the Virtual
class creates a new virtual thread for executing each test class.</p>
<h4 id="test_mode">TEST_MODE</h4>
<p>The test mode (<code>agentvm</code> or <code>othervm</code>).</p>
<p>Defaults to <code>agentvm</code>.</p>

View File

@@ -378,6 +378,15 @@ Defaults to 4.
Sets the argument `-timeoutHandlerTimeout` for JTReg. The default value is 0.
This is only valid if the failure handler is built.
#### JTREG_TEST_THREAD_FACTORY
Sets the `-testThreadFactory` for JTReg. It should be the fully qualified classname
of a class which implements `java.util.concurrent.ThreadFactory`.
One such implementation class, named Virtual, is currently part of the JDK build
in the `test/jtreg_test_thread_factory/` directory. This class gets compiled during
the test image build. The implementation of the Virtual class creates a new virtual
thread for executing each test class.
#### TEST_MODE
The test mode (`agentvm` or `othervm`).

12
jb/generate-wakefield.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
if [[ -z "$1" ]]; then
SCANNER=wayland-scanner
else
SCANNER="$1"
fi
set -ex
"$SCANNER" client-header src/java.desktop/share/native/libwakefield/protocol/wakefield.xml src/java.desktop/unix/native/libawt_wlawt/wakefield-client-protocol.h
"$SCANNER" private-code src/java.desktop/share/native/libwakefield/protocol/wakefield.xml src/java.desktop/unix/native/libawt_wlawt/wakefield-client-protocol.c

View File

@@ -1,13 +0,0 @@
# jetbrains/runtime:jbr15env
FROM centos:7
RUN yum -y install centos-release-scl
RUN yum -y install devtoolset-8
RUN yum -y install zip bzip2 unzip tar wget make autoconf automake libtool gcc gcc-c++ libstdc++-devel alsa-devel cups-devel xorg-x11-devel libjpeg62-devel giflib-devel freetype-devel file which libXtst-devel libXt-devel libXrender-devel alsa-lib-devel fontconfig-devel libXrandr-devel libXi-devel git
# Install Java 16
RUN wget https://cdn.azul.com/zulu/bin/zulu17.28.13-ca-jdk17.0.0-linux_x64.tar.gz \
-O - | tar xz -C /
RUN mv /zulu17.28.13-ca-jdk17.0.0-linux_x64 /jdk17.0.0
ENV PATH /opt/rh/devtoolset-8/root/usr/bin:$PATH
RUN mkdir .git
RUN git config user.email "teamcity@jetbrains.com"
RUN git config user.name "builduser"

View File

@@ -5,44 +5,42 @@
# image creation reproducible.
# NB: this also means there may be no security-related fixes there, need to
# move the version to the next manually.
FROM arm64v8/ubuntu:focal-20211006
# jetbrains/runtime:jbr17env_aarch64
FROM arm64v8/centos:7
# Install the necessary build tools
RUN export DEBIAN_FRONTEND=noninteractive \
export DEBCONF_NONINTERACTIVE_SEEN=true && \
echo 'tzdata tzdata/Areas select Etc' | debconf-set-selections; \
echo 'tzdata tzdata/Zones/Etc select UTC' | debconf-set-selections; \
apt-get update -qy && \
apt-get install -qy \
autoconf \
build-essential \
bzip2 \
file \
g++-10=10.3.0-1ubuntu1~20.04 \
gcc-10=10.3.0-1ubuntu1~20.04 \
git \
libasound2-dev \
libcups2-dev \
libfontconfig1-dev \
libx11-dev \
libxext-dev \
libxrandr-dev \
libxrender-dev \
libxt-dev \
libxtst-dev \
make \
rsync \
tar \
unzip \
zip && \
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave /usr/bin/g++ g++ /usr/bin/g++-10 && \
apt-get clean -qy && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN yum -y update; \
yum -y install centos-release-scl; \
yum -y install devtoolset-10-10.1-0.el7; \
yum -y install \
alsa-lib-devel-1.1.8-1.el7.aarch64 \
autoconf-2.69-11.el7.noarch \
automake-1.13.4-3.el7.noarch \
bzip2-1.0.6-13.el7.aarch64 \
cups-devel-1.6.3-51.el7.aarch64 \
file-5.11-37.el7.aarch64 \
fontconfig-devel-2.13.0-4.3.el7.aarch64 \
freetype-devel-2.8-14.el7_9.1.aarch64 \
giflib-devel-4.1.6-9.el7.aarch64 \
git-1.8.3.1-24.el7_9.aarch64 \
libtool-2.4.2-22.el7_3.aarch64 \
libXi-devel-1.7.9-1.el7.aarch64 \
libXrandr-devel-1.5.1-2.el7.aarch64 \
libXrender-devel-0.9.10-1.el7.aarch64 \
libXt-devel-1.1.5-3.el7.aarch64 \
libXtst-devel-1.2.3-1.el7.aarch64 \
make-3.82-24.el7.aarch64 \
rsync-3.1.2-12.el7_9.aarch64 \
tar-1.26-35.el7.aarch64 \
unzip-6.0-24.el7_9.aarch64 \
wayland-devel-1.15.0-1.el7 \
zip-3.0-11.el7.aarch64; \
yum -y clean all
# Set up boot JDK for building
COPY boot_jdk.tar.gz /jdk17/
RUN cd /jdk17 && tar --strip-components=1 -xzf boot_jdk.tar.gz && rm /jdk17/boot_jdk.tar.gz
ENV BOOT_JDK=/jdk17
ENV PATH="/opt/rh/devtoolset-10/root/usr/bin:${PATH}"
ENV LD_LIBRARY_PATH="/opt/rh/devtoolset-10/root/usr/lib64:/opt/rh/devtoolset-10/root/usr/lib:/opt/rh/devtoolset-10/root/usr/lib64/dyninst:/opt/rh/devtoolset-10/root/usr/lib/dyninst:/opt/rh/devtoolset-10/root/usr/lib64:/opt/rh/devtoolset-10/root/usr/lib"
ENV PKG_CONFIG_PATH="/opt/rh/devtoolset-10/root/usr/lib64/pkgconfig"
RUN git config --global user.email "teamcity@jetbrains.com" && \
git config --global user.name "builduser"

View File

@@ -0,0 +1,36 @@
# jetbrains/runtime:jbr17env_x86_64
FROM centos:7
RUN yum -y install centos-release-scl; \
yum -y install devtoolset-10-10.1-0.el7; \
yum -y install \
alsa-lib-devel-1.1.8-1.el7 \
autoconf-2.69-11.el7 \
automake-1.13.4-3.el7 \
bzip2-1.0.6-13.el7 \
cups-devel-1.6.3-51.el7 \
file-5.11-37.el7 \
fontconfig-devel-2.13.0-4.3.el7 \
freetype-devel-2.8-14.el7_9.1 \
giflib-devel-4.1.6-9.el7 \
git-1.8.3.1-24.el7_9 \
libtool-2.4.2-22.el7_3 \
libXi-devel-1.7.9-1.el7 \
libXrandr-devel-1.5.1-2.el7 \
libXrender-devel-0.9.10-1.el7 \
libXt-devel-1.1.5-3.el7 \
libXtst-devel-1.2.3-1.el7 \
make-3.82-24.el7 \
tar-1.26-35.el7 \
unzip-6.0-24.el7_9 \
wayland-devel-1.15.0-1.el7 \
wget-1.14-18.el7_6.1 \
which-2.20-7.el7 \
zip-3.0-11.el7
RUN mkdir .git && \
git config user.email "teamcity@jetbrains.com" && \
git config user.name "builduser"
ENV LD_LIBRARY_PATH="/opt/rh/devtoolset-10/root/usr/lib64:/opt/rh/devtoolset-10/root/usr/lib:/opt/rh/devtoolset-10/root/usr/lib64/dyninst:/opt/rh/devtoolset-10/root/usr/lib/dyninst:/opt/rh/devtoolset-10/root/usr/lib64:/opt/rh/devtoolset-10/root/usr/lib"
ENV PATH="/opt/rh/devtoolset-10/root/usr/bin::${PATH}"
ENV PKG_CONFIG_PATH="/opt/rh/devtoolset-10/root/usr/lib64/pkgconfig"

View File

@@ -94,8 +94,7 @@ esac
WITH_ZIPPED_NATIVE_DEBUG_SYMBOLS="--with-native-debug-symbols=zipped"
REPRODUCIBLE_BUILD_OPTS="--enable-reproducible-build
--with-source-date=$SOURCE_DATE_EPOCH
REPRODUCIBLE_BUILD_OPTS="--with-source-date=$SOURCE_DATE_EPOCH
--with-hotspot-build-time=$BUILD_TIME
--with-copyright-year=$COPYRIGHT_YEAR
--disable-absolute-paths-in-output

View File

@@ -135,6 +135,7 @@ if [ "$bundle_type" == "jcef" ] || [ "$bundle_type" == "fd" ]; then
cp $JCEF_PATH/jmods/* $JSDK_MODS_DIR # $JSDK/jmods is not changed
jbr_name_postfix="_${bundle_type}"
cat $JCEF_PATH/jcef.version >> $JSDK/release
else
jbr_name_postfix=""
fi

View File

@@ -93,7 +93,7 @@ function create_image_bundle {
[ -f "$JBR".tar.gz ] && rm "$JBR.tar.gz"
touch -c -d "@$SOURCE_DATE_EPOCH" "$JBR".tar
gzip "$JBR".tar || do_exit $?
rm -rf "${IMAGES_DIR:?}"/"$__root_dir"
#rm -rf "${IMAGES_DIR:?}"/"$__root_dir"
}
WITH_DEBUG_LEVEL="--with-debug-level=release"
@@ -134,7 +134,7 @@ if [ "$bundle_type" == "jcef" ] || [ "$bundle_type" == "fd" ]; then
cp $JCEF_PATH/jmods/* $JSDK_MODS_DIR # $JSDK/jmods is not changed
jbr_name_postfix="_${bundle_type}"
[ "$bundle_type" != "fd" ] && jbrsdk_name_postfix="_${bundle_type}"
cat $JCEF_PATH/jcef.version >> $JSDK/release
else
jbr_name_postfix=""
fi

View File

@@ -0,0 +1,47 @@
#!/bin/bash
SCRIPT_DIR="$(cd "$(dirname "$0")" >/dev/null && pwd)"
source "$SCRIPT_DIR/jetsign-common.sh" || exit 1
function isMacOsBinary() {
file "$1" | grep -q 'Mach-O'
}
function isSigned() {
codesign --verify "$1" >/dev/null 2>&1 && ! grep -q Signature=adhoc < <(codesign --display --verbose "$1" 2>&1)
}
# last argument is a path to be signed
pathToBeSigned="$(pwd)/${*: -1}"
jetSignArgs=("${@:1:$#-1}")
if [[ ! -f "$pathToBeSigned" ]]; then
echo "$pathToBeSigned is missing or not a file"
exit 1
elif isSigned "$pathToBeSigned" && ! isForced "${jetSignArgs[@]}" ; then
echo "Already signed: $pathToBeSigned"
elif [[ "$JETSIGN_CLIENT" == "null" ]]; then
echo "JetSign client is missing, cannot proceed with signing"
exit 1
elif ! isMacOsBinary "$pathToBeSigned" && [[ "$pathToBeSigned" != *.sit ]] && [[ "$pathToBeSigned" != *.tar.gz ]]; then
echo "$pathToBeSigned won't be signed, assumed not to be a macOS executable"
else
if isMacOsBinary "$pathToBeSigned" && ! isSigned "$pathToBeSigned" ; then
echo "Unsigned macOS binary: $pathToBeSigned"
fi
workDir=$(dirname "$pathToBeSigned")
pathSigned="$workDir/signed/${pathToBeSigned##*/}"
jetSignExtensions=$(jetSignExtensions "${jetSignArgs[@]}")
contentType=$(jetSignContentType "$pathToBeSigned")
(
cd "$workDir" || exit 1
"$JETSIGN_CLIENT" -log-format text -denoted-content-type "$contentType" -extensions "$jetSignExtensions" "$pathToBeSigned"
# SRE-1223 (Codesign removes execute bits in executable files) workaround
chmod "$(stat -f %A "$pathToBeSigned")" "$pathSigned"
if isMacOsBinary "$pathSigned"; then
isSigned "$pathSigned"
fi
rm "$pathToBeSigned"
mv "$pathSigned" "$pathToBeSigned"
rm -rf "$workDir/signed"
)
fi

View File

@@ -0,0 +1,63 @@
#!/bin/bash
set -euo pipefail
function isForced() {
for arg in "$@"; do
if [[ "$arg" == --force ]]; then
return 0
fi
done
return 1
}
function jetSignExtensions() {
args=("$@")
((lastElementIndex=${#args[@]}-1))
for index in "${!args[@]}"; do
arg=${args[$index]}
case "$arg" in
--sign | -s)
echo -n 'mac_codesign_identity='
continue
;;
--entitlements)
echo -n 'mac_codesign_entitlements='
continue
;;
--options=runtime)
echo -n 'mac_codesign_options=runtime'
;;
--force)
echo -n 'mac_codesign_force=true'
;;
--timestamp | --verbose | -v)
continue
;;
*)
echo -n "$arg"
;;
esac
if [[ $index != "$lastElementIndex" ]]; then
echo -n ","
fi
done
}
# See jetbrains.sign.util.FileUtil.contentType
function jetSignContentType() {
case "${1##*/}" in
*.sit)
echo -n 'application/x-mac-app-zip'
;;
*.tar.gz)
echo -n 'application/x-mac-app-targz'
;;
*.pkg)
echo -n 'application/x-mac-pkg'
;;
*)
echo -n 'application/x-mac-app-bin'
;;
esac
}

View File

@@ -81,6 +81,10 @@ function create_image_bundle {
zip_native_debug_symbols $IMAGES_DIR/jdk-bundle/jdk-$JBSDK_VERSION.jdk "${JBR}_diz"
fi
if [ "$bundle_type" == "jcef" ]; then
cat $JCEF_PATH/jcef.version >> "$JRE_CONTENTS/Home/release"
fi
cp -R "$JSDK"/../MacOS "$JRE_CONTENTS"
cp "$JSDK"/../Info.plist "$JRE_CONTENTS"

View File

@@ -1,21 +1,17 @@
#!/bin/bash
#immediately exit script with an error if a command fails
set -euo pipefail
set -x
[[ "${SCRIPT_VERBOSE:-}" == "1" ]] && set -x
APP_DIRECTORY=$1
APPL_USER=$2
APPL_PASSWORD=$3
APP_NAME=$4
BUNDLE_ID=$5
FAKE_ROOT="${6:-fake-root}"
APP_PATH=$1
if [[ -z "$APP_DIRECTORY" ]] || [[ -z "$APPL_USER" ]] || [[ -z "$APPL_PASSWORD" ]]; then
echo "Usage: $0 AppDirectory Username Password"
if [[ -z "$APP_PATH" ]]; then
echo "Usage: $0 AppPath"
exit 1
fi
if [[ ! -d "$APP_DIRECTORY" ]]; then
echo "AppDirectory '$APP_DIRECTORY' does not exist or not a directory"
if [[ ! -f "$APP_PATH" ]]; then
echo "AppName '$APP_PATH' does not exist or not a file"
exit 1
fi
@@ -23,99 +19,22 @@ function log() {
echo "$(date '+[%H:%M:%S]') $*"
}
function publish-log() {
id=$1
file=$2
curl -T "$file" "$ARTIFACTORY_URL/$id" || true
}
function altool-upload() {
# Since altool uses same file for upload token we have to trick it into using different folders for token file location
# Also it copies zip into TMPDIR so we override it too, to simplify cleanup
OLD_HOME="$HOME"
export HOME="$FAKE_ROOT/home"
export TMPDIR="$FAKE_ROOT/tmp"
mkdir -p "$HOME"
mkdir -p "$TMPDIR"
export _JAVA_OPTIONS="-Duser.home=$HOME -Djava.io.tmpdir=$TMPDIR"
# Reduce amount of downloads, cache transporter libraries
shared_itmstransporter="$OLD_HOME/shared-itmstransporter"
if [[ -f "$shared_itmstransporter" ]]; then
cp -r "$shared_itmstransporter" "$HOME/.itmstransporter"
fi
# For some reason altool prints everything to stderr, not stdout
set +e
xcrun altool --notarize-app \
--username "$APPL_USER" --password "$APPL_PASSWORD" \
--primary-bundle-id "$BUNDLE_ID" \
--asc-provider JetBrainssro --file "$1" 2>&1 | tee "altool.init.out"
unset TMPDIR
export HOME="$OLD_HOME"
set -e
}
# check required parameters
: "${APPLE_ISSUER_ID}"
: "${APPLE_KEY_ID}"
: "${APPLE_PRIVATE_KEY}"
#immediately exit script with an error if a command fails
set -euo pipefail
# shellcheck disable=SC2064
trap "rm -f \"$PWD/tmp_key\"" INT EXIT RETURN
echo -n "${APPLE_PRIVATE_KEY}" > tmp_key
#file="$APP_NAME.zip"
log "Notarizing $APP_PATH..."
xcrun notarytool submit --key tmp_key --key-id "${APPLE_KEY_ID}" --issuer "${APPLE_ISSUER_ID}" "$APP_PATH" 2>&1 | tee "notarytool.submit.out"
REQUEST_ID="$(grep -e " id: " "notarytool.submit.out" | grep -oE '([0-9a-f-]{36})'| head -n1)"
#log "Zipping $file..."
#rm -rf "$file"
#ditto -c -k --sequesterRsrc --keepParent "$APP_DIRECTORY" "$file"
xcrun notarytool wait "$REQUEST_ID" --key tmp_key --key-id "${APPLE_KEY_ID}" --issuer "${APPLE_ISSUER_ID}" --timeout 6h ||:
xcrun notarytool log "$REQUEST_ID" --key tmp_key --key-id "${APPLE_KEY_ID}" --issuer "${APPLE_ISSUER_ID}" developer_log.json ||:
xcrun notarytool info "$REQUEST_ID" --key tmp_key --key-id "${APPLE_KEY_ID}" --issuer "${APPLE_ISSUER_ID}"
log "Notarizing $APP_NAME..."
rm -rf "altool.init.out" "altool.check.out"
altool-upload "$APP_NAME"
notarization_info="$(grep -e "RequestUUID" "altool.init.out" | grep -oE '([0-9a-f-]{36})')"
if [ -z "$notarization_info" ]; then
log "Faile to read RequestUUID from altool.init.out"
exit 10
fi
PATH="$PATH:/usr/local/bin/"
log "Notarization request sent, awaiting response"
spent=0
while true; do
# For some reason altool prints everything to stderr, not stdout
xcrun altool --username "$APPL_USER" --notarization-info "$notarization_info" --password "$APPL_PASSWORD" >"altool.check.out" 2>&1 || true
status="$(grep -oe 'Status: .*' "altool.check.out" | cut -c 9- || true)"
log "Current status: $status"
if [ "$status" = "invalid" ]; then
log "Notarization failed"
ec=1
elif [ "$status" = "success" ]; then
log "Notarization succeeded"
ec=0
else
if [ "$status" != "in progress" ]; then
log "Unknown notarization status, waiting more, altool output:"
cat "altool.check.out"
fi
if [[ $spent -gt 60 ]]; then
log "Waiting time out (apx 60 minutes)"
ec=2
break
fi
sleep 60
((spent += 1))
continue
fi
developer_log="developer_log.json"
log "Fetching $developer_log"
# TODO: Replace cut with trim or something better
url="$(grep -oe 'LogFileURL: .*' "altool.check.out" | cut -c 13-)"
wget "$url" -O "$developer_log" && cat "$developer_log" || true
if [ $ec != 0 ]; then
log "Publishing $developer_log"
publish-log "$notarization_info" "$developer_log"
fi
break
done
cat "altool.check.out"
rm -rf "altool.init.out" "altool.check.out"
exit $ec
log "Notarizing finished"

View File

@@ -0,0 +1,41 @@
#!/bin/bash
SCRIPT_DIR="$(cd "$(dirname "$0")" >/dev/null && pwd)"
source "$SCRIPT_DIR/jetsign-common.sh" || exit 1
function isSigned() {
pkgutil --check-signature "$1" >/dev/null 2>&1 && grep -q "signed by a developer certificate" < <(pkgutil --check-signature "$1" 2>&1)
}
# second last argument is a path to be signed
pathToBeSigned="$(pwd)/${*:(-2):1}"
# last argument is a path to signed file
pathOut="$(pwd)/${*:(-1)}"
jetSignArgs=("${@:1:$#-2}")
if [[ ! -f "$pathToBeSigned" ]]; then
echo "$pathToBeSigned is missing or not a file"
exit 1
elif isSigned "$pathToBeSigned" && ! isForced "${jetSignArgs[@]}" ; then
echo "Already signed: $pathToBeSigned"
elif [[ "$JETSIGN_CLIENT" == "null" ]]; then
echo "JetSign client is missing, cannot proceed with signing"
exit 1
elif [[ "$pathToBeSigned" != *.pkg ]]; then
echo "$pathToBeSigned won't be signed, assumed not to be a macOS package"
else
if ! isSigned "$pathToBeSigned" ; then
echo "Unsigned macOS package: $pathToBeSigned"
fi
workDir=$(dirname "$pathToBeSigned")
pathSigned="$workDir/signed/${pathToBeSigned##*/}"
jetSignExtensions=$(jetSignExtensions "${jetSignArgs[@]}")
contentType=$(jetSignContentType "$pathToBeSigned")
(
cd "$workDir" || exit 1
"$JETSIGN_CLIENT" -log-format text -denoted-content-type "$contentType" -extensions "$jetSignExtensions" "$pathToBeSigned"
isSigned "$pathSigned"
rm -f "$pathOut"
mv "$pathSigned" "$pathOut"
rm -rf "$workDir/signed"
)
fi

View File

@@ -1,18 +1,33 @@
#!/bin/bash
#immediately exit script with an error if a command fails
set -euo pipefail
set -x
[[ "${SCRIPT_VERBOSE:-}" == "1" ]] && set -x
if [[ $# -lt 5 ]]; then
echo "Usage: $0 AppDirectory AppName BundleId CertificateID InstallerCertificateID"
exit 1
fi
APPLICATION_PATH=$1
APP_NAME=$2
PKG_NAME=$2
BUNDLE_ID=$3
JB_DEVELOPER_CERT=$4
JB_INSTALLER_CERT=$5
if [[ -z "$APPLICATION_PATH" ]] || [[ -z "$JB_DEVELOPER_CERT" ]]; then
echo "Usage: $0 AppDirectory CertificateID"
exit 1
SCRIPT_DIR="$(cd "$(dirname "$0")" >/dev/null && pwd)"
# Use JetBrains sign utility if it's available
if [[ "${JETSIGN_CLIENT:=}" == "null" ]] || [[ "$JETSIGN_CLIENT" == "" ]]; then
JB_SIGN=false
SIGN_UTILITY="codesign"
PRODUCTSIGN_UTILITY="productsign"
else
JB_SIGN=true
SIGN_UTILITY="$SCRIPT_DIR/codesign.sh"
PRODUCTSIGN_UTILITY="$SCRIPT_DIR/productsign.sh"
fi
if [[ ! -d "$APPLICATION_PATH" ]]; then
echo "AppDirectory '$APPLICATION_PATH' does not exist or not a directory"
exit 1
@@ -22,9 +37,6 @@ function log() {
echo "$(date '+[%H:%M:%S]') $*"
}
#immediately exit script with an error if a command fails
set -euo pipefail
# Cleanup files left from previous sign attempt (if any)
find "$APPLICATION_PATH" -name '*.cstemp' -exec rm '{}' \;
@@ -37,13 +49,13 @@ for f in \
if [ -d "$APPLICATION_PATH/$f" ]; then
find "$APPLICATION_PATH/$f" \
-type f \( -name "*.jnilib" -o -name "*.dylib" -o -name "*.so" -o -name "*.tbd" -o -name "*.node" -o -perm +111 \) \
-exec codesign --timestamp \
-exec "$SIGN_UTILITY" --timestamp \
-v -s "$JB_DEVELOPER_CERT" --options=runtime --force \
--entitlements entitlements.xml {} \;
--entitlements "$SCRIPT_DIR/entitlements.xml" {} \;
fi
done
log "Signing libraries in jars in $PWD"
log "Signing libraries in jars in $APPLICATION_PATH"
# todo: add set -euo pipefail; into the inner sh -c
# `-e` prevents `grep -q && printf` loginc
@@ -61,10 +73,10 @@ find "$APPLICATION_PATH" -name '*.jar' \
find jarfolder \
-type f \( -name "*.jnilib" -o -name "*.dylib" -o -name "*.so" -o -name "*.tbd" -o -name "jattach" \) \
-exec codesign --timestamp \
-exec "$SIGN_UTILITY" --timestamp \
--force \
-v -s "$JB_DEVELOPER_CERT" --options=runtime \
--entitlements entitlements.xml {} \;
--entitlements "$SCRIPT_DIR/entitlements.xml" {} \;
(cd jarfolder; zip -q -r -o -0 ../jar.jar .)
mv jar.jar "$file"
@@ -73,44 +85,77 @@ find "$APPLICATION_PATH" -name '*.jar' \
rm -rf jarfolder jar.jar
log "Signing other files..."
# shellcheck disable=SC2043
for f in \
"Contents/Home/bin"; do
if [ -d "$APPLICATION_PATH/$f" ]; then
find "$APPLICATION_PATH/$f" \
-type f \( -name "*.jnilib" -o -name "*.dylib" -o -name "*.so" -o -name "*.tbd" -o -perm +111 \) \
-exec codesign --timestamp \
-exec "$SIGN_UTILITY" --timestamp \
-v -s "$JB_DEVELOPER_CERT" --options=runtime --force \
--entitlements entitlements.xml {} \;
--entitlements "$SCRIPT_DIR/entitlements.xml" {} \;
fi
done
#log "Signing executable..."
#codesign --timestamp \
# -v -s "$JB_DEVELOPER_CERT" --options=runtime \
# --force \
# --entitlements entitlements.xml "$APPLICATION_PATH/Contents/MacOS/idea"
log "Signing whole frameworks..."
# shellcheck disable=SC2043
if [ "$JB_SIGN" = true ]; then for f in \
"Contents/Home/Frameworks" "Contents/Frameworks"; do
if [ -d "$APPLICATION_PATH/$f" ]; then
find "$APPLICATION_PATH/$f" \( -name '*.framework' -o -name '*.app' \) -maxdepth 1 | while read -r line
do
log "Signing '$line':"
tar -pczf tmp-to-sign.tar.gz -C "$(dirname "$line")" "$(basename "$line")"
"$SIGN_UTILITY" --timestamp \
-v -s "$JB_DEVELOPER_CERT" --options=runtime \
--force \
--entitlements "$SCRIPT_DIR/entitlements.xml" tmp-to-sign.tar.gz
rm -rf "$line"
tar -xzf tmp-to-sign.tar.gz --directory "$(dirname "$line")"
rm -f tmp-to-sign.tar.gz
done
fi
done; fi
log "Checking framework signatures..."
for f in \
"Contents/Home/Frameworks" "Contents/Frameworks"; do
if [ -d "$APPLICATION_PATH/$f" ]; then
find "$APPLICATION_PATH/$f" -name '*.framework' -maxdepth 1 | while read -r line
do
log "Checking '$line':"
codesign --verify --deep --strict --verbose=4 "$line"
done
fi
done
log "Signing whole app..."
codesign --timestamp \
-v -s "$JB_DEVELOPER_CERT" --options=runtime \
--force \
--entitlements entitlements.xml "$APPLICATION_PATH"
if [ "$JB_SIGN" = true ]; then
tar -pczf tmp-to-sign.tar.gz --exclude='man' -C "$(dirname "$APPLICATION_PATH")" "$(basename "$APPLICATION_PATH")"
"$SIGN_UTILITY" --timestamp \
-v -s "$JB_DEVELOPER_CERT" --options=runtime \
--force \
--entitlements "$SCRIPT_DIR/entitlements.xml" tmp-to-sign.tar.gz
rm -rf "$APPLICATION_PATH"
tar -xzf tmp-to-sign.tar.gz --directory "$(dirname "$APPLICATION_PATH")"
rm -f tmp-to-sign.tar.gz
else
"$SIGN_UTILITY" --timestamp \
-v -s "$JB_DEVELOPER_CERT" --options=runtime \
--force \
--entitlements "$SCRIPT_DIR/entitlements.xml" "$APPLICATION_PATH"
fi
BUILD_NAME=$(echo $APPLICATION_PATH | awk -F"/" '{ print $2 }')
BUILD_NAME="$(basename "$APPLICATION_PATH")"
log "Creating $APP_NAME.pkg..."
rm -rf "$APP_NAME.pkg"
log "Creating $PKG_NAME..."
rm -rf "$PKG_NAME"
mkdir -p unsigned
pkgbuild --identifier $BUNDLE_ID --root $APPLICATION_PATH \
--install-location /Library/Java/JavaVirtualMachines/${BUILD_NAME} unsigned/${APP_NAME}.pkg
productsign --timestamp --sign "$JB_INSTALLER_CERT" unsigned/${APP_NAME}.pkg ${APP_NAME}.pkg
#log "Signing whole app..."
#codesign --timestamp \
# -v -s "$JB_DEVELOPER_CERT" --options=runtime \
# --force \
# --entitlements entitlements.xml $APP_NAME.pkg
--install-location /Library/Java/JavaVirtualMachines/${BUILD_NAME} unsigned/${PKG_NAME}
log "Signing $PKG_NAME..."
"$PRODUCTSIGN_UTILITY" --timestamp --sign "$JB_INSTALLER_CERT" unsigned/${PKG_NAME} ${PKG_NAME}
log "Verifying java is not broken"
find "$APPLICATION_PATH" \

View File

@@ -2,7 +2,7 @@
#immediately exit script with an error if a command fails
set -euo pipefail
set -x
[[ "${SCRIPT_VERBOSE:-}" == "1" ]] && set -x
export COPY_EXTENDED_ATTRIBUTES_DISABLE=true
export COPYFILE_DISABLE=true
@@ -17,7 +17,7 @@ JB_INSTALLER_CERT=$6
NOTARIZE=$7
BUNDLE_ID=$8
cd "$(dirname "$0")"
SCRIPT_DIR="$(cd "$(dirname "$0")" >/dev/null && pwd)"
function log() {
echo "$(date '+[%H:%M:%S]') $*"
@@ -44,7 +44,8 @@ fi
log "$INPUT_FILE extracted and removed"
APP_NAME=$(echo ${INPUT_FILE} | awk -F".tar" '{ print $1 }')
APP_NAME=$(basename "$INPUT_FILE" | awk -F".tar" '{ print $1 }')
PKG_NAME="$APP_NAME.pkg"
APPLICATION_PATH=$EXPLODED/$(ls $EXPLODED)
find "$APPLICATION_PATH/Contents/Home/bin" \
@@ -73,16 +74,18 @@ if [[ $non_plist -gt 0 ]]; then
exit 1
fi
log "Unlocking keychain..."
# Make sure *.p12 is imported into local KeyChain
security unlock-keychain -p "$PASSWORD" "/Users/$USERNAME/Library/Keychains/login.keychain"
if [[ "${JETSIGN_CLIENT:=}" == "null" ]] || [[ "$JETSIGN_CLIENT" == "" ]]; then
log "Unlocking keychain..."
# Make sure *.p12 is imported into local KeyChain
security unlock-keychain -p "$PASSWORD" "/Users/$USERNAME/Library/Keychains/login.keychain"
fi
attempt=1
limit=3
set +e
while [[ $attempt -le $limit ]]; do
log "Signing (attempt $attempt) $APPLICATION_PATH ..."
./sign.sh "$APPLICATION_PATH" "$APP_NAME" "$BUNDLE_ID" "$CODESIGN_STRING" "$JB_INSTALLER_CERT"
"$SCRIPT_DIR/sign.sh" "$APPLICATION_PATH" "$PKG_NAME" "$BUNDLE_ID" "$CODESIGN_STRING" "$JB_INSTALLER_CERT"
ec=$?
if [[ $ec -ne 0 ]]; then
((attempt += 1))
@@ -104,19 +107,10 @@ set -e
if [ "$NOTARIZE" = "yes" ]; then
log "Notarizing..."
# shellcheck disable=SC1090
source "$HOME/.notarize_token"
# Since notarization tool uses same file for upload token we have to trick it into using different folders, hence fake root
# Also it leaves copy of zip file in TMPDIR, so notarize.sh overrides it and uses FAKE_ROOT as location for temp TMPDIR
FAKE_ROOT="$(pwd)/fake-root"
mkdir -p "$FAKE_ROOT"
echo "Notarization will use fake root: $FAKE_ROOT"
./notarize.sh "$APPLICATION_PATH" "$APPLE_USERNAME" "$APPLE_PASSWORD" "$APP_NAME.pkg" "$BUNDLE_ID" "$FAKE_ROOT"
rm -rf "$FAKE_ROOT"
set +e
"$SCRIPT_DIR/notarize.sh" "$PKG_NAME"
log "Stapling..."
xcrun stapler staple "$APPLICATION_PATH"
xcrun stapler staple "$APPLICATION_PATH" ||:
xcrun stapler staple "$PKG_NAME" ||:
else
log "Notarization disabled"
log "Stapling disabled"
@@ -129,7 +123,11 @@ log "Zipping $BUILD_NAME to $INPUT_FILE ..."
if test -d $BACKUP_JMODS/jmods; then
mv $BACKUP_JMODS/jmods $APPLICATION_PATH/Contents/Home
fi
mv $APPLICATION_PATH $EXPLODED/$BUILD_NAME
if [[ "$APPLICATION_PATH" != "$EXPLODED/$BUILD_NAME" ]]; then
mv $APPLICATION_PATH $EXPLODED/$BUILD_NAME
else
echo "No move, source == destination: $APPLICATION_PATH"
fi
tar -pczvf $INPUT_FILE --exclude='man' -C $EXPLODED $BUILD_NAME
log "Finished zipping"

View File

@@ -34,6 +34,7 @@ NVDA_PATH=${NVDA_PATH:=$WORK_DIR/nvda_controllerClient}
function do_configure {
sh ./configure \
--enable-option-checking=fatal \
--openjdk-target=aarch64-unknown-cygwin \
$WITH_DEBUG_LEVEL \
--with-vendor-name="$VENDOR_NAME" \
@@ -47,9 +48,10 @@ function do_configure {
--with-build-jdk=$BUILD_JDK \
--with-nvdacontrollerclient=$NVDA_PATH \
--disable-ccache \
--enable-cds=yes \
$STATIC_CONF_ARGS \
$REPRODUCIBLE_BUILD_OPTS \
--enable-cds=yes || do_exit $?
|| do_exit $?
}
function create_image_bundle {
@@ -68,7 +70,7 @@ function create_image_bundle {
--module-path $__modules_path --no-man-pages --compress=2 \
--add-modules $__modules --output $__root_dir || do_exit $?
grep -v "^JAVA_VERSION" "$JSDK"/release | grep -v "^MODULES" >> $__arch_name/release
grep -v "^JAVA_VERSION" "$JSDK"/release | grep -v "^MODULES" >> $__root_dir/release
if [ "$__arch_name" == "$JBRSDK_BUNDLE" ]; then
sed 's/JBR/JBRSDK/g' $__root_dir/release > release
mv release $__root_dir/release
@@ -129,6 +131,7 @@ if [ "$bundle_type" == "jcef" ] || [ "$bundle_type" == "fd" ]; then
cp $JCEF_PATH/jmods/* $JSDK_MODS_DIR # $JSDK/jmods is not unchanged
jbr_name_postfix="_${bundle_type}"
cat $JCEF_PATH/jcef.version >> $JSDK/release
else
jbr_name_postfix=""
fi

View File

@@ -122,6 +122,7 @@ if [ "$bundle_type" == "jcef" ] || [ "$bundle_type" == "fd" ]; then
cp $JCEF_PATH/jmods/* ${JSDK_MODS_DIR} # $JSDK/jmods is not unchanged
jbr_name_postfix="_${bundle_type}"
cat $JCEF_PATH/jcef.version >> $JSDK/release
else
jbr_name_postfix=""
fi

View File

@@ -1,5 +1,5 @@
#
# Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2014, 2023, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@@ -98,6 +98,7 @@ define SetupInterimModule
EXCLUDES := sun javax/tools/snippet-files, \
EXCLUDE_FILES := $(TOPDIR)/src/$1/share/classes/module-info.java \
$(TOPDIR)/src/$1/share/classes/javax/tools/ToolProvider.java \
$(TOPDIR)/src/$1/share/classes/com/sun/tools/javac/launcher/Main.java \
Standard.java, \
EXTRA_FILES := $(BUILDTOOLS_OUTPUTDIR)/gensrc/$1.interim/module-info.java \
$($1.interim_EXTRA_FILES), \
@@ -109,7 +110,9 @@ define SetupInterimModule
$$(INTERIM_LANGTOOLS_ADD_EXPORTS) \
--patch-module java.base=$(BUILDTOOLS_OUTPUTDIR)/gensrc/java.base.interim \
--add-exports java.base/jdk.internal.javac=java.compiler.interim \
--add-exports java.base/jdk.internal.javac=jdk.compiler.interim, \
--add-exports java.base/jdk.internal.javac=jdk.compiler.interim \
--add-exports jdk.internal.opt/jdk.internal.opt=jdk.compiler.interim \
--add-exports jdk.internal.opt/jdk.internal.opt=jdk.javadoc.interim, \
))
$1_DEPS_INTERIM := $$(addsuffix .interim, $$(filter \

View File

@@ -57,7 +57,9 @@ $(eval $(call SetupJavaCompilation, BUILD_TOOLS_JDK, \
JAVAC_FLAGS := \
--add-exports java.desktop/sun.awt=ALL-UNNAMED \
--add-exports java.base/sun.text=ALL-UNNAMED \
--add-exports java.base/sun.security.util=ALL-UNNAMED, \
--add-exports java.base/sun.security.util=ALL-UNNAMED \
--add-exports jdk.internal.opt/jdk.internal.opt=jdk.compiler.interim \
--add-exports jdk.internal.opt/jdk.internal.opt=jdk.javadoc.interim, \
))
TARGETS += $(BUILD_TOOLS_JDK)
@@ -90,7 +92,9 @@ $(eval $(call SetupJavaCompilation, COMPILE_DEPEND, \
--add-exports jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED, \
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED \
--add-exports jdk.internal.opt/jdk.internal.opt=jdk.compiler.interim \
--add-exports jdk.internal.opt/jdk.internal.opt=jdk.javadoc.interim, \
))
DEPEND_SERVICE_PROVIDER := $(BUILDTOOLS_OUTPUTDIR)/depend/META-INF/services/com.sun.source.util.Plugin

View File

@@ -110,7 +110,6 @@ JAVA_WARNINGS_ARE_ERRORS ?= -Werror
JAVADOC_OPTIONS := -use -keywords -notimestamp \
-encoding ISO-8859-1 -docencoding UTF-8 -breakiterator \
-splitIndex --system none -javafx --expand-requires transitive \
--enable-preview -source $(JDK_SOURCE_TARGET_VERSION) \
--override-methods=summary \
--no-external-specs-page
@@ -118,7 +117,6 @@ JAVADOC_OPTIONS := -use -keywords -notimestamp \
# development cycle.
REFERENCE_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
-encoding ISO-8859-1 -breakiterator -splitIndex --system none \
--enable-preview -source $(JDK_SOURCE_TARGET_VERSION) \
-html5 -javafx --expand-requires transitive \
--no-external-specs-page

View File

@@ -125,6 +125,11 @@ test-prebuilt:
$(MAKE) --no-print-directory -r -R -I make/common/ -f make/RunTestsPrebuilt.gmk \
test-prebuilt CUSTOM_MAKE_DIR=$(CUSTOM_MAKE_DIR) TEST="$(TEST)" )
test-prebuilt-with-exit-code:
@( cd $(topdir) && \
$(MAKE) --no-print-directory -r -R -I make/common/ -f make/RunTestsPrebuilt.gmk \
test-prebuilt-with-exit-code CUSTOM_MAKE_DIR=$(CUSTOM_MAKE_DIR) TEST="$(TEST)" )
# Alias for backwards compatibility
run-test-prebuilt: test-prebuilt

View File

@@ -1,5 +1,5 @@
#
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@@ -747,6 +747,22 @@ ifeq ($(BUILD_FAILURE_HANDLER), true)
))
endif
ifeq ($(BUILD_JTREG_TEST_THREAD_FACTORY), true)
# Builds the test thread factory jtreg extension
$(eval $(call SetupTarget, build-test-test-thread-factory, \
MAKEFILE := test/BuildJtregTestThreadFactory, \
TARGET := build, \
DEPS := interim-langtools exploded-image, \
))
# Copies the jtreg test thread factory into the test image
$(eval $(call SetupTarget, test-image-test-thread-factory, \
MAKEFILE := test/BuildJtregTestThreadFactory, \
TARGET := images, \
DEPS := build-test-test-thread-factory, \
))
endif
$(eval $(call SetupTarget, build-microbenchmark, \
MAKEFILE := test/BuildMicrobenchmark, \
DEPS := interim-langtools exploded-image, \
@@ -1227,6 +1243,10 @@ ifeq ($(BUILD_FAILURE_HANDLER), true)
test-image: test-image-failure-handler
endif
ifeq ($(BUILD_JTREG_TEST_THREAD_FACTORY), true)
test-image: test-image-test-thread-factory
endif
ifneq ($(JMH_CORE_JAR), )
test-image: build-microbenchmark
endif

View File

@@ -93,6 +93,9 @@ endif
JTREG_FAILURE_HANDLER_DIR := $(TEST_IMAGE_DIR)/failure_handler
JTREG_FAILURE_HANDLER := $(JTREG_FAILURE_HANDLER_DIR)/jtregFailureHandler.jar
JTREG_TEST_THREAD_FACTORY_DIR := $(TEST_IMAGE_DIR)/jtreg_test_thread_factory
JTREG_TEST_THREAD_FACTORY_JAR := $(JTREG_TEST_THREAD_FACTORY_DIR)/jtregTestThreadFactory.jar
JTREG_FAILURE_HANDLER_TIMEOUT ?= 0
ifneq ($(wildcard $(JTREG_FAILURE_HANDLER)), )
@@ -200,7 +203,7 @@ $(eval $(call SetTestOpt,REPORT,JTREG))
$(eval $(call ParseKeywordVariable, JTREG, \
SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR FAILURE_HANDLER_TIMEOUT \
TEST_MODE ASSERT VERBOSE RETAIN MAX_MEM RUN_PROBLEM_LISTS \
TEST_MODE ASSERT VERBOSE RETAIN TEST_THREAD_FACTORY MAX_MEM RUN_PROBLEM_LISTS \
RETRY_COUNT REPEAT_COUNT MAX_OUTPUT REPORT $(CUSTOM_JTREG_SINGLE_KEYWORDS), \
STRING_KEYWORDS := OPTIONS JAVA_OPTIONS VM_OPTIONS KEYWORDS \
EXTRA_PROBLEM_LISTS LAUNCHER_OPTIONS \
@@ -592,16 +595,7 @@ define SetupRunMicroTestBody
endif
# Set library path for native dependencies
$1_JMH_JVM_ARGS := -Djava.library.path=$$(TEST_IMAGE_DIR)/micro/native \
--add-exports java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED \
--add-exports java.base/jdk.internal.org.objectweb.asm.tree=ALL-UNNAMED \
--add-exports java.base/jdk.internal.classfile=ALL-UNNAMED \
--add-exports java.base/jdk.internal.classfile.attribute=ALL-UNNAMED \
--add-exports java.base/jdk.internal.classfile.constantpool=ALL-UNNAMED \
--add-exports java.base/jdk.internal.classfile.instruction=ALL-UNNAMED \
--add-exports java.base/jdk.internal.classfile.java.lang.constant=ALL-UNNAMED \
--add-exports java.base/jdk.internal.classfile.components=ALL-UNNAMED \
--add-exports java.base/jdk.internal.classfile.impl=ALL-UNNAMED
$1_JMH_JVM_ARGS := -Djava.library.path=$$(TEST_IMAGE_DIR)/micro/native
ifneq ($$(MICRO_VM_OPTIONS)$$(MICRO_JAVA_OPTIONS), )
$1_JMH_JVM_ARGS += $$(MICRO_VM_OPTIONS) $$(MICRO_JAVA_OPTIONS)
@@ -752,6 +746,7 @@ define SetupRunJtregTestBody
JTREG_VERBOSE ?= fail,error,summary
JTREG_RETAIN ?= fail,error
JTREG_TEST_THREAD_FACTORY ?=
JTREG_RUN_PROBLEM_LISTS ?= false
JTREG_RETRY_COUNT ?= 0
JTREG_REPEAT_COUNT ?= 0
@@ -765,6 +760,14 @@ define SetupRunJtregTestBody
endif
endif
ifneq ($$(JTREG_TEST_THREAD_FACTORY), )
$1_JTREG_BASIC_OPTIONS += -testThreadFactoryPath:$$(JTREG_TEST_THREAD_FACTORY_JAR)
$1_JTREG_BASIC_OPTIONS += -testThreadFactory:$$(JTREG_TEST_THREAD_FACTORY)
$1_JTREG_BASIC_OPTIONS += $$(addprefix $$(JTREG_PROBLEM_LIST_PREFIX), $$(wildcard \
$$(addprefix $$($1_TEST_ROOT)/, ProblemList-$$(JTREG_TEST_THREAD_FACTORY).txt) \
))
endif
ifneq ($$(JTREG_LAUNCHER_OPTIONS), )
$1_JTREG_LAUNCHER_OPTIONS += $$(JTREG_LAUNCHER_OPTIONS)
endif

View File

@@ -295,6 +295,11 @@ test-prebuilt:
@cd $(TOPDIR) && $(MAKE) $(MAKE_ARGS) -f make/RunTests.gmk run-test \
TEST="$(TEST)"
test-prebuilt-with-exit-code: test-prebuilt
@if test -f $(MAKESUPPORT_OUTPUTDIR)/exit-with-error ; then \
exit 1 ; \
fi
all: test-prebuilt
.PHONY: default all test-prebuilt

View File

@@ -60,6 +60,7 @@ AC_DEFUN([BASIC_CHECK_LEFTOVER_OVERRIDDEN],
###############################################################################
# Setup basic configuration paths, and platform-specific stuff related to PATHs.
# Make sure to only use tools set up in BASIC_SETUP_FUNDAMENTAL_TOOLS.
AC_DEFUN_ONCE([BASIC_SETUP_PATHS],
[
# Save the current directory this script was started from

View File

@@ -29,8 +29,8 @@
RECOMMENDED_PANDOC_VERSION=2.19.2
###############################################################################
# Setup the most fundamental tools that relies on not much else to set up,
# but is used by much of the early bootstrap code.
# Setup the most fundamental tools, used for setting up build platform and
# path handling.
AC_DEFUN_ONCE([BASIC_SETUP_FUNDAMENTAL_TOOLS],
[
# Bootstrapping: These tools are needed by UTIL_LOOKUP_PROGS
@@ -42,7 +42,28 @@ AC_DEFUN_ONCE([BASIC_SETUP_FUNDAMENTAL_TOOLS],
UTIL_CHECK_NONEMPTY(FILE)
AC_PATH_PROGS(LDD, ldd)
# First are all the fundamental required tools.
# Required tools
UTIL_REQUIRE_PROGS(ECHO, echo)
UTIL_REQUIRE_PROGS(TR, tr)
UTIL_REQUIRE_PROGS(UNAME, uname)
UTIL_REQUIRE_PROGS(WC, wc)
# Required tools with some special treatment
UTIL_REQUIRE_SPECIAL(GREP, [AC_PROG_GREP])
UTIL_REQUIRE_SPECIAL(EGREP, [AC_PROG_EGREP])
UTIL_REQUIRE_SPECIAL(SED, [AC_PROG_SED])
# Tools only needed on some platforms
UTIL_LOOKUP_PROGS(PATHTOOL, cygpath wslpath)
UTIL_LOOKUP_PROGS(CMD, cmd.exe, $PATH:/cygdrive/c/windows/system32:/mnt/c/windows/system32:/c/windows/system32)
])
###############################################################################
# Setup further tools that should be resolved early but after setting up
# build platform and path handling.
AC_DEFUN_ONCE([BASIC_SETUP_TOOLS],
[
# Required tools
UTIL_REQUIRE_PROGS(BASH, bash)
UTIL_REQUIRE_PROGS(CAT, cat)
UTIL_REQUIRE_PROGS(CHMOD, chmod)
@@ -50,7 +71,6 @@ AC_DEFUN_ONCE([BASIC_SETUP_FUNDAMENTAL_TOOLS],
UTIL_REQUIRE_PROGS(CUT, cut)
UTIL_REQUIRE_PROGS(DATE, date)
UTIL_REQUIRE_PROGS(DIFF, gdiff diff)
UTIL_REQUIRE_PROGS(ECHO, echo)
UTIL_REQUIRE_PROGS(EXPR, expr)
UTIL_REQUIRE_PROGS(FIND, find)
UTIL_REQUIRE_PROGS(GUNZIP, gunzip)
@@ -72,16 +92,10 @@ AC_DEFUN_ONCE([BASIC_SETUP_FUNDAMENTAL_TOOLS],
UTIL_REQUIRE_PROGS(TAR, gtar tar)
UTIL_REQUIRE_PROGS(TEE, tee)
UTIL_REQUIRE_PROGS(TOUCH, touch)
UTIL_REQUIRE_PROGS(TR, tr)
UTIL_REQUIRE_PROGS(UNAME, uname)
UTIL_REQUIRE_PROGS(WC, wc)
UTIL_REQUIRE_PROGS(XARGS, xargs)
# Then required tools that require some special treatment.
UTIL_REQUIRE_SPECIAL(GREP, [AC_PROG_GREP])
UTIL_REQUIRE_SPECIAL(EGREP, [AC_PROG_EGREP])
# Required tools with some special treatment
UTIL_REQUIRE_SPECIAL(FGREP, [AC_PROG_FGREP])
UTIL_REQUIRE_SPECIAL(SED, [AC_PROG_SED])
# Optional tools, we can do without them
UTIL_LOOKUP_PROGS(DF, df)
@@ -90,10 +104,8 @@ AC_DEFUN_ONCE([BASIC_SETUP_FUNDAMENTAL_TOOLS],
UTIL_LOOKUP_PROGS(READLINK, greadlink readlink)
UTIL_LOOKUP_PROGS(WHOAMI, whoami)
# These are only needed on some platforms
UTIL_LOOKUP_PROGS(PATHTOOL, cygpath wslpath)
# Tools only needed on some platforms
UTIL_LOOKUP_PROGS(LSB_RELEASE, lsb_release)
UTIL_LOOKUP_PROGS(CMD, cmd.exe, $PATH:/cygdrive/c/windows/system32:/mnt/c/windows/system32:/c/windows/system32)
# For compare.sh only
UTIL_LOOKUP_PROGS(CMP, cmp)

View File

@@ -103,3 +103,7 @@ JVM_FEATURES_server := cds compiler1 compiler2 g1gc serialgc
override EXTRA_CFLAGS :=
override EXTRA_CXXFLAGS :=
override EXTRA_LDFLAGS :=
# hsdis is not needed
HSDIS_BACKEND := none
ENABLE_HSDIS_BUNDLING := false

View File

@@ -86,6 +86,7 @@ PLATFORM_SETUP_OPENJDK_BUILD_AND_TARGET
# Continue setting up basic stuff. Most remaining code require fundamental tools.
BASIC_SETUP_PATHS
BASIC_SETUP_TOOLS
BASIC_SETUP_BUILD_ENV
# Check if it's a pure open build or if custom sources are to be used.
@@ -222,6 +223,10 @@ JDKOPT_SETUP_UNDEFINED_BEHAVIOR_SANITIZER
# LeakSanitizer
JDKOPT_SETUP_LEAK_SANITIZER
# Fallback linker
# This needs to go before 'LIB_DETERMINE_DEPENDENCIES'
JDKOPT_SETUP_FALLBACK_LINKER
###############################################################################
#
# Check dependencies for external and internal libraries.
@@ -249,6 +254,7 @@ HOTSPOT_SETUP_MISC
###############################################################################
LIB_TESTS_ENABLE_DISABLE_FAILURE_HANDLER
LIB_TESTS_ENABLE_DISABLE_JTREG_TEST_THREAD_FACTORY
JDKOPT_ENABLE_DISABLE_GENERATE_CLASSLIST
JDKOPT_EXCLUDE_TRANSLATIONS

View File

@@ -51,6 +51,14 @@ AC_DEFUN([FLAGS_SETUP_SHARED_LIBS],
SET_SHARED_LIBRARY_NAME='-Wl,-install_name,@rpath/[$]1'
SET_SHARED_LIBRARY_MAPFILE='-Wl,-exported_symbols_list,[$]1'
elif test "x$OPENJDK_TARGET_OS" = xaix; then
# Linking is different on aix
SHARED_LIBRARY_FLAGS="-shared -Wl,-bM:SRE -Wl,-bnoentry"
SET_EXECUTABLE_ORIGIN=""
SET_SHARED_LIBRARY_ORIGIN=''
SET_SHARED_LIBRARY_NAME=''
SET_SHARED_LIBRARY_MAPFILE=''
else
# Default works for linux, might work on other platforms as well.
SHARED_LIBRARY_FLAGS='-shared'
@@ -206,7 +214,6 @@ AC_DEFUN([FLAGS_SETUP_WARNINGS],
WARNINGS_ENABLE_ALL="-Wall -Wextra -Wformat=2 $WARNINGS_ENABLE_ADDITIONAL"
DISABLED_WARNINGS="unknown-warning-option unused-parameter unused"
;;
xlc)
@@ -284,9 +291,15 @@ AC_DEFUN([FLAGS_SETUP_OPTIMIZATION],
C_O_FLAG_NONE="${C_O_FLAG_NONE} ${DISABLE_FORTIFY_CFLAGS}"
fi
elif test "x$TOOLCHAIN_TYPE" = xclang; then
C_O_FLAG_HIGHEST_JVM="-O3"
C_O_FLAG_HIGHEST="-O3"
C_O_FLAG_HI="-O3"
if test "x$OPENJDK_TARGET_OS" = xaix; then
C_O_FLAG_HIGHEST_JVM="-O3 -finline-functions"
C_O_FLAG_HIGHEST="-O3 -finline-functions"
C_O_FLAG_HI="-O3 -finline-functions"
else
C_O_FLAG_HIGHEST_JVM="-O3"
C_O_FLAG_HIGHEST="-O3"
C_O_FLAG_HI="-O3"
fi
C_O_FLAG_NORM="-O2"
C_O_FLAG_DEBUG_JVM="-O0"
C_O_FLAG_SIZE="-Os"
@@ -458,6 +471,9 @@ AC_DEFUN([FLAGS_SETUP_CFLAGS_HELPER],
# so for debug we build with '-qpic=large -bbigtoc'.
DEBUG_CFLAGS_JVM="-qpic=large"
fi
if test "x$TOOLCHAIN_TYPE" = xclang && test "x$OPENJDK_TARGET_OS" = xaix; then
DEBUG_CFLAGS_JVM="-fpic -mcmodel=large"
fi
fi
if test "x$DEBUG_LEVEL" != xrelease; then
@@ -493,8 +509,14 @@ AC_DEFUN([FLAGS_SETUP_CFLAGS_HELPER],
-fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer"
fi
if test "x$TOOLCHAIN_TYPE" = xclang && test "x$OPENJDK_TARGET_OS" = xaix; then
# clang compiler on aix needs -ffunction-sections
TOOLCHAIN_CFLAGS_JVM="$TOOLCHAIN_CFLAGS_JVM -ffunction-sections -ftls-model -fno-math-errno -fstack-protector"
TOOLCHAIN_CFLAGS_JDK="-ffunction-sections -fsigned-char -fstack-protector"
fi
if test "x$TOOLCHAIN_TYPE" = xgcc; then
TOOLCHAIN_CFLAGS_JVM="$TOOLCHAIN_CFLAGS_JVM -fcheck-new -fstack-protector"
TOOLCHAIN_CFLAGS_JVM="$TOOLCHAIN_CFLAGS_JVM -fstack-protector"
TOOLCHAIN_CFLAGS_JDK="-pipe -fstack-protector"
# reduce lib size on linux in link step, this needs also special compile flags
# do this on s390x also for libjvm (where serviceability agent is not supported)
@@ -601,6 +623,9 @@ AC_DEFUN([FLAGS_SETUP_CFLAGS_HELPER],
if test "x$TOOLCHAIN_TYPE" = xgcc || test "x$TOOLCHAIN_TYPE" = xclang; then
PICFLAG="-fPIC"
PIEFLAG="-fPIE"
elif test "x$TOOLCHAIN_TYPE" = xclang && test "x$OPENJDK_TARGET_OS" = xaix; then
JVM_PICFLAG="-fpic -mcmodel=large -Wl,-bbigtoc
JDK_PICFLAG="-fpic
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
# '-qpic' defaults to 'qpic=small'. This means that the compiler generates only
# one instruction for accessing the TOC. If the TOC grows larger than 64K, the linker
@@ -746,6 +771,9 @@ AC_DEFUN([FLAGS_SETUP_CFLAGS_CPU_DEP],
$1_CFLAGS_CPU_JDK="${$1_CFLAGS_CPU_JDK} -fno-omit-frame-pointer"
fi
fi
if test "x$OPENJDK_TARGET_OS" = xaix; then
$1_CFLAGS_CPU="-mcpu=pwr8"
fi
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
if test "x$FLAGS_CPU" = xppc64; then

View File

@@ -1,5 +1,5 @@
#
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@@ -75,7 +75,11 @@ AC_DEFUN([FLAGS_SETUP_LDFLAGS_HELPER],
elif test "x$TOOLCHAIN_TYPE" = xclang; then
BASIC_LDFLAGS_JVM_ONLY="-mno-omit-leaf-frame-pointer -mstack-alignment=16 \
-fPIC"
if test "x$OPENJDK_TARGET_OS" = xaix; then
BASIC_LDFLAGS="-Wl,-b64 -Wl,-brtl -Wl,-bnorwexec -Wl,-bnolibpath -Wl,-bnoexpall \
-Wl,-bernotok -Wl,-bdatapsize:64k -Wl,-btextpsize:64k -Wl,-bstackpsize:64k"
BASIC_LDFLAGS_JVM_ONLY="$BASIC_LDFLAGS_JVM_ONLY -Wl,-lC_r -Wl,-bbigtoc"
fi
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
BASIC_LDFLAGS="-b64 -brtl -bnorwexec -bnolibpath -bnoexpall -bernotok -btextpsize:64K \
-bdatapsize:64K -bstackpsize:64K"
@@ -88,7 +92,8 @@ AC_DEFUN([FLAGS_SETUP_LDFLAGS_HELPER],
BASIC_LDFLAGS_JVM_ONLY="-opt:icf,8 -subsystem:windows"
fi
if test "x$TOOLCHAIN_TYPE" = xgcc || test "x$TOOLCHAIN_TYPE" = xclang; then
if (test "x$TOOLCHAIN_TYPE" = xgcc || test "x$TOOLCHAIN_TYPE" = xclang) \
&& test "x$OPENJDK_TARGET_OS" != xaix; then
if test -n "$HAS_NOEXECSTACK"; then
BASIC_LDFLAGS="$BASIC_LDFLAGS -Wl,-z,noexecstack"
fi
@@ -116,6 +121,14 @@ AC_DEFUN([FLAGS_SETUP_LDFLAGS_HELPER],
if test "x$DEBUG_LEVEL" != xrelease; then
DEBUGLEVEL_LDFLAGS_JVM_ONLY="$DEBUGLEVEL_LDFLAGS_JVM_ONLY -bbigtoc"
fi
elif test "x$TOOLCHAIN_TYPE" = xclang && test "x$OPENJDK_TARGET_OS" = xaix; then
# We need '-fpic' or '-fpic -mcmodel=large -Wl,-bbigtoc' if the TOC overflows.
# Hotspot now overflows its 64K TOC (currently only for debug),
# so we build with '-fpic -mcmodel=large -Wl,-bbigtoc'.
if test "x$DEBUG_LEVEL" != xrelease; then
DEBUGLEVEL_LDFLAGS_JVM_ONLY="$DEBUGLEVEL_LDFLAGS_JVM_ONLY -Wl,-bbigtoc"
fi
fi
# Setup LDFLAGS for linking executables

View File

@@ -928,3 +928,22 @@ AC_DEFUN([JDKOPT_SETUP_MACOSX_SIGNING],
AC_SUBST(MACOSX_CODESIGN_MODE)
fi
])
################################################################################
#
# fallback linker
#
AC_DEFUN_ONCE([JDKOPT_SETUP_FALLBACK_LINKER],
[
FALLBACK_LINKER_DEFAULT=false
if HOTSPOT_CHECK_JVM_VARIANT(zero); then
FALLBACK_LINKER_DEFAULT=true
fi
UTIL_ARG_ENABLE(NAME: fallback-linker, DEFAULT: $FALLBACK_LINKER_DEFAULT,
RESULT: ENABLE_FALLBACK_LINKER,
DESC: [enable libffi-based fallback implementation of java.lang.foreign.Linker],
CHECKING_MSG: [if fallback linker enabled])
AC_SUBST(ENABLE_FALLBACK_LINKER)
])

View File

@@ -28,7 +28,7 @@
################################################################################
# Minimum supported versions
JTREG_MINIMUM_VERSION=7.1.1
JTREG_MINIMUM_VERSION=7.2
GTEST_MINIMUM_VERSION=1.13.0
###############################################################################
@@ -301,3 +301,22 @@ AC_DEFUN_ONCE([LIB_TESTS_ENABLE_DISABLE_FAILURE_HANDLER],
])
AC_SUBST(BUILD_FAILURE_HANDLER)
])
AC_DEFUN_ONCE([LIB_TESTS_ENABLE_DISABLE_JTREG_TEST_THREAD_FACTORY],
[
UTIL_ARG_ENABLE(NAME: jtreg-test-thread-factory, DEFAULT: auto,
RESULT: BUILD_JTREG_TEST_THREAD_FACTORY,
DESC: [enable building of the jtreg test thread factory],
DEFAULT_DESC: [enabled if jtreg is present],
CHECKING_MSG: [if the jtreg test thread factory should be built],
CHECK_AVAILABLE: [
AC_MSG_CHECKING([if the jtreg test thread factory is available])
if test "x$JT_HOME" != "x"; then
AC_MSG_RESULT([yes])
else
AVAILABLE=false
AC_MSG_RESULT([no (jtreg not present)])
fi
])
AC_SUBST(BUILD_JTREG_TEST_THREAD_FACTORY)
])

View File

@@ -99,6 +99,9 @@ AC_DEFUN_ONCE([LIB_SETUP_WAYLAND],
AC_ARG_WITH(vulkan-include, [AS_HELP_STRING([--with-vulkan-include],
[specify directory for the vulkan include files])])
AC_ARG_WITH(vulkan-shader-compiler, [AS_HELP_STRING([--with-vulkan-shader-compiler],
[specify which shader compiler to use: glslc/glslangValidator])])
if test "x$SUPPORTS_LIB_VULKAN" = xfalse; then
if (test "x${with_vulkan}" != x && test "x${with_vulkan}" != xno) || \
@@ -120,7 +123,6 @@ AC_DEFUN_ONCE([LIB_SETUP_WAYLAND],
AC_CHECK_HEADERS([${with_vulkan_include}/include/vulkan/vulkan.h],
[ VULKAN_FOUND=yes
VULKAN_FLAGS="-DVK_USE_PLATFORM_WAYLAND_KHR -I${with_vulkan_include}/include -DVULKAN_ENABLED"
VULKAN_ENABLED=true
],
[ AC_MSG_ERROR([Can't find 'vulkan/vulkan.h' under '${with_vulkan_include}']) ]
)
@@ -131,7 +133,6 @@ AC_DEFUN_ONCE([LIB_SETUP_WAYLAND],
AC_CHECK_HEADERS([$VULKAN_SDK/include/vulkan/vulkan.h],
[ VULKAN_FOUND=yes
VULKAN_FLAGS="-DVK_USE_PLATFORM_WAYLAND_KHR -I${VULKAN_SDK}/include -DVULKAN_ENABLED"
VULKAN_ENABLED=true
],
[ VULKAN_FOUND=no; break ]
)
@@ -142,7 +143,6 @@ AC_DEFUN_ONCE([LIB_SETUP_WAYLAND],
AC_CHECK_HEADERS([vulkan/vulkan.h],
[ VULKAN_FOUND=yes
VULKAN_FLAGS="-DVK_USE_PLATFORM_WAYLAND_KHR -DVULKAN_ENABLED"
VULKAN_ENABLED=true
],
[ VULKAN_FOUND=no; break ]
)
@@ -151,11 +151,32 @@ AC_DEFUN_ONCE([LIB_SETUP_WAYLAND],
if test "x$VULKAN_FOUND" = xno; then
HELP_MSG_MISSING_DEPENDENCY([vulkan])
AC_MSG_ERROR([Could not find vulkan! $HELP_MSG ])
else
# Find shader compiler - glslc or glslangValidator
if (test "x${with_vulkan_shader_compiler}" = x || test "x${with_vulkan_shader_compiler}" = xglslc); then
UTIL_LOOKUP_PROGS(GLSLC, glslc)
SHADER_COMPILER="$GLSLC"
VULKAN_SHADER_COMPILER="glslc --target-env=vulkan1.2 -mfmt=num -o"
fi
if (test "x${with_vulkan_shader_compiler}" = x || test "x${with_vulkan_shader_compiler}" = xglslangValidator) && \
test "x$SHADER_COMPILER" = x; then
UTIL_LOOKUP_PROGS(GLSLANG, glslangValidator)
SHADER_COMPILER="$GLSLANG"
VULKAN_SHADER_COMPILER="glslangValidator --target-env vulkan1.2 -x -o"
fi
if test "x$SHADER_COMPILER" != x; then
VULKAN_ENABLED=true
else
AC_MSG_ERROR([Can't find shader compiler])
fi
fi
fi
fi
fi
AC_SUBST(VULKAN_FLAGS)
AC_SUBST(VULKAN_SHADER_COMPILER)
AC_SUBST(VULKAN_ENABLED)
AC_SUBST(WAYLAND_CFLAGS)
AC_SUBST(WAYLAND_LIBS)

View File

@@ -98,7 +98,7 @@ AC_DEFUN_ONCE([LIB_DETERMINE_DEPENDENCIES],
fi
# Check if ffi is needed
if HOTSPOT_CHECK_JVM_VARIANT(zero); then
if HOTSPOT_CHECK_JVM_VARIANT(zero) || test "x$ENABLE_FALLBACK_LINKER" = "xtrue"; then
NEEDS_LIB_FFI=true
else
NEEDS_LIB_FFI=false

View File

@@ -1,5 +1,5 @@
#
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@@ -640,6 +640,7 @@ AC_DEFUN([PLATFORM_SET_MODULE_TARGET_OS_VALUES],
])
#%%% Build and target systems %%%
# Make sure to only use tools set up in BASIC_SETUP_FUNDAMENTAL_TOOLS.
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_AND_TARGET],
[
# Figure out the build and target systems. # Note that in autoconf terminology, "build" is obvious, but "target"
@@ -656,6 +657,21 @@ AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_AND_TARGET],
PLATFORM_SET_MODULE_TARGET_OS_VALUES
PLATFORM_SET_RELEASE_FILE_OS_VALUES
PLATFORM_SETUP_LEGACY_VARS
PLATFORM_CHECK_DEPRECATION
])
AC_DEFUN([PLATFORM_CHECK_DEPRECATION],
[
AC_ARG_ENABLE(deprecated-ports, [AS_HELP_STRING([--enable-deprecated-ports@<:@=yes/no@:>@],
[Suppress the error when configuring for a deprecated port @<:@no@:>@])])
if test "x$OPENJDK_TARGET_OS" = xwindows && test "x$OPENJDK_TARGET_CPU" = xx86; then
if test "x$enable_deprecated_ports" = "xyes"; then
AC_MSG_WARN([The Windows 32-bit x86 port is deprecated and may be removed in a future release.])
else
AC_MSG_ERROR(m4_normalize([The Windows 32-bit x86 port is deprecated and may be removed in a future release.
Use --enable-deprecated-ports=yes to suppress this error.]))
fi
fi
])
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_OS_VERSION],
@@ -723,7 +739,7 @@ AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_TARGET_ENDIANNESS],
[
###############################################################################
#
# Is the target little of big endian?
# Is the target little or big endian?
#
AC_C_BIGENDIAN([ENDIAN="big"],[ENDIAN="little"],[ENDIAN="unknown"],[ENDIAN="universal_endianness"])

View File

@@ -1,5 +1,5 @@
#
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@@ -358,6 +358,8 @@ BUILDJDK_OUTPUTDIR=$(OUTPUTDIR)/buildjdk
BUILD_FAILURE_HANDLER := @BUILD_FAILURE_HANDLER@
BUILD_JTREG_TEST_THREAD_FACTORY := @BUILD_JTREG_TEST_THREAD_FACTORY@
ENABLE_GENERATE_CLASSLIST := @ENABLE_GENERATE_CLASSLIST@
EXCLUDE_TRANSLATIONS := @EXCLUDE_TRANSLATIONS@
@@ -407,6 +409,9 @@ TEST_JOBS?=@TEST_JOBS@
DEFAULT_MAKE_TARGET:=@DEFAULT_MAKE_TARGET@
DEFAULT_LOG:=@DEFAULT_LOG@
# Fallback linker
ENABLE_FALLBACK_LINKER:=@ENABLE_FALLBACK_LINKER@
FREETYPE_TO_USE:=@FREETYPE_TO_USE@
FREETYPE_LIBS:=@FREETYPE_LIBS@
FREETYPE_CFLAGS:=@FREETYPE_CFLAGS@
@@ -477,6 +482,7 @@ A11Y_JAWS_ANNOUNCING_ENABLED:=@A11Y_JAWS_ANNOUNCING_ENABLED@
WAYLAND_CFLAGS:=@WAYLAND_CFLAGS@
WAYLAND_LIBS:=@WAYLAND_LIBS@
VULKAN_FLAGS:=@VULKAN_FLAGS@
VULKAN_SHADER_COMPILER:=@VULKAN_SHADER_COMPILER@
VULKAN_ENABLED:=@VULKAN_ENABLED@
# The lowest required version of macosx
@@ -709,6 +715,8 @@ INTERIM_LANGTOOLS_ADD_EXPORTS := \
--add-exports java.base/sun.invoke.util=jdk.compiler.interim \
--add-exports java.base/jdk.internal.javac=java.compiler.interim \
--add-exports java.base/jdk.internal.javac=jdk.compiler.interim \
--add-exports jdk.internal.opt/jdk.internal.opt=jdk.compiler.interim \
--add-exports jdk.internal.opt/jdk.internal.opt=jdk.javadoc.interim \
#
INTERIM_LANGTOOLS_MODULES_COMMA := $(strip $(subst $(SPACE),$(COMMA),$(strip \
$(INTERIM_LANGTOOLS_MODULES))))

View File

@@ -1,5 +1,5 @@
#
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@@ -40,7 +40,7 @@ VALID_TOOLCHAINS_all="gcc clang xlc microsoft"
# These toolchains are valid on different platforms
VALID_TOOLCHAINS_linux="gcc clang"
VALID_TOOLCHAINS_macosx="clang"
VALID_TOOLCHAINS_aix="xlc"
VALID_TOOLCHAINS_aix="xlc clang"
VALID_TOOLCHAINS_windows="microsoft"
# Toolchain descriptions
@@ -53,7 +53,7 @@ TOOLCHAIN_DESCRIPTION_xlc="IBM XL C/C++"
TOOLCHAIN_MINIMUM_VERSION_clang="3.5"
TOOLCHAIN_MINIMUM_VERSION_gcc="6.0"
TOOLCHAIN_MINIMUM_VERSION_microsoft="19.28.0.0" # VS2019 16.8, aka MSVC 14.28
TOOLCHAIN_MINIMUM_VERSION_xlc=""
TOOLCHAIN_MINIMUM_VERSION_xlc="16.1.0.0011"
# Minimum supported linker versions, empty means unspecified
TOOLCHAIN_MINIMUM_LD_VERSION_gcc="2.18"
@@ -234,6 +234,25 @@ AC_DEFUN_ONCE([TOOLCHAIN_DETERMINE_TOOLCHAIN_TYPE],
# First toolchain type in the list is the default
DEFAULT_TOOLCHAIN=${VALID_TOOLCHAINS%% *}
# On AIX the default toolchain depends on the installed (found) compiler
# xlclang++ -> xlc toolchain
# ibm-clang++_r -> clang toolchain
# The compiler is searched on the PATH and TOOLCHAIN_PATH
# xlclang++ has precedence over ibm-clang++_r if both are installed
if test "x$OPENJDK_TARGET_OS" = xaix; then
DEFAULT_TOOLCHAIN="clang"
if test "x$TOOLCHAIN_PATH" != x; then
if test -e ${TOOLCHAIN_PATH}/xlclang++; then
DEFAULT_TOOLCHAIN="xlc"
fi
else
UTIL_LOOKUP_PROGS(XLCLANG_TEST_PATH, xlclang++)
if test "x$XLCLANG_TEST_PATH" != x; then
DEFAULT_TOOLCHAIN="xlc"
fi
fi
fi
if test "x$with_toolchain_type" = xlist; then
# List all toolchains
AC_MSG_NOTICE([The following toolchains are valid on this platform:])
@@ -263,22 +282,40 @@ AC_DEFUN_ONCE([TOOLCHAIN_DETERMINE_TOOLCHAIN_TYPE],
if test "x$TOOLCHAIN_PATH" != x; then
XLC_TEST_PATH=${TOOLCHAIN_PATH}/
fi
XLCLANG_VERSION_OUTPUT=`${XLC_TEST_PATH}xlclang++ -qversion 2>&1 | $HEAD -n 1`
$ECHO "$XLCLANG_VERSION_OUTPUT" | $GREP "IBM XL C/C++ for AIX" > /dev/null
if test $? -eq 0; then
AC_MSG_NOTICE([xlclang++ output: $XLCLANG_VERSION_OUTPUT])
if test "x$TOOLCHAIN_TYPE" = xclang; then
TOOLCHAIN_DESCRIPTION_clang="IBM Open XL C/C++"
XLCLANG_VERSION_OUTPUT=`${XLC_TEST_PATH}ibm-clang++_r --version 2>&1 | $HEAD -n 1`
$ECHO "$XLCLANG_VERSION_OUTPUT" | $GREP "IBM Open XL C/C++ for AIX" > /dev/null
if test $? -eq 0; then
AC_MSG_NOTICE([ibm-clang++_r output: $XLCLANG_VERSION_OUTPUT])
else
AC_MSG_ERROR([ibm-clang++_r version output check failed, output: $XLCLANG_VERSION_OUTPUT])
fi
else
AC_MSG_ERROR([xlclang++ version output check failed, output: $XLCLANG_VERSION_OUTPUT])
XLCLANG_VERSION_OUTPUT=`${XLC_TEST_PATH}xlclang++ -qversion 2>&1 | $HEAD -n 1`
$ECHO "$XLCLANG_VERSION_OUTPUT" | $GREP "IBM XL C/C++ for AIX" > /dev/null
if test $? -eq 0; then
AC_MSG_NOTICE([xlclang++ output: $XLCLANG_VERSION_OUTPUT])
else
AC_MSG_ERROR([xlclang++ version output check failed, output: $XLCLANG_VERSION_OUTPUT])
fi
fi
fi
TOOLCHAIN_CC_BINARY_clang="clang"
if test "x$OPENJDK_TARGET_OS" = xaix; then
TOOLCHAIN_CC_BINARY_clang="ibm-clang_r"
else
TOOLCHAIN_CC_BINARY_clang="clang"
fi
TOOLCHAIN_CC_BINARY_gcc="gcc"
TOOLCHAIN_CC_BINARY_microsoft="cl"
TOOLCHAIN_CC_BINARY_xlc="xlclang"
TOOLCHAIN_CXX_BINARY_clang="clang++"
if test "x$OPENJDK_TARGET_OS" = xaix; then
TOOLCHAIN_CXX_BINARY_clang="ibm-clang++_r"
else
TOOLCHAIN_CXX_BINARY_clang="clang++"
fi
TOOLCHAIN_CXX_BINARY_gcc="g++"
TOOLCHAIN_CXX_BINARY_microsoft="cl"
TOOLCHAIN_CXX_BINARY_xlc="xlclang++"
@@ -384,7 +421,7 @@ AC_DEFUN([TOOLCHAIN_EXTRACT_COMPILER_VERSION],
# Collapse compiler output into a single line
COMPILER_VERSION_STRING=`$ECHO $COMPILER_VERSION_OUTPUT`
COMPILER_VERSION_NUMBER=`$ECHO $COMPILER_VERSION_OUTPUT | \
$SED -e 's/^.*, V\(@<:@1-9@:>@@<:@0-9.@:>@*\).*$/\1/'`
$SED -e 's/^.*Version: \(@<:@1-9@:>@@<:@0-9.@:>@*\).*$/\1/'`
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
# There is no specific version flag, but all output starts with a version string.
# First line typically looks something like:
@@ -632,7 +669,7 @@ AC_DEFUN_ONCE([TOOLCHAIN_DETECT_TOOLCHAIN_CORE],
if test "x$TOOLCHAIN_MINIMUM_VERSION" != x; then
TOOLCHAIN_CHECK_COMPILER_VERSION(VERSION: $TOOLCHAIN_MINIMUM_VERSION,
IF_OLDER_THAN: [
AC_MSG_WARN([You are using $TOOLCHAIN_TYPE older than $TOOLCHAIN_MINIMUM_VERSION. This is not a supported configuration.])
AC_MSG_WARN([You are using $TOOLCHAIN_TYPE $CC_VERSION_NUMBER which is older than $TOOLCHAIN_MINIMUM_VERSION. This is not a supported configuration.])
]
)
fi
@@ -966,7 +1003,11 @@ AC_DEFUN_ONCE([TOOLCHAIN_MISC_CHECKS],
# Setup hotspot lecagy names for toolchains
HOTSPOT_TOOLCHAIN_TYPE=$TOOLCHAIN_TYPE
if test "x$TOOLCHAIN_TYPE" = xclang; then
HOTSPOT_TOOLCHAIN_TYPE=gcc
if test "x$OPENJDK_TARGET_OS" = xaix; then
HOTSPOT_TOOLCHAIN_TYPE=xlc
else
HOTSPOT_TOOLCHAIN_TYPE=gcc
fi
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
HOTSPOT_TOOLCHAIN_TYPE=visCPP
fi

View File

@@ -42,7 +42,6 @@ DOCS_MODULES= \
jdk.hotspot.agent \
jdk.httpserver \
jdk.jpackage \
jdk.incubator.concurrent \
jdk.incubator.vector \
jdk.jartool \
jdk.javadoc \

View File

@@ -26,16 +26,16 @@
# Versions and download locations for dependencies used by GitHub Actions (GHA)
GTEST_VERSION=1.13.0
JTREG_VERSION=7.1.1+1
JTREG_VERSION=7.2+1
LINUX_X64_BOOT_JDK_EXT=tar.gz
LINUX_X64_BOOT_JDK_URL=https://download.java.net/java/GA/jdk19/877d6127e982470ba2a7faa31cc93d04/36/GPL/openjdk-19_linux-x64_bin.tar.gz
LINUX_X64_BOOT_JDK_SHA256=f47aba585cfc9ecff1ed8e023524e8309f4315ed8b80100b40c7dcc232c12f96
LINUX_X64_BOOT_JDK_URL=https://download.java.net/java/GA/jdk20/bdc68b4b9cbc4ebcb30745c85038d91d/36/GPL/openjdk-20_linux-x64_bin.tar.gz
LINUX_X64_BOOT_JDK_SHA256=bb863b2d542976d1ae4b7b81af3e78b1e4247a64644350b552d298d8dc5980dc
MACOS_X64_BOOT_JDK_EXT=tar.gz
MACOS_X64_BOOT_JDK_URL=https://download.java.net/java/GA/jdk19/877d6127e982470ba2a7faa31cc93d04/36/GPL/openjdk-19_macos-x64_bin.tar.gz
MACOS_X64_BOOT_JDK_SHA256=bfd33f5b2590fd552ae2d9231340c6b4704a872f927dce1c52860b78c49a5a11
MACOS_X64_BOOT_JDK_URL=https://download.java.net/java/GA/jdk20/bdc68b4b9cbc4ebcb30745c85038d91d/36/GPL/openjdk-20_macos-x64_bin.tar.gz
MACOS_X64_BOOT_JDK_SHA256=47cf960d9bb89dbe987535a389f7e26c42de7c984ef5108612d77c81aa8cc6a4
WINDOWS_X64_BOOT_JDK_EXT=zip
WINDOWS_X64_BOOT_JDK_URL=https://download.java.net/java/GA/jdk19/877d6127e982470ba2a7faa31cc93d04/36/GPL/openjdk-19_windows-x64_bin.zip
WINDOWS_X64_BOOT_JDK_SHA256=8fabcee7c4e8d3b53486777ecd27bb906d67d7c1efd1bf22a8290cf659afa487
WINDOWS_X64_BOOT_JDK_URL=https://download.java.net/java/GA/jdk20/bdc68b4b9cbc4ebcb30745c85038d91d/36/GPL/openjdk-20_windows-x64_bin.zip
WINDOWS_X64_BOOT_JDK_SHA256=c92fae5e42b9aecf444a66c8ec563c652f60b1e231dfdd33a4f5a3e3603058fb

View File

@@ -390,7 +390,7 @@ var getJibProfilesCommon = function (input, data) {
};
};
common.boot_jdk_version = "19";
common.boot_jdk_version = "20";
common.boot_jdk_build_number = "36";
common.boot_jdk_home = input.get("boot_jdk", "install_path") + "/jdk-"
+ common.boot_jdk_version
@@ -463,7 +463,8 @@ var getJibProfilesProfiles = function (input, common, data) {
target_cpu: "x86",
build_cpu: "x64",
dependencies: ["devkit", "gtest"],
configure_args: concat(common.configure_args_32bit),
configure_args: concat(common.configure_args_32bit,
"--enable-deprecated-ports"),
},
"windows-aarch64": {
@@ -587,21 +588,23 @@ var getJibProfilesProfiles = function (input, common, data) {
"linux-x64-zero": {
target_os: "linux",
target_cpu: "x64",
dependencies: ["devkit", "gtest"],
dependencies: ["devkit", "gtest", "libffi"],
configure_args: concat(common.configure_args_64bit, [
"--with-zlib=system",
"--with-jvm-variants=zero",
"--enable-libffi-bundling"
"--with-libffi=" + input.get("libffi", "home_path"),
"--enable-libffi-bundling",
])
},
"linux-aarch64-zero": {
target_os: "linux",
target_cpu: "aarch64",
dependencies: ["devkit", "gtest"],
dependencies: ["devkit", "gtest", "libffi"],
configure_args: concat(common.configure_args_64bit, [
"--with-zlib=system",
"--with-jvm-variants=zero",
"--with-libffi=" + input.get("libffi", "home_path"),
"--enable-libffi-bundling"
])
},
@@ -610,10 +613,11 @@ var getJibProfilesProfiles = function (input, common, data) {
target_os: "linux",
target_cpu: "x86",
build_cpu: "x64",
dependencies: ["devkit", "gtest"],
dependencies: ["devkit", "gtest", "libffi"],
configure_args: concat(common.configure_args_32bit, [
"--with-zlib=system",
"--with-jvm-variants=zero",
"--with-libffi=" + input.get("libffi", "home_path"),
"--enable-libffi-bundling"
])
}
@@ -744,6 +748,40 @@ var getJibProfilesProfiles = function (input, common, data) {
common.debug_profile_artifacts(artifactData[name]));
});
// Define artifact just for linux-x64-zero, which is the only one we test on
["linux-x64"].forEach(function (name) {
var o = artifactData[name]
var pf = o.platform
var jdk_subdir = (o.jdk_subdir != null ? o.jdk_subdir : "jdk-" + data.version);
var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
var zeroName = name + "-zero";
profiles[zeroName].artifacts = {
jdk: {
local: "bundles/\\(jdk.*bin." + jdk_suffix + "\\)",
remote: [
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-zero." + jdk_suffix,
],
subdir: jdk_subdir,
exploded: "images/jdk",
},
test: {
local: "bundles/\\(jdk.*bin-tests.tar.gz\\)",
remote: [
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-zero-tests.tar.gz",
],
exploded: "images/test"
},
jdk_symbols: {
local: "bundles/\\(jdk.*bin-symbols.tar.gz\\)",
remote: [
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-zero-symbols.tar.gz",
],
subdir: jdk_subdir,
exploded: "images/jdk"
},
};
});
buildJdkDep = input.build_os + "-" + input.build_cpu + ".jdk";
docsProfiles = {
"docs": {
@@ -1150,9 +1188,9 @@ var getJibProfilesDependencies = function (input, common) {
jtreg: {
server: "jpg",
product: "jtreg",
version: "7.1.1",
version: "7.2",
build_number: "1",
file: "bundles/jtreg-7.1.1+1.zip",
file: "bundles/jtreg-7.2+1.zip",
environment_name: "JT_HOME",
environment_path: input.get("jtreg", "home_path") + "/bin",
configure_args: "--with-jtreg=" + input.get("jtreg", "home_path"),
@@ -1234,6 +1272,13 @@ var getJibProfilesDependencies = function (input, common) {
ext: "tar.gz",
revision: "1.13.0+1.0"
},
libffi: {
organization: common.organization,
module: "libffi-" + input.target_platform,
ext: "tar.gz",
revision: "3.4.2+1.0"
},
};
return dependencies;

View File

@@ -43,7 +43,6 @@ BOOT_MODULES= \
java.rmi \
java.security.sasl \
java.xml \
jdk.incubator.concurrent \
jdk.incubator.vector \
jdk.internal.vm.ci \
jdk.jfr \

View File

@@ -1,5 +1,5 @@
#
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@@ -37,6 +37,6 @@ DEFAULT_VERSION_DATE=2023-09-19
DEFAULT_VERSION_CLASSFILE_MAJOR=65 # "`$EXPR $DEFAULT_VERSION_FEATURE + 44`"
DEFAULT_VERSION_CLASSFILE_MINOR=0
DEFAULT_VERSION_DOCS_API_SINCE=11
DEFAULT_ACCEPTABLE_BOOT_VERSIONS="19 20 21"
DEFAULT_ACCEPTABLE_BOOT_VERSIONS="20 21"
DEFAULT_JDK_SOURCE_TARGET_VERSION=21
DEFAULT_PROMOTED_VERSION_PRE=ea
DEFAULT_PROMOTED_VERSION_PRE=

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009, 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2009, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -56,10 +56,10 @@ public class $NAME_CLZ$ extends Charset
return new DoubleByte.Encoder$ENCTYPE$(this, $ENC_REPLACEMENT$ EncodeHolder.c2b, EncodeHolder.c2bIndex, $ASCIICOMPATIBLE$);
}
static class DecodeHolder {
public static class DecodeHolder {
$B2C$
static final char[][] b2c = new char[b2cStr.length][];
static final char[] b2cSB;
public static final char[][] b2c = new char[b2cStr.length][];
public static final char[] b2cSB;
static {
for (int i = 0; i < b2cStr.length; i++) {
@@ -72,9 +72,9 @@ public class $NAME_CLZ$ extends Charset
}
}
static class EncodeHolder {
static final char[] c2b = new char[$C2BLENGTH$];
static final char[] c2bIndex = new char[0x100];
public static class EncodeHolder {
public static final char[] c2b = new char[$C2BLENGTH$];
public static final char[] c2bIndex = new char[0x100];
static {
$NONROUNDTRIP_B2C$

View File

@@ -2,13 +2,11 @@
# generate these charsets into sun.nio.cs
#
Big5
Big5_Solaris
Big5_HKSCS
EUC_CN
EUC_KR
EUC_JP
EUC_JP_LINUX
EUC_JP_Open
EUC_TW
GBK
ISO_8859_11
@@ -16,12 +14,9 @@ ISO_8859_3
ISO_8859_6
ISO_8859_8
Johab
PCK
TIS_620
JIS_X_0201
JIS_X_0208
JIS_X_0212
JIS_X_0208_Solaris
JIS_X_0212_Solaris
MS932
SJIS

View File

@@ -1,4 +1,4 @@
CLDR - Unicode Common Locale Data Repository
http://cldr.unicode.org
CLDR version installed: 42
CLDR version installed: 43

View File

@@ -67,9 +67,9 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="btn" description="Bhutanese Ngultrum"/>
<type name="buk" description="Burmese Kyat" since="1.9"/>
<type name="bwp" description="Botswanan Pula"/>
<type name="byb" description="Belarusian New Ruble (1994-1999)" since="1.9"/>
<type name="byb" description="Belarusian Ruble (1994-1999)" since="1.9"/>
<type name="byn" description="Belarusian Ruble" since="31"/>
<type name="byr" description="Belarusian Ruble (20002016)" since="1.9"/>
<type name="byr" description="Belarusian Ruble (2000-2016)" since="1.9"/>
<type name="bzd" description="Belize Dollar"/>
<type name="cad" description="Canadian Dollar"/>
<type name="cdf" description="Congolese Franc"/>
@@ -112,7 +112,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="fjd" description="Fijian Dollar"/>
<type name="fkp" description="Falkland Islands Pound"/>
<type name="frf" description="French Franc"/>
<type name="gbp" description="British Pound Sterling"/>
<type name="gbp" description="British Pound"/>
<type name="gek" description="Georgian Kupon Larit" since="1.9"/>
<type name="gel" description="Georgian Lari" since="1.9"/>
<type name="ghc" description="Ghanaian Cedi (1979-2007)"/>
@@ -136,8 +136,8 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="idr" description="Indonesian Rupiah"/>
<type name="iep" description="Irish Pound"/>
<type name="ilp" description="Israeli Pound"/>
<type name="ilr" description="Israeli Sheqel (1980-1985)" since="1.9"/>
<type name="ils" description="Israeli New Sheqel"/>
<type name="ilr" description="Israeli Shekel (1980-1985)" since="1.9"/>
<type name="ils" description="Israeli New Shekel"/>
<type name="inr" description="Indian Rupee"/>
<type name="iqd" description="Iraqi Dinar" since="1.9"/>
<type name="irr" description="Iranian Rial" since="1.9"/>
@@ -181,7 +181,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="mkd" description="Macedonian Denar" since="1.9"/>
<type name="mkn" description="Macedonian Denar (1992-1993)" since="1.9"/>
<type name="mlf" description="Malian Franc" since="1.9"/>
<type name="mmk" description="Myanma Kyat"/>
<type name="mmk" description="Myanmar Kyat"/>
<type name="mnt" description="Mongolian Tugrik"/>
<type name="mop" description="Macanese Pataca"/>
<type name="mro" description="Mauritanian Ouguiya (1973-2017)"/>
@@ -189,7 +189,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="mtl" description="Maltese Lira"/>
<type name="mtp" description="Maltese Pound"/>
<type name="mur" description="Mauritian Rupee"/>
<type name="mvp" description="Maldivian Rupee" since="1.9"/>
<type name="mvp" description="Maldivian Rupee (1947-1981)" since="1.9"/>
<type name="mvr" description="Maldivian Rufiyaa" since="1.9"/>
<type name="mwk" description="Malawian Kwacha" since="1.9"/>
<type name="mxn" description="Mexican Peso" since="1.9"/>
@@ -210,7 +210,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="omr" description="Omani Rial" since="1.9"/>
<type name="pab" description="Panamanian Balboa"/>
<type name="pei" description="Peruvian Inti"/>
<type name="pen" description="Peruvian Nuevo Sol"/>
<type name="pen" description="Peruvian Sol"/>
<type name="pes" description="Peruvian Sol (1863-1965)" since="1.9"/>
<type name="pgk" description="Papua New Guinean Kina"/>
<type name="php" description="Philippine Peso"/>
@@ -219,7 +219,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="plz" description="Polish Zloty (1950-1995)" since="1.9"/>
<type name="pte" description="Portuguese Escudo"/>
<type name="pyg" description="Paraguayan Guarani"/>
<type name="qar" description="Qatari Rial"/>
<type name="qar" description="Qatari Riyal"/>
<type name="rhd" description="Rhodesian Dollar"/>
<type name="rol" description="Romanian Leu (1952-2006)" since="1.9"/>
<type name="ron" description="Romanian Leu"/>
@@ -235,11 +235,11 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="sdp" description="Sudanese Pound (1957-1998)" since="1.9"/>
<type name="sek" description="Swedish Krona"/>
<type name="sgd" description="Singapore Dollar"/>
<type name="shp" description="Saint Helena Pound"/>
<type name="shp" description="St. Helena Pound"/>
<type name="sit" description="Slovenian Tolar" since="1.9"/>
<type name="skk" description="Slovak Koruna"/>
<type name="sle" description="Sierra Leonean New Leone"/>
<type name="sll" description="Sierra Leonean Leone"/>
<type name="sle" description="Sierra Leonean Leone" since="41"/>
<type name="sll" description="Sierra Leonean Leone (1964—2022)"/>
<type name="sos" description="Somali Shilling"/>
<type name="srd" description="Surinamese Dollar"/>
<type name="srg" description="Surinamese Guilder"/>
@@ -274,28 +274,28 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="uyp" description="Uruguayan Peso (1975-1993)" since="1.9"/>
<type name="uyu" description="Uruguayan Peso"/>
<type name="uyw" description="Uruguayan Nominal Wage Index Unit" since="34"/>
<type name="uzs" description="Uzbekistan Som" since="1.9"/>
<type name="uzs" description="Uzbekistani Som" since="1.9"/>
<type name="veb" description="Venezuelan Bolívar (1871-2008)" since="1.9"/>
<type name="ved" description="Bolívar Soberano" since="41"/>
<type name="vef" description="Venezuelan Bolívar (2008-2018)"/>
<type name="ves" description="Venezuelan Bolívar" since="34"/>
<type name="ved" description="Bolívar Soberano" since="41"/>
<type name="vnd" description="Vietnamese Dong"/>
<type name="vnn" description="Vietnamese Dong (1978-1985)" since="1.9"/>
<type name="vuv" description="Vanuatu Vatu"/>
<type name="wst" description="Samoan Tala"/>
<type name="xaf" description="CFA Franc BEAC"/>
<type name="xaf" description="Central African CFA Franc"/>
<type name="xag" description="Silver" since="1.9"/>
<type name="xau" description="Gold" since="1.9"/>
<type name="xba" description="European Composite Unit" since="1.9"/>
<type name="xbb" description="European Monetary Unit" since="1.9"/>
<type name="xbc" description="European Unit of Account 9" since="1.9"/>
<type name="xbd" description="European Unit of Account 17" since="1.9"/>
<type name="xbc" description="European Unit of Account (XBC)" since="1.9"/>
<type name="xbd" description="European Unit of Account (XBD)" since="1.9"/>
<type name="xcd" description="East Caribbean Dollar"/>
<type name="xdr" description="Special Drawing Rights" since="1.9"/>
<type name="xeu" description="European Currency Unit" since="1.9"/>
<type name="xfo" description="French Gold Franc" since="1.9"/>
<type name="xfu" description="French UIC-Franc" since="1.9"/>
<type name="xof" description="CFA Franc BCEAO"/>
<type name="xof" description="West African CFA Franc"/>
<type name="xpd" description="Palladium" since="1.9"/>
<type name="xpf" description="CFP Franc"/>
<type name="xpt" description="Platinum" since="1.9"/>

View File

@@ -10,25 +10,25 @@ For terms of use, see http://www.unicode.org/copyright.html
<version number="$Revision$"/>
<keyword>
<key name="dx" description="Scripts to exclude from dictionary break" valueType="multiple" since="38">
<type name="SCRIPT_CODE" description="ISO 15924 script code"/>
<type name="SCRIPT_CODE" description="ISO 15924 script code" since="38"/>
</key>
<key name="lb" description="Line break type key" since="27">
<type name="strict" description="CSS level 3 line-break=strict, e.g. treat CJ as NS"/>
<type name="normal" description="CSS level 3 line-break=normal, e.g. treat CJ as ID, break before hyphens for ja,zh"/>
<type name="loose" description="CSS lev 3 line-break=loose"/>
<type name="strict" description="CSS level 3 line-break=strict, e.g. treat CJ as NS" since="27"/>
<type name="normal" description="CSS level 3 line-break=normal, e.g. treat CJ as ID, break before hyphens for ja,zh" since="27"/>
<type name="loose" description="CSS lev 3 line-break=loose" since="27"/>
</key>
<key name="lw" description="Line break key for CSS lev 3 word-break options" since="28">
<type name="normal" description="CSS lev 3 word-break=normal, normal script/language behavior for midword breaks"/>
<type name="breakall" description="CSS lev 3 word-break=break-all, allow midword breaks unless forbidden by lb setting"/>
<type name="keepall" description="CSS lev 3 word-break=keep-all, prohibit midword breaks except for dictionary breaks"/>
<type name="phrase" description="Prioritize keeping natural phrases (of multiple words) together when breaking, used in short text like title and headline"/>
<type name="normal" description="CSS lev 3 word-break=normal, normal script/language behavior for midword breaks" since="28"/>
<type name="breakall" description="CSS lev 3 word-break=break-all, allow midword breaks unless forbidden by lb setting" since="28"/>
<type name="keepall" description="CSS lev 3 word-break=keep-all, prohibit midword breaks except for dictionary breaks" since="28"/>
<type name="phrase" description="Prioritize keeping natural phrases (of multiple words) together when breaking, used in short text like title and headline" since="41"/>
</key>
<key name="ss" description="Sentence break parameter key to control use of suppressions data" since="28">
<type name="none" description="Don't use segmentation suppressions data"/>
<type name="standard" description="Use segmentation suppressions data of type standard"/>
<type name="none" description="Don't use segmentation suppressions data" since="28"/>
<type name="standard" description="Use segmentation suppressions data of type standard" since="28"/>
</key>
</keyword>

View File

@@ -96,20 +96,20 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="cacfq" description="Creston, Canada" alias="America/Creston" since="21.0.1"/>
<type name="caedm" description="Edmonton, Canada" alias="America/Edmonton Canada/Mountain"/>
<type name="caffs" description="Rainy River, Canada" alias="America/Rainy_River"/>
<type name="cafne" description="Fort Nelson, Canada" alias="America/Fort_Nelson"/>
<type name="cafne" description="Fort Nelson, Canada" alias="America/Fort_Nelson" since="29"/>
<type name="caglb" description="Glace Bay, Canada" alias="America/Glace_Bay"/>
<type name="cagoo" description="Goose Bay, Canada" alias="America/Goose_Bay"/>
<type name="cahal" description="Halifax, Canada" alias="America/Halifax Canada/Atlantic"/>
<type name="caiql" description="Iqaluit, Canada" alias="America/Iqaluit"/>
<type name="camon" description="Moncton, Canada" alias="America/Moncton"/>
<type name="camtr" description="Montreal, Canada" deprecated="true" alias="America/Montreal"/>
<type name="camtr" description="Montreal, Canada" deprecated="true" preferred="cator"/>
<type name="capnt" description="Pangnirtung, Canada" alias="America/Pangnirtung"/>
<type name="careb" description="Resolute, Canada" alias="America/Resolute"/>
<type name="careg" description="Regina, Canada" alias="America/Regina Canada/East-Saskatchewan Canada/Saskatchewan"/>
<type name="casjf" description="St. John's, Canada" alias="America/St_Johns Canada/Newfoundland"/>
<type name="canpg" description="Nipigon, Canada" alias="America/Nipigon"/>
<type name="cathu" description="Thunder Bay, Canada" alias="America/Thunder_Bay"/>
<type name="cator" description="Toronto, Canada" alias="America/Toronto Canada/Eastern"/>
<type name="cator" description="Toronto, Canada" alias="America/Toronto America/Montreal Canada/Eastern"/>
<type name="cavan" description="Vancouver, Canada" alias="America/Vancouver Canada/Pacific"/>
<type name="cawnp" description="Winnipeg, Canada" alias="America/Winnipeg Canada/Central"/>
<type name="caybx" description="Blanc-Sablon, Canada" alias="America/Blanc-Sablon"/>
@@ -177,7 +177,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="frpar" description="Paris, France" alias="Europe/Paris"/>
<type name="galbv" description="Libreville, Gabon" alias="Africa/Libreville"/>
<type name="gaza" description="Gaza Strip, Palestinian Territories" deprecated="true" preferred="gazastrp"/>
<type name="gazastrp" description="Gaza Strip, Palestinian Territories" alias="Asia/Gaza"/>
<type name="gazastrp" description="Gaza Strip, Palestinian Territories" alias="Asia/Gaza" since="40"/>
<type name="gblon" description="London, United Kingdom" alias="Europe/London Europe/Belfast GB GB-Eire"/>
<type name="gdgnd" description="Grenada" alias="America/Grenada"/>
<type name="getbs" description="Tbilisi, Georgia" alias="Asia/Tbilisi"/>
@@ -190,7 +190,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="globy" description="Ittoqqortoormiit (Scoresbysund), Greenland" alias="America/Scoresbysund"/>
<type name="glthu" description="Qaanaaq (Thule), Greenland" alias="America/Thule"/>
<type name="gmbjl" description="Banjul, Gambia" alias="Africa/Banjul"/>
<type name="gmt" description="Greenwich Mean Time" alias="Etc/GMT Etc/GMT+0 Etc/GMT-0 Etc/GMT0 Etc/Greenwich GMT GMT+0 GMT-0 GMT0 Greenwich"/>
<type name="gmt" description="Greenwich Mean Time" alias="Etc/GMT Etc/GMT+0 Etc/GMT-0 Etc/GMT0 Etc/Greenwich GMT GMT+0 GMT-0 GMT0 Greenwich" since="31"/>
<type name="gncky" description="Conakry, Guinea" alias="Africa/Conakry"/>
<type name="gpbbr" description="Guadeloupe" alias="America/Guadeloupe"/>
<type name="gpmsb" description="Marigot, Saint Martin" alias="America/Marigot"/>
@@ -280,7 +280,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="mwblz" description="Blantyre, Malawi" alias="Africa/Blantyre"/>
<type name="mxchi" description="Chihuahua, Mexico" alias="America/Chihuahua"/>
<type name="mxcun" description="Cancún, Mexico" alias="America/Cancun"/>
<type name="mxcjs" description="Ciudad Juárez, Mexico" alias="America/Ciudad_Juarez"/>
<type name="mxcjs" description="Ciudad Juárez, Mexico" alias="America/Ciudad_Juarez" since="43"/>
<type name="mxhmo" description="Hermosillo, Mexico" alias="America/Hermosillo"/>
<type name="mxmam" description="Matamoros, Mexico" alias="America/Matamoros"/>
<type name="mxmex" description="Mexico City, Mexico" alias="America/Mexico_City Mexico/General"/>
@@ -390,7 +390,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<type name="tmasb" description="Ashgabat, Turkmenistan" alias="Asia/Ashgabat Asia/Ashkhabad"/>
<type name="tntun" description="Tunis, Tunisia" alias="Africa/Tunis"/>
<type name="totbu" description="Tongatapu, Tonga" alias="Pacific/Tongatapu"/>
<type name="trist" description="Istanbul, Turkey" alias="Europe/Istanbul Asia/Istanbul Turkey"/>
<type name="trist" description="Istanbul, Türkiye" alias="Europe/Istanbul Asia/Istanbul Turkey"/>
<type name="ttpos" description="Port of Spain, Trinidad and Tobago" alias="America/Port_of_Spain"/>
<type name="tvfun" description="Funafuti, Tuvalu" alias="Pacific/Funafuti"/>
<type name="twtpe" description="Taipei, Taiwan" alias="Asia/Taipei ROC"/>

View File

@@ -7,18 +7,18 @@
<version number="$Revision$" />
<keyword>
<key name="em" description="Emoji presentation style request" since="29">
<type name="emoji" description="use an emoji presentation for emoji characters if possible"/>
<type name="text" description="use a text presentation for emoji characters if possible"/>
<type name="default" description="use the default presentation as specified in UTR #51"/>
<type name="emoji" description="use an emoji presentation for emoji characters if possible" since="29"/>
<type name="text" description="use a text presentation for emoji characters if possible" since="29"/>
<type name="default" description="use the default presentation as specified in UTR #51" since="29"/>
</key>
<key name="rg" description="Alternate region for determining certain data values (e.g. default currency and units) specified by rgScope" since="29">
<type name="RG_KEY_VALUE" description="A region code from idValidity/id[type='region'][idStatus='regular'], suffixed with 'ZZZZ'" />
<type name="RG_KEY_VALUE" description="A region code from idValidity/id[type='region'][idStatus='regular'], suffixed with 'ZZZZ'" since="29"/>
</key>
<key name="sd" description="Region subdivision" since="28">
<type name="SUBDIVISION_CODE"
description="Valid unicode_subdivision_subtag for the region subtag as specified in LDML, based on subdivisionContainment data in supplementalData, prefixed by the associated unicode_region_subtag" />
description="Valid unicode_subdivision_subtag for the region subtag as specified in LDML, based on subdivisionContainment data in supplementalData, prefixed by the associated unicode_region_subtag" since="28"/>
</key>
<key name="va" description="Common locale variant type key">

View File

@@ -1,5 +1,5 @@
<!--
Copyright © 1991-2022 Unicode, Inc.
Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
@@ -42,7 +42,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!ATTLIST version number CDATA #REQUIRED >
<!--@MATCH:regex/\$Revision.*\$-->
<!--@METADATA-->
<!ATTLIST version cldrVersion CDATA #FIXED "42" >
<!ATTLIST version cldrVersion CDATA #FIXED "43" >
<!--@MATCH:any-->
<!--@VALUE-->
<!ATTLIST version draft (approved | contributed | provisional | unconfirmed | true | false) #IMPLIED >
@@ -68,6 +68,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!--@METADATA-->
<!--@DEPRECATED:true, false-->
<!ATTLIST language references CDATA #IMPLIED >
<!--@MATCH:any-->
<!--@METADATA-->
<!ELEMENT script ( #PCDATA ) >
@@ -465,6 +466,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!--@METADATA-->
<!--@DEPRECATED-->
<!ATTLIST exemplarCharacters references CDATA #IMPLIED >
<!--@MATCH:any-->
<!--@METADATA-->
<!ATTLIST exemplarCharacters validSubLocales CDATA #IMPLIED >
<!--@VALUE-->
@@ -2825,10 +2827,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!ELEMENT cr ( #PCDATA ) >
<!ATTLIST cr alt NMTOKENS #IMPLIED >
<!--@MATCH:literal/variant-->
<!--@MATCH:literal/variant, proposed, short-->
<!ATTLIST cr draft (approved | contributed | provisional | unconfirmed) #IMPLIED >
<!--@METADATA-->
<!ATTLIST cr references CDATA #IMPLIED >
<!--@MATCH:any-->
<!--@METADATA-->
<!-- # Use the cr element instead, with ICU syntax. -->
@@ -3123,7 +3126,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!--@MATCH:or/range/-1.0E20~1.0E20||literal/-x, 0, 0.x, NaN, -Inf, Inf, x,x, x.x-->
<!--@VALUE-->
<!ATTLIST rbnfrule radix CDATA #IMPLIED >
<!--@MATCH:literal/1,000, 100, 1000, 100000, 20-->
<!--@MATCH:literal/1,000, 100, 1000, 100000, 5, 20, 400, 8000, 160,000, 3,200,000, 64,000,000-->
<!--@VALUE-->
<!ATTLIST rbnfrule decexp CDATA #IMPLIED >
<!--@VALUE-->
@@ -3159,10 +3162,8 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!--@METADATA-->
<!ELEMENT personNames ( alias | ( nameOrderLocales*, foreignSpaceReplacement*, initialPattern*, personName*, sampleName*, special* ) ) >
<!--@TECHPREVIEW-->
<!ELEMENT nameOrderLocales ( #PCDATA ) >
<!--@TECHPREVIEW-->
<!ATTLIST nameOrderLocales order (givenFirst | surnameFirst) #REQUIRED >
<!ATTLIST nameOrderLocales alt NMTOKENS #IMPLIED >
<!--@MATCH:literal/variant-->
@@ -3172,7 +3173,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!--@METADATA-->
<!ELEMENT foreignSpaceReplacement ( #PCDATA ) >
<!--@TECHPREVIEW-->
<!ATTLIST foreignSpaceReplacement xml:space (default | preserve) "preserve" >
<!--@METADATA-->
<!ATTLIST foreignSpaceReplacement alt NMTOKENS #IMPLIED >
@@ -3183,7 +3183,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!--@METADATA-->
<!ELEMENT initialPattern ( #PCDATA ) >
<!--@TECHPREVIEW-->
<!ATTLIST initialPattern type (initial | initialSequence) #REQUIRED >
<!ATTLIST initialPattern alt NMTOKENS #IMPLIED >
<!--@MATCH:literal/variant-->
@@ -3193,18 +3192,16 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!--@METADATA-->
<!ELEMENT personName ( alias | ( namePattern+, special* ) ) >
<!--@TECHPREVIEW-->
<!ATTLIST personName order NMTOKENS #IMPLIED >
<!--@MATCH:set/literal/givenFirst, surnameFirst, sorting-->
<!--@MATCH:literal/givenFirst, surnameFirst, sorting-->
<!ATTLIST personName length NMTOKENS #IMPLIED >
<!--@MATCH:set/literal/long, medium, short-->
<!--@MATCH:literal/long, medium, short-->
<!ATTLIST personName usage NMTOKENS #IMPLIED >
<!--@MATCH:set/literal/referring, addressing, monogram-->
<!--@MATCH:literal/referring, addressing, monogram-->
<!ATTLIST personName formality NMTOKENS #IMPLIED >
<!--@MATCH:set/literal/formal, informal-->
<!--@MATCH:literal/formal, informal-->
<!ELEMENT namePattern ( #PCDATA ) >
<!--@TECHPREVIEW-->
<!ATTLIST namePattern alt (1 | 2) #IMPLIED >
<!ATTLIST namePattern draft (approved | contributed | provisional | unconfirmed) #IMPLIED >
<!--@METADATA-->
@@ -3212,14 +3209,12 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!--@METADATA-->
<!ELEMENT sampleName ( alias | ( nameField+, special* ) ) >
<!--@TECHPREVIEW-->
<!ATTLIST sampleName item NMTOKENS #REQUIRED >
<!--@MATCH:literal/givenOnly, givenSurnameOnly, given12Surname, full-->
<!--@MATCH:literal/nativeG, nativeGS, nativeGGS, nativeFull, foreignG, foreignGS, foreignGGS, foreignFull-->
<!ELEMENT nameField ( #PCDATA ) >
<!--@TECHPREVIEW-->
<!ATTLIST nameField type CDATA #REQUIRED >
<!--@MATCH:literal/prefix, given, given-informal, given2, surname, surname-prefix, surname-core, surname2, suffix-->
<!--@MATCH:literal/title, given, given-informal, given2, surname, surname-prefix, surname-core, surname2, generation, credentials-->
<!ATTLIST nameField alt NMTOKENS #IMPLIED >
<!--@MATCH:literal/variant-->
<!ATTLIST nameField draft (approved | contributed | provisional | unconfirmed) #IMPLIED >

View File

@@ -1,5 +1,5 @@
<!--
Copyright © 1991-2022 Unicode, Inc.
Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
@@ -12,7 +12,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!ATTLIST version number CDATA #REQUIRED >
<!--@MATCH:regex/\$Revision.*\$-->
<!--@METADATA-->
<!ATTLIST version cldrVersion CDATA #FIXED "42" >
<!ATTLIST version cldrVersion CDATA #FIXED "43" >
<!--@MATCH:version-->
<!--@VALUE-->

View File

@@ -1,18 +1,18 @@
<!--
Copyright © 1991-2022 Unicode, Inc.
Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
-->
<!ELEMENT supplementalData ( version, generation?, cldrVersion?, currencyData?, territoryContainment?, subdivisionContainment?, languageData?, territoryInfo?, postalCodeData?, calendarData?, calendarPreferenceData?, weekData?, timeData?, measurementData?, unitIdComponents?, unitConstants*, unitQuantities*, convertUnits*, unitPreferenceData?, timezoneData?, characters?, transforms?, metadata?, codeMappings?, parentLocales?, personNamesDefaults?, likelySubtags?, metazoneInfo?, plurals?, telephoneCodeData?, numberingSystems?, bcp47KeywordMappings?, gender?, references?, languageMatching?, dayPeriodRuleSet*, metaZones?, primaryZones?, windowsZones?, coverageLevels?, idValidity?, rgScope?, languageGroups?, grammaticalData? ) >
<!ELEMENT supplementalData ( version, generation?, cldrVersion?, currencyData?, territoryContainment?, subdivisionContainment?, languageData?, territoryInfo?, postalCodeData?, calendarData?, calendarPreferenceData?, weekData?, timeData?, measurementData?, unitIdComponents?, unitConstants*, unitQuantities*, convertUnits*, unitPreferenceData?, timezoneData?, characters?, transforms?, metadata?, codeMappings?, parentLocales*, personNamesDefaults?, likelySubtags?, metazoneInfo?, plurals?, telephoneCodeData?, numberingSystems?, bcp47KeywordMappings?, gender?, references?, languageMatching?, dayPeriodRuleSet*, metaZones?, primaryZones?, windowsZones?, coverageLevels?, idValidity?, rgScope?, languageGroups?, grammaticalData? ) >
<!ELEMENT version EMPTY >
<!--@METADATA-->
<!ATTLIST version number CDATA #REQUIRED >
<!--@MATCH:any-->
<!--@METADATA-->
<!ATTLIST version cldrVersion CDATA #FIXED "42" >
<!ATTLIST version cldrVersion CDATA #FIXED "43" >
<!--@MATCH:version-->
<!--@VALUE-->
<!ATTLIST version unicodeVersion CDATA #FIXED "15.0.0" >
@@ -216,7 +216,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!ELEMENT calendarData ( calendar* ) >
<!ELEMENT calendar ( calendarSystem?, eras? ) >
<!ELEMENT calendar ( calendarSystem?, inheritEras?, eras? ) >
<!ATTLIST calendar type NMTOKEN #REQUIRED >
<!--@MATCH:bcp47/ca-->
<!ATTLIST calendar territories NMTOKENS #IMPLIED >
@@ -237,6 +237,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!ATTLIST calendarSystem references CDATA #IMPLIED >
<!--@METADATA-->
<!ELEMENT inheritEras EMPTY >
<!ATTLIST inheritEras calendar NMTOKEN #REQUIRED >
<!--@MATCH:bcp47/ca-->
<!--@VALUE-->
<!ELEMENT eras ( era* ) >
<!ATTLIST eras references CDATA #IMPLIED >
<!--@METADATA-->
@@ -250,6 +255,12 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!ATTLIST era end CDATA #IMPLIED >
<!--@MATCH:time/yyyy-MM-dd-->
<!--@VALUE-->
<!ATTLIST era code NMTOKEN #IMPLIED >
<!--@MATCH:regex/[a-z0-9]{3,8}(\-[a-z0-9]{3,8})*-->
<!--@VALUE-->
<!ATTLIST era aliases NMTOKENS #IMPLIED >
<!--@MATCH:set/regex/[a-z0-9]{2,8}(\-[a-z0-9]{3,8})*-->
<!--@VALUE-->
<!ATTLIST era named (true | false) #IMPLIED >
<!--@VALUE-->
@@ -439,7 +450,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!--@DEPRECATED-->
<!ATTLIST unitPreferences draft (approved | contributed | provisional | unconfirmed) #IMPLIED >
<!--@METADATA-->
<!--@DEPRECATED-->
<!ELEMENT unitPreference ( #PCDATA ) >
<!--@ORDERED-->
@@ -900,6 +910,8 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!-- # Parent locales -->
<!ELEMENT parentLocales ( parentLocale* ) >
<!ATTLIST parentLocales component NMTOKEN #IMPLIED >
<!--@MATCH:literal/segmentations, collations-->
<!ELEMENT parentLocale EMPTY >
<!ATTLIST parentLocale parent NMTOKEN #REQUIRED >
@@ -923,6 +935,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<!ATTLIST likelySubtag to NMTOKEN #REQUIRED >
<!--@MATCH:validity/locale-->
<!--@VALUE-->
<!ATTLIST likelySubtag origin NMTOKENS #IMPLIED >
<!--@MATCH:set/literal/sil1, wikidata, special-->
<!--@METADATA-->
<!ELEMENT metazoneInfo ( timezone* ) >

View File

@@ -0,0 +1,231 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="aa"/>
</identity>
<localeDisplayNames>
<languages>
<language type="aa" draft="unconfirmed">Qafar</language>
</languages>
<territories>
<territory type="DJ" draft="unconfirmed">Yabuuti</territory>
<territory type="ER" draft="unconfirmed">Eretria</territory>
<territory type="ET" draft="unconfirmed">Otobbia</territory>
</territories>
</localeDisplayNames>
<characters>
<exemplarCharacters>[a b t s e c k x i d q r f g o l m n u w h y]</exemplarCharacters>
<exemplarCharacters type="auxiliary">[j p v z]</exemplarCharacters>
<exemplarCharacters type="index">[A B T S E C K X I D Q R F G O L M N U W H Y]</exemplarCharacters>
</characters>
<dates>
<calendars>
<calendar type="generic">
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern draft="unconfirmed">EEEE, MMMM dd, y G</pattern>
<datetimeSkeleton draft="unconfirmed">GyMMMMEEEEdd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern draft="unconfirmed">dd MMMM y G</pattern>
<datetimeSkeleton draft="unconfirmed">GyMMMMdd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern draft="unconfirmed">dd-MMM-y G</pattern>
<datetimeSkeleton draft="unconfirmed">GyMMMdd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern draft="unconfirmed">dd/MM/yy GGGGG</pattern>
<datetimeSkeleton draft="unconfirmed">GGGGGyyMMdd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
</dateFormats>
</calendar>
<calendar type="gregorian">
<months>
<monthContext type="format">
<monthWidth type="abbreviated">
<month type="1" draft="unconfirmed">Qun</month>
<month type="2" draft="unconfirmed">Nah</month>
<month type="3" draft="unconfirmed">Cig</month>
<month type="4" draft="unconfirmed">Agd</month>
<month type="5" draft="unconfirmed">Cax</month>
<month type="6" draft="unconfirmed">Qas</month>
<month type="7" draft="unconfirmed">Qad</month>
<month type="8" draft="unconfirmed">Leq</month>
<month type="9" draft="unconfirmed">Way</month>
<month type="10" draft="unconfirmed">Dit</month>
<month type="11" draft="unconfirmed">Xim</month>
<month type="12" draft="unconfirmed">Kax</month>
</monthWidth>
<monthWidth type="wide">
<month type="1" draft="unconfirmed">Qunxa Garablu</month>
<month type="2" draft="unconfirmed">Kudo</month>
<month type="3" draft="unconfirmed">Ciggilta Kudo</month>
<month type="4" draft="unconfirmed">Agda Baxis</month>
<month type="5" draft="unconfirmed">Caxah Alsa</month>
<month type="6" draft="unconfirmed">Qasa Dirri</month>
<month type="7" draft="unconfirmed">Qado Dirri</month>
<month type="8" draft="unconfirmed">Liiqen</month>
<month type="9" draft="unconfirmed">Waysu</month>
<month type="10" draft="unconfirmed">Diteli</month>
<month type="11" draft="unconfirmed">Ximoli</month>
<month type="12" draft="unconfirmed">Kaxxa Garablu</month>
</monthWidth>
</monthContext>
<monthContext type="stand-alone">
<monthWidth type="narrow">
<month type="1" draft="unconfirmed">Q</month>
<month type="2" draft="unconfirmed">N</month>
<month type="3" draft="unconfirmed">C</month>
<month type="4" draft="unconfirmed">A</month>
<month type="5" draft="unconfirmed">C</month>
<month type="6" draft="unconfirmed">Q</month>
<month type="7" draft="unconfirmed">Q</month>
<month type="8" draft="unconfirmed">L</month>
<month type="9" draft="unconfirmed">W</month>
<month type="10" draft="unconfirmed">D</month>
<month type="11" draft="unconfirmed">X</month>
<month type="12" draft="unconfirmed">K</month>
</monthWidth>
</monthContext>
</months>
<days>
<dayContext type="format">
<dayWidth type="abbreviated">
<day type="sun" draft="unconfirmed">Aca</day>
<day type="mon" draft="unconfirmed">Etl</day>
<day type="tue" draft="unconfirmed">Tal</day>
<day type="wed" draft="unconfirmed">Arb</day>
<day type="thu" draft="unconfirmed">Kam</day>
<day type="fri" draft="unconfirmed">Gum</day>
<day type="sat" draft="unconfirmed">Sab</day>
</dayWidth>
<dayWidth type="wide">
<day type="sun" draft="unconfirmed">Acaada</day>
<day type="mon" draft="unconfirmed">Etleeni</day>
<day type="tue" draft="unconfirmed">Talaata</day>
<day type="wed" draft="unconfirmed">Arbaqa</day>
<day type="thu" draft="unconfirmed">Kamiisi</day>
<day type="fri" draft="unconfirmed">Gumqata</day>
<day type="sat" draft="unconfirmed">Sabti</day>
</dayWidth>
</dayContext>
<dayContext type="stand-alone">
<dayWidth type="narrow">
<day type="sun" draft="unconfirmed">A</day>
<day type="mon" draft="unconfirmed">E</day>
<day type="tue" draft="unconfirmed">T</day>
<day type="wed" draft="unconfirmed">A</day>
<day type="thu" draft="unconfirmed">K</day>
<day type="fri" draft="unconfirmed">G</day>
<day type="sat" draft="unconfirmed">S</day>
</dayWidth>
</dayContext>
</days>
<dayPeriods>
<dayPeriodContext type="format">
<dayPeriodWidth type="abbreviated">
<dayPeriod type="am" draft="unconfirmed">saaku</dayPeriod>
<dayPeriod type="pm" draft="unconfirmed">carra</dayPeriod>
</dayPeriodWidth>
<dayPeriodWidth type="wide">
<dayPeriod type="am" draft="unconfirmed">saaku</dayPeriod>
<dayPeriod type="pm" draft="unconfirmed">carra</dayPeriod>
</dayPeriodWidth>
</dayPeriodContext>
</dayPeriods>
<eras>
<eraNames>
<era type="0" draft="unconfirmed">Yaasuusuk Duma</era>
<era type="1" draft="unconfirmed">Yaasuusuk Wadir</era>
</eraNames>
<eraAbbr>
<era type="0" draft="unconfirmed">YD</era>
<era type="1" draft="unconfirmed">YW</era>
</eraAbbr>
</eras>
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern draft="unconfirmed">EEEE, MMMM dd, y</pattern>
<datetimeSkeleton draft="unconfirmed">yMMMMEEEEdd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern draft="unconfirmed">dd MMMM y</pattern>
<datetimeSkeleton draft="unconfirmed">yMMMMdd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern draft="unconfirmed">dd-MMM-y</pattern>
<datetimeSkeleton draft="unconfirmed">yMMMdd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern draft="unconfirmed">dd/MM/yy</pattern>
<datetimeSkeleton draft="unconfirmed">yyMMdd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
</dateFormats>
<timeFormats>
<timeFormatLength type="full">
<timeFormat>
<pattern>h:mm:ssa zzzz</pattern>
<datetimeSkeleton>ahmmsszzzz</datetimeSkeleton>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="long">
<timeFormat>
<pattern>h:mm:ssa z</pattern>
<datetimeSkeleton>ahmmssz</datetimeSkeleton>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="medium">
<timeFormat>
<pattern>h:mm:ssa</pattern>
<datetimeSkeleton>ahmmss</datetimeSkeleton>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="short">
<timeFormat>
<pattern>h:mma</pattern>
<datetimeSkeleton>ahmm</datetimeSkeleton>
</timeFormat>
</timeFormatLength>
</timeFormats>
</calendar>
</calendars>
</dates>
<numbers>
<currencyFormats numberSystem="latn">
<currencyFormatLength>
<currencyFormat type="standard">
<pattern draft="unconfirmed">¤#,##0.00</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
<currencies>
<currency type="ETB">
<symbol>Br</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="aa"/>
<territory type="DJ"/>
</identity>
<dates>
<calendars>
<calendar type="gregorian">
<months>
<monthContext type="format">
<monthWidth type="wide">
<month type="1" draft="unconfirmed">Qunxa Garablu</month>
<month type="2" draft="unconfirmed">Kudo</month>
<month type="3" draft="unconfirmed">Ciggilta Kudo</month>
<month type="4" draft="unconfirmed">Agda Baxis</month>
<month type="5" draft="unconfirmed">Caxah Alsa</month>
<month type="6" draft="unconfirmed">Qasa Dirri</month>
<month type="7" draft="unconfirmed">Qado Dirri</month>
<month type="8" draft="unconfirmed">Leqeeni</month>
<month type="9" draft="unconfirmed">Waysu</month>
<month type="10" draft="unconfirmed">Diteli</month>
<month type="11" draft="unconfirmed">Ximoli</month>
<month type="12" draft="unconfirmed">Kaxxa Garablu</month>
</monthWidth>
</monthContext>
</months>
</calendar>
</calendars>
</dates>
<numbers>
<currencies>
<currency type="DJF">
<symbol>Fdj</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="aa"/>
<territory type="ER"/>
</identity>
<numbers>
<currencies>
<currency type="ERN">
<symbol>Nfk</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="aa"/>
<territory type="ET"/>
</identity>
</ldml>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
Proper interpretation of these files requires synthesis of missing items, as per
https://www.unicode.org/reports/tr35/tr35-general.html#Annotations
Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/ for derived annotations.
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="ab"/>
<territory type="GE"/>
</identity>
</ldml>

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="an"/>
<territory type="ES"/>
</identity>
</ldml>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/ for derived annotations.
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="apc"/>
</identity>
<localeDisplayNames>
<languages>
<language type="apc">العامية</language>
</languages>
</localeDisplayNames>
<layout>
<orientation>
<characterOrder>right-to-left</characterOrder>
</orientation>
</layout>
<characters>
<exemplarCharacters>[\u064B \u064C \u064D \u064E \u064F \u0650 \u0651 \u0652 \u0670 ء آ أ ؤ إ ئ ا ب ة ت ث ج ح خ د ذ ر ز س ش ص ض ط ظ ع غ ف ق ك ل م ن ه و ى ي]</exemplarCharacters>
<exemplarCharacters type="auxiliary">[ـ\u200C\u200D\u200E\u200F پ چ ژ ڜ ڢ ڤ ڥ ٯ ڧ ڨ ک گ ی]</exemplarCharacters>
<exemplarCharacters type="index">[ا ب ت ث ج ح خ د ذ ر ز س ش ص ض ط ظ ع غ ف ق ك ل م ن ه و ي]</exemplarCharacters>
<exemplarCharacters type="numbers">[\u061C\u200E \- , ٫ ٬ . % ٪ ‰ ؉ + 0٠ 1١ 2٢ 3٣ 4٤ 5٥ 6٦ 7٧ 8٨ 9٩]</exemplarCharacters>
<exemplarCharacters type="punctuation">[\- — ، ؛ \: ! ؟ . … ' &quot; « » ( ) \[ \] \&amp;]</exemplarCharacters>
</characters>
<dates>
<calendars>
<calendar type="gregorian">
<months>
<monthContext type="format">
<monthWidth type="wide">
<month type="1" draft="unconfirmed">كانون التاني</month>
<month type="2" draft="unconfirmed">شباط</month>
<month type="3" draft="unconfirmed">أذار</month>
<month type="4" draft="unconfirmed">نيسان</month>
<month type="5" draft="unconfirmed">أيار</month>
<month type="6" draft="unconfirmed">حزيران</month>
<month type="7" draft="unconfirmed">تموز</month>
<month type="8" draft="unconfirmed">آب</month>
<month type="9" draft="unconfirmed">أيلول</month>
<month type="10" draft="unconfirmed">تشرين الأول</month>
<month type="11" draft="unconfirmed">تشرين التاني</month>
<month type="12" draft="unconfirmed">كانون الأول</month>
</monthWidth>
</monthContext>
</months>
<days>
<dayContext type="format">
<dayWidth type="wide">
<day type="sun" draft="unconfirmed">الأحد</day>
<day type="mon" draft="unconfirmed">التنين</day>
<day type="tue" draft="unconfirmed">التلاتا</day>
<day type="wed" draft="unconfirmed">الأربعا</day>
<day type="thu" draft="unconfirmed">الخميس</day>
<day type="fri" draft="unconfirmed">الجمعة</day>
<day type="sat" draft="unconfirmed">السبت</day>
</dayWidth>
</dayContext>
</days>
<dayPeriods>
<dayPeriodContext type="format">
<dayPeriodWidth type="wide">
<dayPeriod type="am" draft="unconfirmed">صباحا</dayPeriod>
<dayPeriod type="pm" draft="unconfirmed">مساء</dayPeriod>
</dayPeriodWidth>
</dayPeriodContext>
</dayPeriods>
</calendar>
</calendars>
</dates>
<numbers>
<currencies>
<currency type="JOD">
<symbol>د.أ.</symbol>
</currency>
</currencies>
</numbers>
</ldml>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="apc"/>
<territory type="SY"/>
</identity>
</ldml>

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
@@ -36,6 +36,14 @@ CLDR data files are interpreted according to the LDML specification (http://unic
<relative type="0" draft="contributed">هذه السنة</relative>
<relative type="1" draft="contributed">السنة التالية</relative>
</field>
<field type="year-short">
<relative type="0">هذه السنة</relative>
<relative type="1">السنة التالية</relative>
</field>
<field type="year-narrow">
<relative type="0">هذه السنة</relative>
<relative type="1">السنة التالية</relative>
</field>
</fields>
</dates>
<numbers>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2022 Unicode, Inc.
<!-- Copyright © 1991-2023 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-DFS-2016
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

Some files were not shown because too many files have changed in this diff Show More