Skip to content

Commit d2f857a

Browse files
committedJun 14, 2024
8317299: safepoint scalarization doesn't keep track of the depth of the JVM state
Reviewed-by: phh Backport-of: 6d911f68a3244c40a62ab2570dfec68b8d0ed5d8
1 parent 9a392ea commit d2f857a

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed
 

‎src/hotspot/share/opto/callnode.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -1465,9 +1465,11 @@ SafePointScalarObjectNode::SafePointScalarObjectNode(const TypeOopPtr* tp,
14651465
Node* alloc,
14661466
#endif
14671467
uint first_index,
1468+
uint depth,
14681469
uint n_fields) :
14691470
TypeNode(tp, 1), // 1 control input -- seems required. Get from root.
14701471
_first_index(first_index),
1472+
_depth(depth),
14711473
_n_fields(n_fields)
14721474
#ifdef ASSERT
14731475
, _alloc(alloc)

‎src/hotspot/share/opto/callnode.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, 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
@@ -509,7 +509,7 @@ class SafePointNode : public MultiNode {
509509
class SafePointScalarObjectNode: public TypeNode {
510510
uint _first_index; // First input edge relative index of a SafePoint node where
511511
// states of the scalarized object fields are collected.
512-
// It is relative to the last (youngest) jvms->_scloff.
512+
uint _depth; // Depth of the JVM state the _first_index field refers to
513513
uint _n_fields; // Number of non-static fields of the scalarized object.
514514
DEBUG_ONLY(Node* _alloc;)
515515

@@ -523,7 +523,7 @@ class SafePointScalarObjectNode: public TypeNode {
523523
#ifdef ASSERT
524524
Node* alloc,
525525
#endif
526-
uint first_index, uint n_fields);
526+
uint first_index, uint depth, uint n_fields);
527527
virtual int Opcode() const;
528528
virtual uint ideal_reg() const;
529529
virtual const RegMask &in_RegMask(uint) const;
@@ -532,7 +532,7 @@ class SafePointScalarObjectNode: public TypeNode {
532532

533533
uint first_index(JVMState* jvms) const {
534534
assert(jvms != nullptr, "missed JVMS");
535-
return jvms->scloff() + _first_index;
535+
return jvms->of_depth(_depth)->scloff() + _first_index;
536536
}
537537
uint n_fields() const { return _n_fields; }
538538

‎src/hotspot/share/opto/macro.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 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
@@ -725,7 +725,7 @@ bool PhaseMacroExpand::scalar_replacement(AllocateNode *alloc, GrowableArray <Sa
725725
#ifdef ASSERT
726726
alloc,
727727
#endif
728-
first_ind, nfields);
728+
first_ind, sfpt->jvms()->depth(), nfields);
729729
sobj->init_req(0, C->root());
730730
transform_later(sobj);
731731

‎src/hotspot/share/opto/vector.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 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
@@ -280,7 +280,7 @@ void PhaseVector::scalarize_vbox_node(VectorBoxNode* vec_box) {
280280
#ifdef ASSERT
281281
vec_box,
282282
#endif // ASSERT
283-
first_ind, n_fields);
283+
first_ind, sfpt->jvms()->depth(), n_fields);
284284
sobj->init_req(0, C->root());
285285
sfpt->add_req(vec_value);
286286

‎test/hotspot/jtreg/compiler/vectorapi/TestIntrinsicBailOut.java

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (C) 2021, 2022, THL A29 Limited, a Tencent company. All rights reserved.
3+
* Copyright (c) 2024 Oracle and/or its affiliates. All rights reserved.
34
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
45
*
56
* This code is free software; you can redistribute it and/or modify it
@@ -37,6 +38,18 @@
3738
* -XX:-TieredCompilation compiler.vectorapi.TestIntrinsicBailOut
3839
*/
3940

41+
/*
42+
* @test
43+
* @enablePreview
44+
* @bug 8317299
45+
* @summary Vector API intrinsincs should handle JVM state correctly whith late inlining when compiling with -InlineUnsafeOps
46+
* @modules jdk.incubator.vector
47+
* @requires vm.cpu.features ~= ".*avx512.*"
48+
* @run main/othervm -Xcomp -XX:+UnlockDiagnosticVMOptions -XX:-InlineUnsafeOps -XX:+IgnoreUnrecognizedVMOptions -XX:UseAVX=3
49+
* -XX:CompileCommand=compileonly,compiler.vectorapi.TestIntrinsicBailOut::test -XX:CompileCommand=quiet
50+
* -XX:-TieredCompilation compiler.vectorapi.TestIntrinsicBailOut
51+
*/
52+
4053

4154
public class TestIntrinsicBailOut {
4255
static final VectorSpecies<Double> SPECIES256 = DoubleVector.SPECIES_256;

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jun 14, 2024

@openjdk-notifier[bot]
Please sign in to comment.