|
1 | 1 | /*
|
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. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -551,6 +551,11 @@ void addJVMS(Method method, int bci) {
|
551 | 551 | */
|
552 | 552 | private Locator locator;
|
553 | 553 |
|
| 554 | + /** |
| 555 | + * Record the location in a replace_string_concat. |
| 556 | + */ |
| 557 | + private boolean expectStringConcatTrap = false; |
| 558 | + |
554 | 559 | /**
|
555 | 560 | * Callback for the SAX framework to set the document locator.
|
556 | 561 | */
|
@@ -987,6 +992,8 @@ public void startElement(String uri, String localName, String qname, Attributes
|
987 | 992 | cs.setIntrinsicName(id);
|
988 | 993 | } else if (qname.equals("regalloc")) {
|
989 | 994 | compile.setAttempts(Integer.parseInt(search(atts, "attempts")));
|
| 995 | + } else if (qname.equals("replace_string_concat")) { |
| 996 | + expectStringConcatTrap = true; |
990 | 997 | } else if (qname.equals("inline_fail")) {
|
991 | 998 | if (methodHandleSite != null) {
|
992 | 999 | scopes.peek().add(methodHandleSite);
|
@@ -1087,9 +1094,14 @@ public void startElement(String uri, String localName, String qname, Attributes
|
1087 | 1094 | Method m = method(search(atts, "method"));
|
1088 | 1095 | site = new CallSite(current_bci, m);
|
1089 | 1096 | 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); |
1090 | 1103 | } else {
|
1091 | 1104 | // Ignore <eliminate_allocation type='667'>,
|
1092 |
| - // <replace_string_concat arguments='2' string_alloc='0' multiple='0'> |
1093 | 1105 | }
|
1094 | 1106 | } else if (qname.equals("inline_id")) {
|
1095 | 1107 | if (methodHandleSite != null) {
|
@@ -1142,7 +1154,7 @@ public void startElement(String uri, String localName, String qname, Attributes
|
1142 | 1154 | // The method being parsed is *not* the current compilation's
|
1143 | 1155 | // top scope; i.e., we're dealing with an actual call site
|
1144 | 1156 | // in the top scope or somewhere further down a call stack.
|
1145 |
| - if (site.getMethod() == m) { |
| 1157 | + if (site != null && site.getMethod() == m) { |
1146 | 1158 | // We're dealing with monomorphic inlining that didn't have
|
1147 | 1159 | // to be narrowed down, because the receiver was known
|
1148 | 1160 | // beforehand.
|
@@ -1215,6 +1227,8 @@ public void endElement(String uri, String localName, String qname) {
|
1215 | 1227 | if (scopes.size() == 0) {
|
1216 | 1228 | lateInlining = false;
|
1217 | 1229 | }
|
| 1230 | + // Don't carry a stale site to the next parse |
| 1231 | + site = null; |
1218 | 1232 | } else if (qname.equals("uncommon_trap")) {
|
1219 | 1233 | currentTrap = null;
|
1220 | 1234 | } else if (qname.startsWith("eliminate_lock")) {
|
@@ -1289,6 +1303,8 @@ public void endElement(String uri, String localName, String qname) {
|
1289 | 1303 | methods.clear();
|
1290 | 1304 | site = null;
|
1291 | 1305 | lateInlining = false;
|
| 1306 | + } else if (qname.equals("replace_string_concat")) { |
| 1307 | + expectStringConcatTrap = false; |
1292 | 1308 | }
|
1293 | 1309 | } catch (Exception e) {
|
1294 | 1310 | reportInternalError("exception while processing end element", e);
|
|
0 commit comments