Skip to content

Commit 0c9e0c2

Browse files
coleenpfisktkrodriguez
committedAug 7, 2020
8244997: Convert the JavaThread::_threadObj oop to use OopStorage
Move the oop and handle releasing it in the service thread. Remove Universe::oops_do from callers. Co-authored-by: Erik Osterlund <erik.osterlund@oracle.com> Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com> Reviewed-by: dholmes, zgu, eosterlund, cjplummer
1 parent 4d3baa2 commit 0c9e0c2

Some content is hidden

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

46 files changed

+162
-207
lines changed
 

‎src/hotspot/cpu/aarch64/c1_LIR_aarch64.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2020, 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
@@ -48,7 +48,7 @@ LIR_Opr LIR_OprFact::double_fpu(int reg1, int reg2) {
4848
void LIR_Address::verify() const {
4949
assert(base()->is_cpu_register(), "wrong base operand");
5050
assert(index()->is_illegal() || index()->is_double_cpu() || index()->is_single_cpu(), "wrong index operand");
51-
assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
51+
assert(base()->type() == T_ADDRESS || base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
5252
"wrong type for addresses");
5353
}
5454
#endif // PRODUCT

‎src/hotspot/cpu/arm/c1_LIR_arm.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2010, 2020, 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
@@ -52,12 +52,12 @@ void LIR_Address::verify() const {
5252
// be handled by the back-end or will be rejected if not.
5353
#ifdef _LP64
5454
assert(index()->is_illegal() || index()->is_double_cpu(), "wrong index operand");
55-
assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
55+
assert(base()->type() == T_ADDRESS || base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
5656
"wrong type for addresses");
5757
#else
5858
assert(base()->is_single_cpu(), "wrong base operand");
5959
assert(index()->is_illegal() || index()->is_single_cpu(), "wrong index operand");
60-
assert(base()->type() == T_OBJECT || base()->type() == T_INT || base()->type() == T_METADATA,
60+
assert(base()->type() == T_ADDRESS || base()->type() == T_OBJECT || base()->type() == T_INT || base()->type() == T_METADATA,
6161
"wrong type for addresses");
6262
#endif
6363
}

0 commit comments

Comments
 (0)