Skip to content

Commit 0aefe6f

Browse files
author
Eric Caspole
committedJul 29, 2020
8249663: LogCompilation cannot process log from o.r.scala.dotty.JmhDotty
Fix stale site and uncommon trap processing in LogParser Reviewed-by: vlivanov, kvn
1 parent 4946a16 commit 0aefe6f

File tree

1 file changed

+19
-3
lines changed
  • src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler

1 file changed

+19
-3
lines changed
 

‎src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 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
@@ -551,6 +551,11 @@ void addJVMS(Method method, int bci) {
551551
*/
552552
private Locator locator;
553553

554+
/**
555+
* Record the location in a replace_string_concat.
556+
*/
557+
private boolean expectStringConcatTrap = false;
558+
554559
/**
555560
* Callback for the SAX framework to set the document locator.
556561
*/
@@ -987,6 +992,8 @@ public void startElement(String uri, String localName, String qname, Attributes
987992
cs.setIntrinsicName(id);
988993
} else if (qname.equals("regalloc")) {
989994
compile.setAttempts(Integer.parseInt(search(atts, "attempts")));
995+
} else if (qname.equals("replace_string_concat")) {
996+
expectStringConcatTrap = true;
990997
} else if (qname.equals("inline_fail")) {
991998
if (methodHandleSite != null) {
992999
scopes.peek().add(methodHandleSite);
@@ -1087,9 +1094,14 @@ public void startElement(String uri, String localName, String qname, Attributes
10871094
Method m = method(search(atts, "method"));
10881095
site = new CallSite(current_bci, m);
10891096
lateInlineScope.push(site);
1097+
} else if (expectStringConcatTrap == true) {
1098+
// Record the location of the replace_string_concat for the
1099+
// uncommon_trap 'intrinsic_or_type_checked_inlining' that should follow it
1100+
current_bci = Integer.parseInt(search(atts, "bci"));
1101+
Method m = method(search(atts, "method"));
1102+
site = new CallSite(current_bci, m);
10901103
} else {
10911104
// Ignore <eliminate_allocation type='667'>,
1092-
// <replace_string_concat arguments='2' string_alloc='0' multiple='0'>
10931105
}
10941106
} else if (qname.equals("inline_id")) {
10951107
if (methodHandleSite != null) {
@@ -1142,7 +1154,7 @@ public void startElement(String uri, String localName, String qname, Attributes
11421154
// The method being parsed is *not* the current compilation's
11431155
// top scope; i.e., we're dealing with an actual call site
11441156
// in the top scope or somewhere further down a call stack.
1145-
if (site.getMethod() == m) {
1157+
if (site != null && site.getMethod() == m) {
11461158
// We're dealing with monomorphic inlining that didn't have
11471159
// to be narrowed down, because the receiver was known
11481160
// beforehand.
@@ -1215,6 +1227,8 @@ public void endElement(String uri, String localName, String qname) {
12151227
if (scopes.size() == 0) {
12161228
lateInlining = false;
12171229
}
1230+
// Don't carry a stale site to the next parse
1231+
site = null;
12181232
} else if (qname.equals("uncommon_trap")) {
12191233
currentTrap = null;
12201234
} else if (qname.startsWith("eliminate_lock")) {
@@ -1289,6 +1303,8 @@ public void endElement(String uri, String localName, String qname) {
12891303
methods.clear();
12901304
site = null;
12911305
lateInlining = false;
1306+
} else if (qname.equals("replace_string_concat")) {
1307+
expectStringConcatTrap = false;
12921308
}
12931309
} catch (Exception e) {
12941310
reportInternalError("exception while processing end element", e);

0 commit comments

Comments
 (0)
Please sign in to comment.