8219664: LogCompilation: java.lang.Error: Unexpected method mismatch during late inlining
authorecaspole
Tue, 26 Feb 2019 10:39:28 -0500
changeset 53925 c216c40ba47b
parent 53924 09cba396916f
child 53926 7272e7c5164b
child 57216 abfcfd1f770d
8219664: LogCompilation: java.lang.Error: Unexpected method mismatch during late inlining Summary: Set lateInlining=true in task endElement Reviewed-by: vlivanov, kvn
src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java
--- a/src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java	Tue Feb 26 08:01:20 2019 -0500
+++ b/src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java	Tue Feb 26 10:39:28 2019 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -1279,6 +1279,7 @@
                 types.clear();
                 methods.clear();
                 site = null;
+                lateInlining = false;
             }
         } catch (Exception e) {
             reportInternalError("exception while processing end element", e);