Skip to content

Commit 0e7148d

Browse files
committedJul 27, 2024
Merge
2 parents c8d52b0 + 18b3ca5 commit 0e7148d

23 files changed

+263
-155
lines changed
 

‎hotspot/src/os/linux/vm/os_linux.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2008,11 +2008,11 @@ void * os::dll_load(const char *filename, char *ebuf, int ebuflen)
20082008
static Elf32_Half running_arch_code=EM_68K;
20092009
#elif (defined AARCH64)
20102010
static Elf32_Half running_arch_code=EM_AARCH64;
2011-
#elif (defined LOONGARCH)
2011+
#elif (defined LOONGARCH64)
20122012
static Elf32_Half running_arch_code=EM_LOONGARCH;
20132013
#else
20142014
#error Method os::dll_load requires that one of following is defined:\
2015-
IA32, AMD64, IA64, __sparc, __powerpc__, ARM, S390, ALPHA, MIPS, MIPSEL, PARISC, M68K, AARCH64, LOONGARCH
2015+
IA32, AMD64, IA64, __sparc, __powerpc__, ARM, S390, ALPHA, MIPS, MIPSEL, PARISC, M68K, AARCH64, LOONGARCH64
20162016
#endif
20172017

20182018
// Identify compatability class for VM's architecture and library's architecture

‎hotspot/src/share/vm/c1/c1_RangeCheckElimination.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -441,14 +441,14 @@ void RangeCheckEliminator::in_block_motion(BlockBegin *block, AccessIndexedList
441441

442442
if (c) {
443443
jint value = c->type()->as_IntConstant()->value();
444-
if (value != min_jint) {
445-
if (ao->op() == Bytecodes::_isub) {
446-
value = -value;
447-
}
444+
if (ao->op() == Bytecodes::_iadd) {
448445
base = java_add(base, value);
449-
last_integer = base;
450-
last_instruction = other;
446+
} else {
447+
assert(ao->op() == Bytecodes::_isub, "unexpected bytecode");
448+
base = java_subtract(base, value);
451449
}
450+
last_integer = base;
451+
last_instruction = other;
452452
index = other;
453453
} else {
454454
break;

‎hotspot/src/share/vm/c1/c1_Runtime1.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
#include "runtime/vframeArray.hpp"
5959
#include "utilities/copy.hpp"
6060
#include "utilities/events.hpp"
61+
#include "utilities/exceptions.hpp"
6162

6263

6364
// Implementation of StubAssembler
@@ -536,8 +537,9 @@ JRT_ENTRY_NO_ASYNC(static address, exception_handler_for_pc_helper(JavaThread* t
536537
if (TraceExceptions) {
537538
ttyLocker ttyl;
538539
ResourceMark rm;
539-
tty->print_cr("Exception <%s> (" INTPTR_FORMAT ") thrown in compiled method <%s> at PC " INTPTR_FORMAT " for thread " INTPTR_FORMAT "",
540-
exception->print_value_string(), p2i((address)exception()), nm->method()->print_value_string(), p2i(pc), p2i(thread));
540+
tty->print_cr("Exception <%.*s> (" INTPTR_FORMAT ") thrown in compiled method <%s> at PC " INTPTR_FORMAT " for thread " INTPTR_FORMAT "",
541+
MAX_LEN, exception->print_value_string(),
542+
p2i((address)exception()), nm->method()->print_value_string(), p2i(pc), p2i(thread));
541543
}
542544
// for AbortVMOnException flag
543545
NOT_PRODUCT(Exceptions::debug_check_abort(exception));

‎hotspot/src/share/vm/classfile/symbolTable.cpp

+22-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -236,7 +236,23 @@ unsigned int SymbolTable::hash_symbol(const char* s, int len) {
236236
// entries in the symbol table during normal execution (only during
237237
// safepoints).
238238

239+
// Symbols should represent entities from the constant pool that are
240+
// limited to <64K in length, but usage errors creep in allowing Symbols
241+
// to be used for arbitrary strings. For debug builds we will assert if
242+
// a string is too long, whereas product builds will truncate it.
243+
static int check_length(const char* name, int len) {
244+
assert(len <= Symbol::max_length(),
245+
"String length exceeds the maximum Symbol length");
246+
if (len > Symbol::max_length()) {
247+
warning("A string \"%.80s ... %.80s\" exceeds the maximum Symbol "
248+
"length of %d and has been truncated", name, (name + len - 80), Symbol::max_length());
249+
len = Symbol::max_length();
250+
}
251+
return len;
252+
}
253+
239254
Symbol* SymbolTable::lookup(const char* name, int len, TRAPS) {
255+
len = check_length(name, len);
240256
unsigned int hashValue = hash_symbol(name, len);
241257
int index = the_table()->hash_to_index(hashValue);
242258

@@ -367,6 +383,7 @@ void SymbolTable::add(ClassLoaderData* loader_data, constantPoolHandle cp,
367383
for (int i=0; i<names_count; i++) {
368384
int index = table->hash_to_index(hashValues[i]);
369385
bool c_heap = !loader_data->is_the_null_class_loader_data();
386+
assert(lengths[i] <= Symbol::max_length(), "must be - these come from the constant pool");
370387
Symbol* sym = table->basic_add(index, (u1*)names[i], lengths[i], hashValues[i], c_heap, CHECK);
371388
cp->symbol_at_put(cp_indices[i], sym);
372389
}
@@ -375,7 +392,8 @@ void SymbolTable::add(ClassLoaderData* loader_data, constantPoolHandle cp,
375392

376393
Symbol* SymbolTable::new_permanent_symbol(const char* name, TRAPS) {
377394
unsigned int hash;
378-
Symbol* result = SymbolTable::lookup_only((char*)name, (int)strlen(name), hash);
395+
int len = check_length(name, (int)strlen(name));
396+
Symbol* result = SymbolTable::lookup_only((char*)name, len, hash);
379397
if (result != NULL) {
380398
return result;
381399
}
@@ -384,13 +402,14 @@ Symbol* SymbolTable::new_permanent_symbol(const char* name, TRAPS) {
384402

385403
SymbolTable* table = the_table();
386404
int index = table->hash_to_index(hash);
387-
return table->basic_add(index, (u1*)name, (int)strlen(name), hash, false, THREAD);
405+
return table->basic_add(index, (u1*)name, len, hash, false, THREAD);
388406
}
389407

390408
Symbol* SymbolTable::basic_add(int index_arg, u1 *name, int len,
391409
unsigned int hashValue_arg, bool c_heap, TRAPS) {
392410
assert(!Universe::heap()->is_in_reserved(name),
393411
"proposed name of symbol must be stable");
412+
assert(len <= Symbol::max_length(), "caller should have ensured this");
394413

395414
// Don't allow symbols to be created which cannot fit in a Symbol*.
396415
if (len > Symbol::max_length()) {

‎hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -2854,7 +2854,9 @@ BytecodeInterpreter::run(interpreterState istate) {
28542854
if (TraceExceptions) {
28552855
ttyLocker ttyl;
28562856
ResourceMark rm;
2857-
tty->print_cr("Exception <%s> (" INTPTR_FORMAT ")", except_oop->print_value_string(), p2i(except_oop()));
2857+
tty->print_cr("Exception <%.*s> (" INTPTR_FORMAT ")",
2858+
MAX_LEN, except_oop->print_value_string(),
2859+
p2i(except_oop()));
28582860
tty->print_cr(" thrown in interpreter method <%s>", METHOD->print_value_string());
28592861
tty->print_cr(" at bci %d, continuing at %d for thread " INTPTR_FORMAT,
28602862
(int)(istate->bcp() - METHOD->code_base()),
@@ -2870,7 +2872,9 @@ BytecodeInterpreter::run(interpreterState istate) {
28702872
if (TraceExceptions) {
28712873
ttyLocker ttyl;
28722874
ResourceMark rm;
2873-
tty->print_cr("Exception <%s> (" INTPTR_FORMAT ")", except_oop->print_value_string(), p2i(except_oop()));
2875+
tty->print_cr("Exception <%.*s> (" INTPTR_FORMAT ")",
2876+
MAX_LEN, except_oop->print_value_string(),
2877+
p2i(except_oop()));
28742878
tty->print_cr(" thrown in interpreter method <%s>", METHOD->print_value_string());
28752879
tty->print_cr(" at bci %d, unwinding for thread " INTPTR_FORMAT,
28762880
(int)(istate->bcp() - METHOD->code_base()),

‎hotspot/src/share/vm/interpreter/interpreterRuntime.cpp

+6-4
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
#include "runtime/synchronizer.hpp"
5757
#include "runtime/threadCritical.hpp"
5858
#include "utilities/events.hpp"
59+
#include "utilities/exceptions.hpp"
5960
#ifdef TARGET_ARCH_x86
6061
# include "vm_version_x86.hpp"
6162
#endif
@@ -454,12 +455,13 @@ IRT_ENTRY(address, InterpreterRuntime::exception_handler_for_exception(JavaThrea
454455
const char* detail_message = java_lang_Throwable::message_as_utf8(h_exception());
455456
ttyLocker ttyl; // Lock after getting the detail message
456457
if (detail_message != NULL) {
457-
tty->print_cr("Exception <%s: %s> (" INTPTR_FORMAT ")",
458-
h_exception->print_value_string(), detail_message,
458+
tty->print_cr("Exception <%.*s: %.*s> (" INTPTR_FORMAT ")",
459+
MAX_LEN, h_exception->print_value_string(),
460+
MAX_LEN, detail_message,
459461
(address)h_exception());
460462
} else {
461-
tty->print_cr("Exception <%s> (" INTPTR_FORMAT ")",
462-
h_exception->print_value_string(),
463+
tty->print_cr("Exception <%.*s> (" INTPTR_FORMAT ")",
464+
MAX_LEN, h_exception->print_value_string(),
463465
(address)h_exception());
464466
}
465467
tty->print_cr(" thrown in interpreter method <%s>", h_method->print_value_string());

‎hotspot/src/share/vm/oops/symbol.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -33,6 +33,7 @@
3333
#include "memory/resourceArea.hpp"
3434

3535
Symbol::Symbol(const u1* name, int length, int refcount) {
36+
assert(length <= max_length(), "SymbolTable should have caught this!");
3637
_refcount = refcount;
3738
_length = length;
3839
_identity_hash = os::random();

‎hotspot/src/share/vm/oops/symbol.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -135,6 +135,7 @@ class Symbol : private SymbolBase {
135135
_body[index] = value;
136136
}
137137

138+
// Constructor is private for use only by SymbolTable.
138139
Symbol(const u1* name, int length, int refcount);
139140
void* operator new(size_t size, int len, TRAPS) throw();
140141
void* operator new(size_t size, int len, Arena* arena, TRAPS) throw();

‎hotspot/src/share/vm/opto/superword.cpp

+23-4
Original file line numberDiff line numberDiff line change
@@ -2187,20 +2187,39 @@ void SuperWord::align_initial_loop_index(MemNode* align_to_ref) {
21872187
_igvn.register_new_node_with_optimizer(N);
21882188
_phase->set_ctrl(N, pre_ctrl);
21892189

2190+
// The computation of the new pre-loop limit could overflow or underflow the int range. This is problematic in
2191+
// combination with Range Check Elimination (RCE), which determines a "safe" range where a RangeCheck will always
2192+
// succeed. RCE adjusts the pre-loop limit such that we only enter the main-loop once we have reached the "safe"
2193+
// range, and adjusts the main-loop limit so that we exit the main-loop before we leave the "safe" range. After RCE,
2194+
// the range of the main-loop can only be safely narrowed, and should never be widened. Hence, the pre-loop limit
2195+
// can only be increased (for stride > 0), but an add overflow might decrease it, or decreased (for stride < 0), but
2196+
// a sub underflow might increase it. To prevent that, we perform the Sub / Add and Max / Min with long operations.
2197+
lim0 = new (_phase->C) ConvI2LNode(lim0);
2198+
N = new (_phase->C) ConvI2LNode(N);
2199+
orig_limit = new (_phase->C) ConvI2LNode(orig_limit);
2200+
_igvn.register_new_node_with_optimizer(lim0);
2201+
_igvn.register_new_node_with_optimizer(N);
2202+
_igvn.register_new_node_with_optimizer(orig_limit);
2203+
21902204
// substitute back into (1), so that new limit
21912205
// lim = lim0 + N
21922206
Node* lim;
21932207
if (stride < 0) {
2194-
lim = new (_phase->C) SubINode(lim0, N);
2208+
lim = new (_phase->C) SubLNode(lim0, N);
21952209
} else {
2196-
lim = new (_phase->C) AddINode(lim0, N);
2210+
lim = new (_phase->C) AddLNode(lim0, N);
21972211
}
21982212
_igvn.register_new_node_with_optimizer(lim);
21992213
_phase->set_ctrl(lim, pre_ctrl);
22002214
Node* constrained =
2201-
(stride > 0) ? (Node*) new (_phase->C) MinINode(lim, orig_limit)
2202-
: (Node*) new (_phase->C) MaxINode(lim, orig_limit);
2215+
(stride > 0) ? (Node*) new (_phase->C) MinLNode(_phase->C, lim, orig_limit)
2216+
: (Node*) new (_phase->C) MaxLNode(_phase->C, lim, orig_limit);
22032217
_igvn.register_new_node_with_optimizer(constrained);
2218+
2219+
// We know that the result is in the int range, there is never truncation
2220+
constrained = new (_phase->C) ConvL2INode(constrained);
2221+
_igvn.register_new_node_with_optimizer(constrained);
2222+
22042223
_phase->set_ctrl(constrained, pre_ctrl);
22052224
_igvn.hash_delete(pre_opaq);
22062225
pre_opaq->set_req(1, constrained);

‎hotspot/src/share/vm/utilities/exceptions.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,11 @@ void Exceptions::_throw(Thread* thread, const char* file, int line, Handle h_exc
141141
// tracing (do this up front - so it works during boot strapping)
142142
if (TraceExceptions) {
143143
ttyLocker ttyl;
144-
tty->print_cr("Exception <%s%s%s> (" INTPTR_FORMAT ") \n"
144+
tty->print_cr("Exception <%.*s%s%.*s> (" INTPTR_FORMAT ") \n"
145145
"thrown [%s, line %d]\nfor thread " INTPTR_FORMAT,
146-
h_exception->print_value_string(),
147-
message ? ": " : "", message ? message : "",
146+
MAX_LEN, h_exception->print_value_string(),
147+
message ? ": " : "",
148+
MAX_LEN, message ? message : "",
148149
(address)h_exception(), file, line, thread);
149150
}
150151
// for AbortVMOnException flag

‎hotspot/src/share/vm/utilities/exceptions.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
#include "oops/oopsHierarchy.hpp"
3030
#include "utilities/sizes.hpp"
3131

32+
// Limit exception message components to 64K (the same max as Symbols)
33+
#define MAX_LEN 65535
34+
3235
// This file provides the basic support for exception handling in the VM.
3336
// Note: We do not use C++ exceptions to avoid compiler dependencies and
3437
// unpredictable performance.

‎hotspot/src/share/vm/utilities/utf8.cpp

+7-5
Original file line numberDiff line numberDiff line change
@@ -317,14 +317,16 @@ int UNICODE::utf8_size(jchar c) {
317317
}
318318

319319
int UNICODE::utf8_length(jchar* base, int length) {
320-
int result = 0;
320+
size_t result = 0;
321321
for (int index = 0; index < length; index++) {
322322
jchar c = base[index];
323-
if ((0x0001 <= c) && (c <= 0x007F)) result += 1;
324-
else if (c <= 0x07FF) result += 2;
325-
else result += 3;
323+
int sz = utf8_size(c);
324+
if (result + sz > INT_MAX-1) {
325+
break;
326+
}
327+
result += sz;
326328
}
327-
return result;
329+
return static_cast<int>(result);
328330
}
329331

330332
char* UNICODE::as_utf8(jchar* base, int length) {

‎jdk/src/share/classes/sun/java2d/SunGraphics2D.java

+24-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -2152,27 +2152,33 @@ private void doCopyArea(int x, int y, int w, int h, int dx, int dy) {
21522152
}
21532153

21542154
Blit ob = lastCAblit;
2155-
if (dy == 0 && dx > 0 && dx < w) {
2156-
while (w > 0) {
2157-
int partW = Math.min(w, dx);
2158-
w -= partW;
2159-
int sx = x + w;
2160-
ob.Blit(theData, theData, comp, clip,
2161-
sx, y, sx+dx, y+dy, partW, h);
2155+
try {
2156+
if (dy == 0 && dx > 0 && dx < w) {
2157+
while (w > 0) {
2158+
int partW = Math.min(w, dx);
2159+
w -= partW;
2160+
int sx = Math.addExact(x, w);
2161+
ob.Blit(theData, theData, comp, clip,
2162+
sx, y, sx+dx, y+dy, partW, h);
2163+
}
2164+
return;
21622165
}
2163-
return;
2164-
}
2165-
if (dy > 0 && dy < h && dx > -w && dx < w) {
2166-
while (h > 0) {
2167-
int partH = Math.min(h, dy);
2168-
h -= partH;
2169-
int sy = y + h;
2170-
ob.Blit(theData, theData, comp, clip,
2171-
x, sy, x+dx, sy+dy, w, partH);
2166+
if (dy > 0 && dy < h && dx > -w && dx < w) {
2167+
while (h > 0) {
2168+
int partH = Math.min(h, dy);
2169+
h -= partH;
2170+
int sy = Math.addExact(y, h);
2171+
ob.Blit(theData, theData, comp, clip,
2172+
x, sy, Math.addExact(x, dx), sy+dy, w, partH);
2173+
}
2174+
return;
21722175
}
2176+
ob.Blit(theData, theData, comp, clip, x, y,
2177+
Math.addExact(x, dx), Math.addExact(y, dy), w, h);
2178+
} catch (ArithmeticException ex) {
2179+
// We are hitting integer overflow in Math.addExact()
21732180
return;
21742181
}
2175-
ob.Blit(theData, theData, comp, clip, x, y, x+dx, y+dy, w, h);
21762182
}
21772183

21782184
/*

‎jdk/src/share/classes/sun/java2d/pipe/DrawImage.java

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -367,6 +367,13 @@ protected void renderImageXform(SunGraphics2D sg, Image img,
367367
final AffineTransform itx;
368368
try {
369369
itx = tx.createInverse();
370+
double[] mat = new double[6];
371+
itx.getMatrix(mat);
372+
for (double d : mat) {
373+
if (!Double.isFinite(d)) {
374+
return;
375+
}
376+
}
370377
} catch (final NoninvertibleTransformException ignored) {
371378
// Non-invertible transform means no output
372379
return;

‎jdk/src/share/native/com/sun/java/util/jar/pack/defines.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ extern int assert_failed(const char*);
8686

8787
#define lengthof(array) (sizeof(array)/sizeof(array[0]))
8888

89-
#define NEW(T, n) (T*) must_malloc((int)(scale_size(n, sizeof(T))))
90-
#define U_NEW(T, n) (T*) u->alloc(scale_size(n, sizeof(T)))
91-
#define T_NEW(T, n) (T*) u->temp_alloc(scale_size(n, sizeof(T)))
89+
#define NEW(T, n) (T*) must_calloc(n, sizeof(T))
90+
#define U_NEW(T, n) (T*) u->calloc(n, sizeof(T))
91+
#define T_NEW(T, n) (T*) u->temp_calloc(n, sizeof(T))
9292

9393

9494
// bytes and byte arrays

0 commit comments

Comments
 (0)
Please sign in to comment.